auth_milenage/osmo-auc-gen: compute OPC in case only OP is known
[osmocom-bb.git] / configure.ac
blobec79a9238ff4d9bd548324dc90d677d59e465e21
1 AC_INIT([libosmocore],
2         m4_esyscmd([./git-version-gen .tarball-version]),
3         [openbsc-devel@lists.openbsc.org])
5 AM_INIT_AUTOMAKE([dist-bzip2])
6 AC_CONFIG_TESTDIR(tests)
8 dnl kernel style compile messages
9 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
11 dnl checks for programs
12 AC_PROG_MAKE_SET
13 AC_PROG_CC
14 AC_PROG_INSTALL
15 LT_INIT
16 AC_PROG_LIBTOOL
18 AC_CONFIG_MACRO_DIR([m4])
20 dnl checks for header files
21 AC_HEADER_STDC
22 AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h syslog.h ctype.h)
23 # for src/conv.c
24 AC_FUNC_ALLOCA
25 AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
26 AC_SUBST(LIBRARY_DL)
28 AC_PATH_PROG(DOXYGEN,doxygen,false)
29 AM_CONDITIONAL(HAVE_DOXYGEN, test $DOXYGEN != false)
31 # The following test is taken from WebKit's webkit.m4
32 saved_CFLAGS="$CFLAGS"
33 CFLAGS="$CFLAGS -fvisibility=hidden "
34 AC_MSG_CHECKING([if ${CC} supports -fvisibility=hidden])
35 AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])],
36       [ AC_MSG_RESULT([yes])
37         SYMBOL_VISIBILITY="-fvisibility=hidden"],
38         AC_MSG_RESULT([no]))
39 CFLAGS="$saved_CFLAGS"
40 AC_SUBST(SYMBOL_VISIBILITY)
42 dnl Generate the output
43 AM_CONFIG_HEADER(config.h)
45 AC_ARG_ENABLE(talloc,
46         [AS_HELP_STRING(
47                 [--disable-talloc],
48                 [Disable building talloc memory allocator]
49         )],
50         [enable_talloc=$enableval], [enable_talloc="yes"])
51 AM_CONDITIONAL(ENABLE_TALLOC, [test x"$enable_talloc" = x"yes"])
53 AC_ARG_ENABLE(plugin,
54         [AS_HELP_STRING(
55                 [--disable-plugin],
56                 [Disable support for dlopen plugins],
57         )],
58         [enable_plugin=$enableval], [enable_plugin="yes"])
59 AM_CONDITIONAL(ENABLE_PLUGIN, test x"$enable_plugin" = x"yes")
61 AC_ARG_ENABLE(tests,
62         [AS_HELP_STRING(
63                 [--disable-tests],
64                 [Disable building test programs]
65         )],
66         [enable_tests=$enableval], [enable_tests="yes"])
67 AM_CONDITIONAL(ENABLE_TESTS, test x"$enable_tests" = x"yes")
69 AC_ARG_ENABLE(vty,
70         [AS_HELP_STRING(
71                 [--disable-vty],
72                 [Disable building VTY telnet interface]
73         )],
74         [enable_vty=$enableval], [enable_vty="yes"])
75 AM_CONDITIONAL(ENABLE_VTY, test x"$enable_vty" = x"yes")
77 AC_ARG_ENABLE(panic_infloop,
78         [AS_HELP_STRING(
79                 [--enable-panic-infloop],
80                 [Trigger infinite loop on panic rather than fprintf/abort]
81         )],
82         [panic_infloop=$enableval], [panic_infloop="no"])
83 if test x"$panic_infloop" = x"yes"
84 then
85         AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
88 AC_ARG_ENABLE(bsc_fd_check,
89         [AS_HELP_STRING(
90                 [--enable-bsc-fd-check],
91                 [Instrument bsc_register_fd to check that the fd is registered]
92         )],
93         [fd_check=$enableval], [fd_check="no"])
94 if test x"$fd_check" = x"no"
95 then
96         AC_DEFINE([BSC_FD_CHECK],[1],[Instrument the bsc_register_fd])
99 AC_ARG_ENABLE(msgfile,
100         [AS_HELP_STRING(
101                 [--disable-msgfile],
102                 [Disable support for the msgfile],
103         )],
104         [enable_msgfile=$enableval], [enable_msgfile="yes"])
105 AM_CONDITIONAL(ENABLE_MSGFILE, test x"$enable_msgfile" = x"yes")
107 AC_ARG_ENABLE(serial,
108         [AS_HELP_STRING(
109                 [--disable-serial],
110                 [Disable support for the serial helpers],
111         )],
112         [enable_serial=$enableval], [enable_serial="yes"])
113 AM_CONDITIONAL(ENABLE_SERIAL, test x"$enable_serial" = x"yes")
115 AC_ARG_ENABLE(utilities,
116         [AS_HELP_STRING(
117                 [--disable-utilities],
118                 [Disable building utility programs],
119         )],
120         [enable_utilities=$enableval], [enable_utilities="yes"])
121 AM_CONDITIONAL(ENABLE_UTILITIES, test x"$enable_utilities" = x"yes")
123 AC_ARG_ENABLE(embedded,
124         [AS_HELP_STRING(
125                 [--enable-embedded],
126                 [Enable building for embedded use and disable unsupported features]
127         )],
128         [embedded=$enableval], [embedded="no"])
129 if test x"$embedded" = x"yes"
130 then
131         AC_DEFINE([EMBEDDED],[1],[Select building for embedded use])
132         AM_CONDITIONAL(ENABLE_TESTS, false)
133         AM_CONDITIONAL(ENABLE_PLUGIN, false)
134         AM_CONDITIONAL(ENABLE_MSGFILE, false)
135         AM_CONDITIONAL(ENABLE_SERIAL, false)
136         AM_CONDITIONAL(ENABLE_VTY, false)
137         AM_CONDITIONAL(ENABLE_TALLOC, false)
138         AM_CONDITIONAL(ENABLE_UTILITIES, false)
139         AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
143 AC_OUTPUT(
144         libosmocore.pc
145         libosmocodec.pc
146         libosmovty.pc
147         libosmogsm.pc
148         include/osmocom/Makefile
149         include/osmocom/vty/Makefile
150         include/osmocom/codec/Makefile
151         include/osmocom/crypt/Makefile
152         include/osmocom/gsm/Makefile
153         include/osmocom/gsm/protocol/Makefile
154         include/osmocom/core/Makefile
155         include/Makefile
156         src/Makefile
157         src/vty/Makefile
158         src/codec/Makefile
159         src/gsm/Makefile
160         tests/Makefile
161         tests/timer/Makefile
162         tests/sms/Makefile
163         tests/msgfile/Makefile
164         tests/ussd/Makefile
165         tests/smscb/Makefile
166         tests/bits/Makefile
167         tests/a5/Makefile
168         tests/auth/Makefile
169         tests/conv/Makefile
170         tests/lapd/Makefile
171         tests/gsm0808/Makefile
172         utils/Makefile
173         Doxyfile.core
174         Doxyfile.gsm
175         Doxyfile.vty
176         Doxyfile.codec
177         Makefile)