2 m4_esyscmd([./git-version-gen .tarball-version]),
3 [openbsc-devel@lists.openbsc.org])
5 AM_INIT_AUTOMAKE([dist-bzip2])
7 dnl kernel style compile messages
8 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
10 dnl checks for programs
17 AC_CONFIG_MACRO_DIR([m4])
19 dnl checks for header files
21 AC_CHECK_HEADERS(execinfo.h sys/select.h sys/socket.h syslog.h ctype.h)
23 AC_PATH_PROG(DOXYGEN,doxygen,false)
24 AM_CONDITIONAL(HAVE_DOXYGEN, test $DOXYGEN != false)
26 # The following test is taken from WebKit's webkit.m4
27 saved_CFLAGS="$CFLAGS"
28 CFLAGS="$CFLAGS -fvisibility=hidden "
29 AC_MSG_CHECKING([if ${CC} supports -fvisibility=hidden])
30 AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])],
31 [ AC_MSG_RESULT([yes])
32 SYMBOL_VISIBILITY="-fvisibility=hidden"],
34 CFLAGS="$saved_CFLAGS"
35 AC_SUBST(SYMBOL_VISIBILITY)
37 dnl Generate the output
38 AM_CONFIG_HEADER(config.h)
43 [Disable building talloc memory allocator]
45 [enable_talloc=$enableval], [enable_talloc="yes"])
46 AM_CONDITIONAL(ENABLE_TALLOC, [test x"$enable_talloc" = x"yes"])
51 [Disable support for dlopen plugins],
53 [enable_plugin=$enableval], [enable_plugin="yes"])
54 AM_CONDITIONAL(ENABLE_PLUGIN, test x"$enable_plugin" = x"yes")
59 [Disable building test programs]
61 [enable_tests=$enableval], [enable_tests="yes"])
62 AM_CONDITIONAL(ENABLE_TESTS, test x"$enable_tests" = x"yes")
67 [Disable building VTY telnet interface]
69 [enable_vty=$enableval], [enable_vty="yes"])
70 AM_CONDITIONAL(ENABLE_VTY, test x"$enable_vty" = x"yes")
72 AC_ARG_ENABLE(panic_infloop,
74 [--enable-panic-infloop],
75 [Trigger infinite loop on panic rather than fprintf/abort]
77 [panic_infloop=$enableval], [panic_infloop="no"])
78 if test x"$panic_infloop" = x"yes"
80 AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
83 AC_ARG_ENABLE(bsc_fd_check,
85 [--enable-bsc-fd-check],
86 [Instrument bsc_register_fd to check that the fd is registered]
88 [fd_check=$enableval], [fd_check="no"])
89 if test x"$fd_check" = x"no"
91 AC_DEFINE([BSC_FD_CHECK],[1],[Instrument the bsc_register_fd])
94 AC_ARG_ENABLE(msgfile,
97 [Disable support for the msgfile],
99 [enable_msgfile=$enableval], [enable_msgfile="yes"])
100 AM_CONDITIONAL(ENABLE_MSGFILE, test x"$enable_msgfile" = x"yes")
102 AC_ARG_ENABLE(utilities,
104 [--disable-utilities],
105 [Disable building utility programs],
107 [enable_utilities=$enableval], [enable_utilities="yes"])
108 AM_CONDITIONAL(ENABLE_UTILITIES, test x"$enable_utilities" = x"yes")
110 AC_ARG_ENABLE(embedded,
113 [Enable building for embedded use and disable unsupported features]
115 [embedded=$enableval], [embedded="no"])
116 if test x"$embedded" = x"yes"
118 AC_DEFINE([EMBEDDED],[1],[Select building for embedded use])
119 AM_CONDITIONAL(ENABLE_TESTS, false)
120 AM_CONDITIONAL(ENABLE_PLUGIN, false)
121 AM_CONDITIONAL(ENABLE_MSGFILE, false)
122 AM_CONDITIONAL(ENABLE_VTY, false)
123 AM_CONDITIONAL(ENABLE_TALLOC, false)
124 AM_CONDITIONAL(ENABLE_UTILITIES, false)
125 AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
133 include/osmocom/Makefile
134 include/osmocom/vty/Makefile
135 include/osmocom/codec/Makefile
136 include/osmocom/crypt/Makefile
137 include/osmocom/gsm/Makefile
138 include/osmocom/gsm/protocol/Makefile
139 include/osmocom/core/Makefile
148 tests/msgfile/Makefile