Add base version of Redis modules
[ric-plt/dbaas.git] / redismodule / configure.ac
1 AC_INIT([redismodule], [0.0.0], [], [], [https://gerrit.oran-osc.org/r/#/admin/projects/ric-plt/dbaas])
2 AC_CONFIG_AUX_DIR([build-aux])
3 AC_CONFIG_MACRO_DIRS([m4])
4 AC_CONFIG_HEADERS([config.h])
5 AC_CONFIG_FILES([run-tests.sh], [chmod +x run-tests.sh])
6
7
8 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects tar-pax])
9
10 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
11 LT_INIT([disable-static])
12
13 # Checks for programs.
14 AC_PROG_CXX
15 AC_PROG_CC
16 AC_PROG_INSTALL
17 AC_PROG_MAKE_SET
18
19
20 # Checks for header files.
21
22 # Checks for typedefs, structures, and compiler characteristics.
23 AC_HEADER_STDBOOL
24
25 AC_CONFIG_FILES([Makefile])
26
27 AC_OUTPUT