blob: 6155bde924b0c0fa4de13feddfcd4feaebe7b62d [file] [log] [blame]
Rolf Badorekef2bf512019-08-20 11:17:15 +03001# SDL version
2#
3# 1. If no interface changes has been made, increment SDL_MICRO.
4# 2. Else, if new interfaces have been added but existing interfaces have not
5# been changed, increment SDL_MINOR and zero SDL_MICRO. (Backward compatible
6# interface change.)
7# 3. Else, increment SDL_MAJOR and zero both SDL_MINOR and SDL_MICRO. (Backward
8# incompatible interface change.)
9#
10# Change the numbers just before release.
11
12m4_define([SDL_MAJOR], [1])
13m4_define([SDL_MINOR], [0])
14m4_define([SDL_MICRO], [0])
15
16# SDL ABI version with libtool
17#
18# 1. Always increase the revision value.
19# 2. Increase the current value whenever an interface has been added, removed
20# or changed.
21# 3. Increase the age value only if the changes made to the ABI are backward
22# compatible.
23#
24# See https://autotools.io/libtool/version.html
25#
26# Change the numbers just before release.
27
28m4_define([SDL_CURRENT], [1])
29m4_define([SDL_REVISION], [0])
30m4_define([SDL_AGE], [0])
31
32AC_INIT([shareddatalayer], [SDL_MAJOR.SDL_MINOR.SDL_MICRO], [], [], [https://gerrit.o-ran-sc.org/r/admin/repos/ric-plt/sdl])
33AC_CONFIG_HEADERS([include/config.h])
34AC_CONFIG_AUX_DIR([build-aux])
35AC_CONFIG_FILES([Makefile])
36AC_CONFIG_FILES([Doxyfile])
37AC_CONFIG_FILES([run-tests.sh], [chmod +x run-tests.sh])
38AC_CONFIG_MACRO_DIR([m4])
39AM_INIT_AUTOMAKE([subdir-objects foreign 1.13 tar-pax -Wall -Werror])
40AM_PROG_AR
41LT_INIT
42AM_SILENT_RULES([yes])
43AC_PROG_CXX
44AC_LANG([C++])
45AC_PROG_MKDIR_P
46AM_PROG_LIBTOOL
47AC_CONFIG_MACRO_DIR([m4])
48AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory])
49AX_PTHREAD
50AX_BOOST_BASE([1.53], [], [AC_MSG_ERROR(Unable to detect suitable boost library)])
51AX_BOOST_PROGRAM_OPTIONS
52AX_BOOST_SYSTEM
53AX_BOOST_FILESYSTEM
54PKG_PROG_PKG_CONFIG
55
56AC_DEFINE([HAVE_SYSTEMLOGGER], [1], [Have systemlogger])
57AM_CONDITIONAL([SYSTEMLOGGER], [test xtrue])
58
59SDL_CONF_DIR=$sysconfdir/$PACKAGE_NAME.d
60AC_SUBST(SDL_CONF_DIR)
61
62AC_DEFINE(HAVE_REDIS, [1], [Have redis])
63AM_CONDITIONAL([REDIS], [test xtrue])
Rolf Badorek8324d022019-09-17 16:47:20 +030064
65# @TODO Change to true when Redis HA support is activated.
66AC_DEFINE(HAVE_SENTINEL, [0], [Have sentinel])
67AM_CONDITIONAL([SENTINEL], [test "xyes" = "xno"])
68
Rolf Badorekef2bf512019-08-20 11:17:15 +030069PKG_CHECK_MODULES([HIREDIS], [hiredis])
70AC_DEFINE(HAVE_HIREDIS, [1], [Have hiredis])
71AM_CONDITIONAL([HIREDIS], [test xtrue])
72# Redis cluster configuration is not supported in RIC currently (implementation is not compatible with current hiredis-vip version)
73AC_DEFINE(HAVE_HIREDIS_VIP, [0], [Have hiredis-vip])
74AM_CONDITIONAL([HIREDIS_VIP], [test "xyes" = "xno"])
75
76DX_DOT_FEATURE(ON)
77DX_INIT_DOXYGEN([shareddatalayer], [Doxyfile], [doxygen-doc])
78SDL_LT_VERSION=m4_format("%d:%d:%d", SDL_CURRENT, SDL_REVISION, SDL_AGE)
79AC_SUBST(SDL_LT_VERSION)
80AC_OUTPUT