gsm/gsm48_ie: Fix frequency list decoding
[osmocom-bb.git] / configure.ac
1 AC_INIT([libosmocore],
2         m4_esyscmd([./git-version-gen .tarball-version]),
3         [openbsc-devel@lists.openbsc.org])
4
5 AM_INIT_AUTOMAKE([dist-bzip2])
6
7 dnl kernel style compile messages
8 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
9
10 dnl checks for programs
11 AC_PROG_MAKE_SET
12 AC_PROG_CC
13 AC_PROG_INSTALL
14 LT_INIT
15 AC_PROG_LIBTOOL
16
17 AC_CONFIG_MACRO_DIR([m4])
18
19 dnl checks for header files
20 AC_HEADER_STDC
21 AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h syslog.h ctype.h)
22
23 # The following test is taken from WebKit's webkit.m4
24 saved_CFLAGS="$CFLAGS"
25 CFLAGS="$CFLAGS -fvisibility=hidden "
26 AC_MSG_CHECKING([if ${CC} supports -fvisibility=hidden])
27 AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])],
28       [ AC_MSG_RESULT([yes])
29         SYMBOL_VISIBILITY="-fvisibility=hidden"],
30         AC_MSG_RESULT([no]))
31 CFLAGS="$saved_CFLAGS"
32 AC_SUBST(SYMBOL_VISIBILITY)
33
34 dnl Generate the output
35 AM_CONFIG_HEADER(config.h)
36
37 AC_ARG_ENABLE(talloc,
38         [AS_HELP_STRING(
39                 [--disable-talloc],
40                 [Disable building talloc memory allocator]
41         )],
42         [enable_talloc=0], [enable_talloc=1])
43 AM_CONDITIONAL(ENABLE_TALLOC, test "x$enable_talloc" = "x1")
44
45 AC_ARG_ENABLE(plugin,
46         [AS_HELP_STRING(
47                 [--disable-plugin],
48                 [Disable support for dlopen plugins],
49         )],
50         [enable_plugin=0], [enable_plugin=1])
51 AM_CONDITIONAL(ENABLE_PLUGIN, test "x$enable_plugin" = "x1")
52
53 AC_ARG_ENABLE(tests,
54         [AS_HELP_STRING(
55                 [--disable-tests],
56                 [Disable building test programs]
57         )],
58         [enable_tests=0], [enable_tests=1])
59 AM_CONDITIONAL(ENABLE_TESTS, test "x$enable_tests" = "x1")
60
61 AC_ARG_ENABLE(vty,
62         [AS_HELP_STRING(
63                 [--disable-vty],
64                 [Disable building VTY telnet interface]
65         )],
66         [enable_vty=0], [enable_vty=1])
67 AM_CONDITIONAL(ENABLE_VTY, test "x$enable_vty" = "x1")
68
69 AC_ARG_ENABLE(panic_infloop,
70         [AS_HELP_STRING(
71                 [--enable-panic-infloop],
72                 [Trigger infinite loop on panic rather than fprintf/abort]
73         )],
74         [panic_infloop=1], [panic_infloop=0])
75 if test "x$panic_infloop" = "x1"
76 then
77         AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
78 fi
79
80 AC_ARG_ENABLE(bsc_fd_check,
81         [AS_HELP_STRING(
82                 [--enable-bsc-fd-check],
83                 [Instrument bsc_register_fd to check that the fd is registered]
84         )],
85         [fd_check=1], [fd_check=0])
86 if test "x$fd_check" = "x1"
87 then
88         AC_DEFINE([BSC_FD_CHECK],[1],[Instrument the bsc_register_fd])
89 fi
90
91 AC_ARG_ENABLE(msgfile,
92         [AS_HELP_STRING(
93                 [--disable-msgfile],
94                 [Disable support for the msgfile],
95         )],
96         [enable_msgfile=0], [enable_msgfile=1])
97 AM_CONDITIONAL(ENABLE_MSGFILE, test "x$enable_msgfile" = "x1")
98
99
100 AC_OUTPUT(
101         libosmocore.pc
102         libosmocodec.pc
103         libosmovty.pc
104         libosmogsm.pc
105         include/osmocom/Makefile
106         include/osmocom/vty/Makefile
107         include/osmocom/codec/Makefile
108         include/osmocom/crypt/Makefile
109         include/osmocom/gsm/Makefile
110         include/osmocom/gsm/protocol/Makefile
111         include/osmocom/core/Makefile
112         include/Makefile
113         src/Makefile
114         src/vty/Makefile
115         src/codec/Makefile
116         src/gsm/Makefile
117         tests/Makefile
118         tests/timer/Makefile
119         tests/sms/Makefile
120         tests/msgfile/Makefile
121         tests/ussd/Makefile
122         tests/smscb/Makefile
123         Makefile)