blob: f5af0d02574a32f46d1ef2898324667a3be49846 [file] [log] [blame]
Harald Welte4cd3d8a2010-03-23 00:30:19 +08001AC_INIT([libosmocore],
2 m4_esyscmd([./git-version-gen .tarball-version]),
Holger Hans Peter Freyther8db70202012-03-26 16:34:37 +02003 [openbsc@lists.osmocom.org])
Harald Welte3cae0392010-02-20 21:09:24 +01004
Neels Hofmeyrcbdfa652016-09-30 23:45:28 +02005dnl *This* is the root dir, even if an install-sh exists in ../ or ../../
6AC_CONFIG_AUX_DIR([.])
7
Sylvain Munaut69b1b8b2015-08-19 11:15:14 +02008AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip 1.6 subdir-objects])
Holger Hans Peter Freytherf9eda742011-11-13 01:02:54 +01009AC_CONFIG_TESTDIR(tests)
Harald Welte3cae0392010-02-20 21:09:24 +010010
Oliver Smithf2afb982021-01-21 11:42:40 +010011CFLAGS="$CFLAGS -std=gnu11"
12
Harald Welte3cae0392010-02-20 21:09:24 +010013dnl kernel style compile messages
14m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
15
Maxff932bb2017-07-04 18:19:38 +020016dnl include release helper
17RELMAKE='-include osmo-release.mk'
18AC_SUBST([RELMAKE])
19
Harald Welte3cae0392010-02-20 21:09:24 +010020dnl checks for programs
21AC_PROG_MAKE_SET
Diego Elio Pettenòd471a212012-06-29 13:01:19 -070022AC_PROG_MKDIR_P
Harald Welte3cae0392010-02-20 21:09:24 +010023AC_PROG_CC
24AC_PROG_INSTALL
Jan Engelhardtc2ddc4f2015-09-16 14:32:31 +020025LT_INIT([pic-only disable-static])
Harald Welte3cae0392010-02-20 21:09:24 +010026
Harald Welte4cd3d8a2010-03-23 00:30:19 +080027AC_CONFIG_MACRO_DIR([m4])
28
Eric099c8342020-04-10 22:10:13 +020029dnl patching ${archive_cmds} to affect generation of file "libtool" to fix linking with clang
30AS_CASE(["$LD"],[*clang*],
31 [AS_CASE(["${host_os}"],
32 [*linux*],[archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'])])
33
Neels Hofmeyrfef2fa22016-08-08 15:38:35 +020034dnl check for pkg-config
35dnl * If pkg-config is missing, we get a "syntax error" for PKG_CHECK_MODULES.
36dnl Instead, we want to say that pkg-config and pkg.m4 are missing.
37dnl * The proper way is PKG_PROG_PKG_CONFIG() but unfortunately that does not
38dnl produce an intelligible error message if pkg-config is missing entirely
39dnl ("syntax error near unexpected token `0.20'").
40dnl * To produce a hint that pkg-config is missing, check for the pkg-config
41dnl binary; but AC_PATH_PROG breaks if the distribution provides only
42dnl prefixed (<arch>-pkg-config) versions, so just print a warning.
43AC_PATH_PROG(PKG_CONFIG_INSTALLED, pkg-config, no)
44if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
45 AC_MSG_WARN([You need to install pkg-config])
46fi
47PKG_PROG_PKG_CONFIG([0.20])
48
Tobias Engel597460f2012-10-24 17:52:52 +020049dnl check os: some linker flags not available on osx
50case $host in
51*-darwin*)
52 ;;
53*)
54 LTLDFLAGS_OSMOGB='-Wl,--version-script=$(srcdir)/libosmogb.map'
55 LTLDFLAGS_OSMOGSM='-Wl,--version-script=$(srcdir)/libosmogsm.map'
Vadim Yanitskiy3262f822016-09-23 01:48:59 +070056 LTLDFLAGS_OSMOCODING='-Wl,--version-script=$(srcdir)/libosmocoding.map'
Harald Welteed605782018-05-26 17:07:39 +020057 LTLDFLAGS_OSMOCTRL='-Wl,--version-script=$(srcdir)/libosmoctrl.map'
Tobias Engel597460f2012-10-24 17:52:52 +020058 ;;
59esac
60AC_SUBST(LTLDFLAGS_OSMOGB)
61AC_SUBST(LTLDFLAGS_OSMOGSM)
Vadim Yanitskiy272bd4f2017-08-31 17:53:04 +070062AC_SUBST(LTLDFLAGS_OSMOCODING)
Harald Welteed605782018-05-26 17:07:39 +020063AC_SUBST(LTLDFLAGS_OSMOCTRL)
Tobias Engel597460f2012-10-24 17:52:52 +020064
Harald Welte3cae0392010-02-20 21:09:24 +010065dnl checks for header files
66AC_HEADER_STDC
Harald Weltee4cd2672019-08-06 19:56:16 +020067AC_CHECK_HEADERS(execinfo.h poll.h sys/select.h sys/socket.h sys/signalfd.h sys/eventfd.h sys/timerfd.h syslog.h ctype.h netinet/tcp.h netinet/in.h)
Holger Hans Peter Freyther47723482011-11-09 11:26:15 +010068# for src/conv.c
69AC_FUNC_ALLOCA
Pau Espin Pedrolcacaa4a2018-05-04 19:21:58 +020070AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DLOPEN="$LIBS";LIBS=""])
71AC_SUBST(LIBRARY_DLOPEN)
72AC_SEARCH_LIBS([dlsym], [dl dld], [LIBRARY_DLSYM="$LIBS";LIBS=""])
73AC_SUBST(LIBRARY_DLSYM)
Holger Hans Peter Freytherc2c042d2014-04-17 23:19:10 +020074# for src/backtrace.c
75AC_CHECK_LIB(execinfo, backtrace, BACKTRACE_LIB=-lexecinfo, BACKTRACE_LIB=)
76AC_SUBST(BACKTRACE_LIB)
Harald Welte3cae0392010-02-20 21:09:24 +010077
Pau Espin Pedrold12f6982019-09-17 18:38:58 +020078# check for pthread (PTHREAD_CFLAGS, PTHREAD_LIBS)
79AX_PTHREAD
80
Alexander Couzensa2f696f2018-04-24 16:15:23 +020081# check for old glibc < 2.17 to get clock_gettime
Pau Espin Pedrol47eb4e12020-05-01 16:51:20 +020082AC_SEARCH_LIBS([clock_gettime], [rt posix4],
83 [AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if clock_gettime is available])
84 LIBRARY_RT="$LIBS";LIBS="";])
Alexander Couzensa2f696f2018-04-24 16:15:23 +020085AC_SUBST(LIBRARY_RT)
86
Pau Espin Pedrol639c4082017-07-06 10:45:22 +020087AC_ARG_ENABLE(doxygen,
88 [AS_HELP_STRING(
89 [--disable-doxygen],
90 [Disable generation of documentation using doxygen],
91 )],
92 [doxygen=$enableval], [doxygen="yes"])
Harald Welte21e73c22011-08-17 19:33:06 +020093AC_PATH_PROG(DOXYGEN,doxygen,false)
Pau Espin Pedrol639c4082017-07-06 10:45:22 +020094AM_CONDITIONAL(HAVE_DOXYGEN, test $DOXYGEN != false && test "x$doxygen" = "xyes")
Harald Welte21e73c22011-08-17 19:33:06 +020095
Max4b2b0cc2017-07-10 14:32:48 +020096# check for syscal fallback on glibc < 2.25 - can be removed once glibc version requirement is bumped
97AC_CHECK_DECLS([SYS_getrandom], [], [], [[#include <sys/syscall.h>]])
98
Harald Welte3cae0392010-02-20 21:09:24 +010099# The following test is taken from WebKit's webkit.m4
100saved_CFLAGS="$CFLAGS"
101CFLAGS="$CFLAGS -fvisibility=hidden "
102AC_MSG_CHECKING([if ${CC} supports -fvisibility=hidden])
Alexander Huemer3d79f532011-05-24 15:16:13 +0200103AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])],
Harald Welte3cae0392010-02-20 21:09:24 +0100104 [ AC_MSG_RESULT([yes])
105 SYMBOL_VISIBILITY="-fvisibility=hidden"],
106 AC_MSG_RESULT([no]))
107CFLAGS="$saved_CFLAGS"
108AC_SUBST(SYMBOL_VISIBILITY)
109
Pau Espin Pedrol47eb4e12020-05-01 16:51:20 +0200110AC_CHECK_FUNCS(localtime_r)
Harald Welte14c4c492018-06-28 08:28:52 +0200111
Harald Welte7c8e2cc2012-08-29 16:47:30 +0200112AC_DEFUN([CHECK_TM_INCLUDES_TM_GMTOFF], [
113 AC_CACHE_CHECK(
114 [whether struct tm has tm_gmtoff member],
115 osmo_cv_tm_includes_tm_gmtoff,
116 [AC_LINK_IFELSE([
117 AC_LANG_PROGRAM([
118 #include <time.h>
119 ], [
120 time_t t = time(NULL);
121 struct tm* lt = localtime(&t);
122 int off = lt->tm_gmtoff;
123 ])
124 ],
125 osmo_cv_tm_includes_tm_gmtoff=yes,
126 osmo_cv_tm_includes_tm_gmtoff=no
127 )]
128 )
129 if test "x$osmo_cv_tm_includes_tm_gmtoff" = xyes; then
130 AC_DEFINE(HAVE_TM_GMTOFF_IN_TM, 1,
131 [Define if struct tm has tm_gmtoff member.])
132 fi
133])
134
135CHECK_TM_INCLUDES_TM_GMTOFF
136
Pau Espin Pedrol88e40582021-02-17 17:46:02 +0100137# Check if gettid is available (despite not being documented in glibc doc,
138# it requires __USE_GNU on some systems)
139# C compiler is used since __USE_GNU seems to be always defined for g++.
140save_CPPFLAGS=$CPPFLAGS
141AC_LANG_PUSH(C)
142CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
143AC_CHECK_FUNCS([gettid])
144AC_LANG_POP(C)
145CPPFLAGS=$save_CPPFLAGS
146
Pau Espin Pedrole188b8c2019-08-05 13:46:33 +0200147dnl Check if We need to apply workaround for TLS bug on ARM platform for GCC < 7.3.0:
Pau Espin Pedrolafce89d2019-08-06 12:46:46 +0200148ARG_ENABLE_DETECT_TLS_GCC_ARM_BUG
Pau Espin Pedrole188b8c2019-08-05 13:46:33 +0200149
Harald Welte3cae0392010-02-20 21:09:24 +0100150dnl Generate the output
Christian Vogel854debc2013-01-05 20:30:41 +0100151AC_CONFIG_HEADER(config.h)
Harald Welte3cae0392010-02-20 21:09:24 +0100152
Harald Welte90e614f2015-12-05 23:38:18 +0100153PKG_CHECK_MODULES(TALLOC, [talloc >= 2.0.1])
154
Harald Welte495fe262012-09-10 16:28:17 +0200155AC_ARG_ENABLE([pcsc], [AS_HELP_STRING([--disable-pcsc], [Build without PC/SC support])],
156 [
Neels Hofmeyr96831042016-11-15 17:31:14 +0100157 ENABLE_PCSC=$enableval
Harald Welte495fe262012-09-10 16:28:17 +0200158 ],
159 [
Neels Hofmeyr96831042016-11-15 17:31:14 +0100160 ENABLE_PCSC="yes"
Harald Welte495fe262012-09-10 16:28:17 +0200161 ])
Neels Hofmeyr96831042016-11-15 17:31:14 +0100162AS_IF([test "x$ENABLE_PCSC" = "xyes"], [
Holger Hans Peter Freyther18bcc8a2014-11-14 15:06:09 +0100163 PKG_CHECK_MODULES(PCSC, libpcsclite)
Harald Welte3c44a642020-03-15 22:50:06 +0100164 AC_DEFINE([HAVE_PCSC],[1],[Build with PC/SC support])
Harald Welted086f212015-11-21 11:38:09 +0100165])
Neels Hofmeyr96831042016-11-15 17:31:14 +0100166AM_CONDITIONAL(ENABLE_PCSC, test "x$ENABLE_PCSC" = "xyes")
167AC_SUBST(ENABLE_PCSC)
Harald Welte495fe262012-09-10 16:28:17 +0200168
Harald Welteda432cd2019-12-15 19:13:26 +0100169AC_ARG_ENABLE([libusb], [AS_HELP_STRING([--disable-libusb], [Build without libusb support])],
170 [
171 ENABLE_LIBUSB=$enableval
172 ],
173 [
174 ENABLE_LIBUSB="yes"
175 ])
176AS_IF([test "x$ENABLE_LIBUSB" = "xyes"], [
177 PKG_CHECK_MODULES(LIBUSB, libusb-1.0)
178])
179AM_CONDITIONAL(ENABLE_LIBUSB, test "x$ENABLE_LIBUSB" = "xyes")
180AC_SUBST(ENABLE_LIBUSB)
181
Maxed029df2017-10-26 10:56:04 +0200182AC_ARG_ENABLE([gnutls], [AS_HELP_STRING([--disable-gnutls], [Do not use GnuTLS fallback for missing getrandom()])],
183 [ENABLE_GNUTLS=$enableval], [ENABLE_GNUTLS="yes"])
184AM_CONDITIONAL(ENABLE_GNUTLS, test x"$ENABLE_GNUTLS" = x"yes")
185AS_IF([test "x$ENABLE_GNUTLS" = "xyes"], [
186 PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.12.0])
187])
188AC_SUBST(ENABLE_GNUTLS)
189if test x"$ENABLE_GNUTLS" = x"yes"
190then
191 AC_SUBST([LIBGNUTLS_CFLAGS])
192 AC_SUBST([LIBGNUTLS_LIBS])
193 AC_DEFINE([USE_GNUTLS], [1], [Use GnuTLS as a fallback for missing getrandom()])
194fi
195
Vadim Yanitskiye7bf4352020-09-09 03:36:48 +0700196AC_ARG_ENABLE([systemd_logging],
197 [AS_HELP_STRING(
198 [--enable-systemd-logging],
199 [Build with systemd-journal logging support]
200 )],
201 [systemd_logging=$enableval], [systemd_logging="no"])
202AS_IF([test "x$systemd_logging" = "xyes"], [
203 PKG_CHECK_MODULES(SYSTEMD, libsystemd)
204 AC_DEFINE([ENABLE_SYSTEMD_LOGGING], [1], [Enable systemd-journal logging target])
205])
206AM_CONDITIONAL(ENABLE_SYSTEMD_LOGGING, test "x$systemd_logging" = "xyes")
207AC_SUBST(ENABLE_SYSTEMD_LOGGING)
208
Harald Welte53a2fde2020-12-01 22:21:14 +0100209AC_ARG_ENABLE([libmnl],
210 [AS_HELP_STRING(
211 [--disable-libmnl],
212 [Build without netlink socket support via libmnl]
213 )],
214 [mnl=$enableval], [mnl="yes"])
215AS_IF([test "x$mnl" = "xyes"], [
216 PKG_CHECK_MODULES(LIBMNL, libmnl)
217 AC_DEFINE([ENABLE_LIBMNL], [1], [Enable netlink socket support via libmnl])
218])
219AM_CONDITIONAL(ENABLE_LIBMNL, test "x$mnl" = "xyes")
220AC_SUBST(ENABLE_LIBMNL)
221
Pau Espin Pedrolea2afb22019-10-24 15:41:32 +0200222AC_ARG_ENABLE([libsctp], [AS_HELP_STRING([--disable-libsctp], [Do not enable socket multiaddr APIs requiring libsctp])],
223 [ENABLE_LIBSCTP=$enableval], [ENABLE_LIBSCTP="yes"])
224AM_CONDITIONAL(ENABLE_LIBSCTP, test x"$ENABLE_LIBSCTP" = x"yes")
225AS_IF([test "x$ENABLE_LIBSCTP" = "xyes"], [
226 old_LIBS=$LIBS
227 AC_SEARCH_LIBS([sctp_bindx], [sctp], [
228 AC_DEFINE(HAVE_LIBSCTP, 1, [Define 1 to enable SCTP support])
229 AC_SUBST(HAVE_LIBSCTP, [1])
230 if test -n "$ac_lib"; then
231 AC_SUBST(LIBSCTP_LIBS, [-l$ac_lib])
232 fi
233 ], [
234 AC_MSG_ERROR([sctp_bindx not found in searched libs])])
235 LIBS=$old_LIBS
236])
237
Pau Espin Pedrol16b076c2020-08-25 13:56:43 +0200238AC_ARG_ENABLE([sctp-tests], [AS_HELP_STRING([--disable-sctp-tests], [Do not run socket tests requiring system SCTP support])],
239 [ENABLE_SCTP_TESTS=$enableval], [ENABLE_SCTP_TESTS="yes"])
240AM_CONDITIONAL(ENABLE_SCTP_TESTS, test x"$ENABLE_SCTP_TESTS" = x"yes")
241
Harald Welteb9ce51c2010-06-30 19:43:11 +0200242AC_ARG_ENABLE(plugin,
Sylvain Munautf23abab2010-07-25 16:16:42 +0200243 [AS_HELP_STRING(
244 [--disable-plugin],
245 [Disable support for dlopen plugins],
246 )],
job36b4a202011-08-21 17:18:23 +0200247 [enable_plugin=$enableval], [enable_plugin="yes"])
248AM_CONDITIONAL(ENABLE_PLUGIN, test x"$enable_plugin" = x"yes")
Harald Welteb9ce51c2010-06-30 19:43:11 +0200249
Harald Welte1067e8c2010-06-25 03:00:58 +0200250AC_ARG_ENABLE(vty,
Sylvain Munautf23abab2010-07-25 16:16:42 +0200251 [AS_HELP_STRING(
252 [--disable-vty],
253 [Disable building VTY telnet interface]
254 )],
job36b4a202011-08-21 17:18:23 +0200255 [enable_vty=$enableval], [enable_vty="yes"])
256AM_CONDITIONAL(ENABLE_VTY, test x"$enable_vty" = x"yes")
Harald Welte54403772010-05-29 11:49:51 +0200257
Sylvain Munautac3e61a2010-07-25 18:08:54 +0200258AC_ARG_ENABLE(panic_infloop,
259 [AS_HELP_STRING(
260 [--enable-panic-infloop],
261 [Trigger infinite loop on panic rather than fprintf/abort]
262 )],
job36b4a202011-08-21 17:18:23 +0200263 [panic_infloop=$enableval], [panic_infloop="no"])
264if test x"$panic_infloop" = x"yes"
Sylvain Munautac3e61a2010-07-25 18:08:54 +0200265then
266 AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
267fi
268
Holger Hans Peter Freyther43558312010-08-06 06:48:43 +0800269AC_ARG_ENABLE(bsc_fd_check,
270 [AS_HELP_STRING(
271 [--enable-bsc-fd-check],
Pau Espin Pedrold05def02020-05-09 19:24:21 +0200272 [Instrument osmo_fd_register to check that the fd is registered]
Holger Hans Peter Freyther43558312010-08-06 06:48:43 +0800273 )],
job36b4a202011-08-21 17:18:23 +0200274 [fd_check=$enableval], [fd_check="no"])
275if test x"$fd_check" = x"no"
Holger Hans Peter Freyther43558312010-08-06 06:48:43 +0800276then
Pau Espin Pedrold05def02020-05-09 19:24:21 +0200277 AC_DEFINE([OSMO_FD_CHECK],[1],[Instrument the osmo_fd_register])
Holger Hans Peter Freyther43558312010-08-06 06:48:43 +0800278fi
279
Harald Welteb904e422020-10-18 21:24:13 +0200280AC_ARG_ENABLE([force_io_select],
281 [AS_HELP_STRING(
282 [--enable-force-io-select],
283 [Build with old select I/O instead of poll]
284 )],
285 [force_io_select=$enableval], [force_io_select="no"])
286AS_IF([test "x$force_io_select" = "xyes"], [
287 AC_DEFINE([FORCE_IO_SELECT], [1], [Force the use of select() instaed of poll()])
288])
289
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +0800290AC_ARG_ENABLE(msgfile,
291 [AS_HELP_STRING(
292 [--disable-msgfile],
293 [Disable support for the msgfile],
294 )],
job36b4a202011-08-21 17:18:23 +0200295 [enable_msgfile=$enableval], [enable_msgfile="yes"])
296AM_CONDITIONAL(ENABLE_MSGFILE, test x"$enable_msgfile" = x"yes")
Holger Hans Peter Freytherc87f2662010-10-07 00:00:15 +0800297
Sylvain Munautfe28ded2011-09-02 22:18:24 +0200298AC_ARG_ENABLE(serial,
299 [AS_HELP_STRING(
300 [--disable-serial],
301 [Disable support for the serial helpers],
302 )],
303 [enable_serial=$enableval], [enable_serial="yes"])
304AM_CONDITIONAL(ENABLE_SERIAL, test x"$enable_serial" = x"yes")
305
job8e4deb62011-08-21 17:18:24 +0200306AC_ARG_ENABLE(utilities,
307 [AS_HELP_STRING(
308 [--disable-utilities],
309 [Disable building utility programs],
310 )],
311 [enable_utilities=$enableval], [enable_utilities="yes"])
312AM_CONDITIONAL(ENABLE_UTILITIES, test x"$enable_utilities" = x"yes")
313
Harald Weltee3a10b62012-09-08 22:18:43 +0200314AC_ARG_ENABLE(gb,
315 [AS_HELP_STRING(
316 [--disable-gb],
317 [Disable building Gb library],
318 )],
319 [enable_gb=$enableval], [enable_gb="yes"])
320AM_CONDITIONAL(ENABLE_GB, test x"$enable_gb" = x"yes")
321
Harald Welte1c67e752017-01-15 17:52:30 +0100322AC_ARG_ENABLE(ctrl,
323 [AS_HELP_STRING(
324 [--disable-ctrl],
325 [Disable building CTRL library],
326 )],
327 [enable_ctrl=$enableval], [enable_ctrl="yes"])
328AM_CONDITIONAL(ENABLE_CTRL, test x"$enable_ctrl" = x"yes")
329
Harald Welte898ffef2017-05-15 21:37:34 +0200330AC_ARG_ENABLE(pseudotalloc,
331 [AS_HELP_STRING(
332 [--enable-pseudotalloc],
333 [Enable building pseudotalloc library],
334 )],
335 [enable_pseudotalloc=$enableval], [enable_pseudotalloc="no"])
336AM_CONDITIONAL(ENABLE_PSEUDOTALLOC, test x"$enable_pseudotalloc" = x"yes")
337
job8e4deb62011-08-21 17:18:24 +0200338AC_ARG_ENABLE(embedded,
339 [AS_HELP_STRING(
340 [--enable-embedded],
341 [Enable building for embedded use and disable unsupported features]
342 )],
343 [embedded=$enableval], [embedded="no"])
Max89c8c402018-01-18 16:05:27 +0100344
Harald Weltec6a86972019-12-16 23:14:45 +0100345AM_CONDITIONAL(EMBEDDED, false)
Max3da79382018-01-18 16:50:51 +0100346AM_CONDITIONAL(ENABLE_SERCOM_STUB, false)
Max89c8c402018-01-18 16:05:27 +0100347
job8e4deb62011-08-21 17:18:24 +0200348if test x"$embedded" = x"yes"
349then
350 AC_DEFINE([EMBEDDED],[1],[Select building for embedded use])
job8e4deb62011-08-21 17:18:24 +0200351 AM_CONDITIONAL(ENABLE_PLUGIN, false)
352 AM_CONDITIONAL(ENABLE_MSGFILE, false)
Sylvain Munautfe28ded2011-09-02 22:18:24 +0200353 AM_CONDITIONAL(ENABLE_SERIAL, false)
Maxed029df2017-10-26 10:56:04 +0200354 AM_CONDITIONAL(ENABLE_GNUTLS, false)
job8e4deb62011-08-21 17:18:24 +0200355 AM_CONDITIONAL(ENABLE_VTY, false)
Harald Welte1c67e752017-01-15 17:52:30 +0100356 AM_CONDITIONAL(ENABLE_CTRL, false)
job8e4deb62011-08-21 17:18:24 +0200357 AM_CONDITIONAL(ENABLE_UTILITIES, false)
Harald Weltee3a10b62012-09-08 22:18:43 +0200358 AM_CONDITIONAL(ENABLE_GB, false)
Maxed029df2017-10-26 10:56:04 +0200359 AM_CONDITIONAL(ENABLE_GNUTLS, false)
Pau Espin Pedrolea2afb22019-10-24 15:41:32 +0200360 AM_CONDITIONAL(ENABLE_LIBSCTP, false)
Harald Welte1a7d64c2017-01-15 17:53:23 +0100361 AM_CONDITIONAL(ENABLE_PCSC, false)
Harald Welte898ffef2017-05-15 21:37:34 +0200362 AM_CONDITIONAL(ENABLE_PSEUDOTALLOC, true)
Max3da79382018-01-18 16:50:51 +0100363 AM_CONDITIONAL(ENABLE_SERCOM_STUB, true)
Harald Weltec6a86972019-12-16 23:14:45 +0100364 AM_CONDITIONAL(EMBEDDED, true)
Maxed029df2017-10-26 10:56:04 +0200365 AC_DEFINE([USE_GNUTLS], [0])
job8e4deb62011-08-21 17:18:24 +0200366 AC_DEFINE([PANIC_INFLOOP],[1],[Use infinite loop on panic rather than fprintf/abort])
367fi
Harald Welte54403772010-05-29 11:49:51 +0200368
Neels Hofmeyra2381762016-09-30 01:25:45 +0200369AC_ARG_ENABLE(sanitize,
370 [AS_HELP_STRING(
371 [--enable-sanitize],
372 [Compile with address sanitizer enabled],
373 )],
374 [sanitize=$enableval], [sanitize="no"])
375if test x"$sanitize" = x"yes"
376then
Pau Espin Pedrol13492492017-06-23 11:18:04 +0200377 CFLAGS="$CFLAGS -fsanitize=address -fsanitize=undefined"
378 CPPFLAGS="$CPPFLAGS -fsanitize=address -fsanitize=undefined"
Neels Hofmeyra2381762016-09-30 01:25:45 +0200379fi
380
Neels Hofmeyr09ecbb72018-03-05 20:40:05 +0100381AC_ARG_ENABLE(werror,
382 [AS_HELP_STRING(
383 [--enable-werror],
384 [Turn all compiler warnings into errors, with exceptions:
385 a) deprecation (allow upstream to mark deprecation without breaking builds);
386 b) "#warning" pragmas (allow to remind ourselves of errors without breaking builds)
387 ]
388 )],
389 [werror=$enableval], [werror="no"])
390if test x"$werror" = x"yes"
391then
392 WERROR_FLAGS="-Werror"
393 WERROR_FLAGS+=" -Wno-error=deprecated -Wno-error=deprecated-declarations"
394 WERROR_FLAGS+=" -Wno-error=cpp" # "#warning"
395 CFLAGS="$CFLAGS $WERROR_FLAGS"
396 CPPFLAGS="$CPPFLAGS $WERROR_FLAGS"
397fi
398
Neels Hofmeyr3a9ff112018-09-10 17:18:28 +0200399AC_ARG_ENABLE([external_tests],
400 AC_HELP_STRING([--enable-external-tests],
401 [Include the VTY/CTRL tests in make check [default=no]]),
402 [enable_ext_tests="$enableval"],[enable_ext_tests="no"])
403if test "x$enable_ext_tests" = "xyes" ; then
404 AM_PATH_PYTHON
405 AC_CHECK_PROG(OSMOTESTEXT_CHECK,osmo_verify_transcript_vty.py,yes)
406 if test "x$OSMOTESTEXT_CHECK" != "xyes" ; then
407 AC_MSG_ERROR([Please install git://osmocom.org/python/osmo-python-tests to run the VTY/CTRL tests.])
408 fi
409fi
410AC_MSG_CHECKING([whether to enable VTY/CTRL tests])
411AC_MSG_RESULT([$enable_ext_tests])
412AM_CONDITIONAL(ENABLE_EXT_TESTS, test "x$enable_ext_tests" = "xyes")
413
Pau Espin Pedrol13492492017-06-23 11:18:04 +0200414CFLAGS="$CFLAGS -DBUILDING_LIBOSMOCORE -Wall"
415CPPFLAGS="$CPPFLAGS -DBUILDING_LIBOSMOCORE -Wall"
Pau Espin Pedrol69dfe5a2017-06-17 23:18:11 +0200416
Vadim Yanitskiy2c3066e2017-04-30 19:41:56 +0700417AC_ARG_ENABLE(simd,
418 [AS_HELP_STRING(
419 [--disable-simd],
420 [Disable SIMD support]
421 )],
422 [simd=$enableval], [simd="yes"])
423if test x"$simd" = x"yes"
424then
425 # Find and define supported SIMD extensions
426 AX_CHECK_SIMD
427else
428 AM_CONDITIONAL(HAVE_AVX2, false)
Harald Welteb93f60f2017-11-17 11:41:34 +0100429 AM_CONDITIONAL(HAVE_SSSE3, false)
Vadim Yanitskiy2c3066e2017-04-30 19:41:56 +0700430 AM_CONDITIONAL(HAVE_SSE4_1, false)
431fi
432
Eric3afc1d12020-07-23 02:16:46 +0200433AC_ARG_ENABLE(neon,
434 [AS_HELP_STRING(
435 [--enable-neon],
Vadim Yanitskiy325d9b32020-08-07 03:53:40 +0700436 [Enable ARM NEON instructions support [default=no]]
Eric3afc1d12020-07-23 02:16:46 +0200437 )],
438 [neon=$enableval], [neon="no"])
Vadim Yanitskiy2ecb71b2021-01-14 18:55:26 +0100439AS_IF([test "x$neon" = "xyes"], [
440 AC_DEFINE([HAVE_NEON],, [Support ARM NEON instructions])
441])
Vadim Yanitskiy7dbae9e2020-08-07 04:01:12 +0700442AC_MSG_CHECKING([whether to enable ARM NEON instructions support])
443AC_MSG_RESULT([$neon])
Eric3afc1d12020-07-23 02:16:46 +0200444AM_CONDITIONAL(HAVE_NEON, [test "x$neon" != "xno"])
445
Harald Welte433005c2020-09-26 11:51:32 +0200446#
447# SystemTap support
448#
449AC_MSG_CHECKING([whether to include systemtap tracing support])
450AC_ARG_ENABLE([systemtap],
451 [AS_HELP_STRING([--enable-systemtap],
452 [Enable inclusion of systemtap trace support])],
453 [ENABLE_SYSTEMTAP="${enableval}"], [ENABLE_SYSTEMTAP='no'])
454AM_CONDITIONAL([ENABLE_SYSTEMTAP], [test x$ENABLE_SYSTEMTAP = xyes])
455AC_MSG_RESULT(${ENABLE_SYSTEMTAP})
456
457if test "x${ENABLE_SYSTEMTAP}" = xyes; then
458 # Additional configuration for --enable-systemtap is HERE
459 AC_CHECK_PROGS(DTRACE, dtrace)
460 if test -z "$DTRACE"; then
461 AC_MSG_ERROR([dtrace not found])
462 fi
463 AC_CHECK_HEADER([sys/sdt.h], [SDT_H_FOUND='yes'],
464 [SDT_H_FOUND='no';
465 AC_MSG_ERROR([systemtap support needs sys/sdt.h header])])
466 AC_DEFINE([HAVE_SYSTEMTAP], [1], [Define to 1 if using SystemTap probes.])
467 AC_ARG_WITH([tapset-install-dir],
468 [AS_HELP_STRING([--with-tapset-install-dir],
469 [The absolute path where the tapset dir will be installed])],
470 [if test "x${withval}" = x; then
471 ABS_TAPSET_DIR="\$(datadir)/systemtap/tapset"
472 else
473 ABS_TAPSET_DIR="${withval}"
474 fi], [ABS_TAPSET_DIR="\$(datadir)/systemtap/tapset"])
475 AC_SUBST(ABS_TAPSET_DIR)
476fi
477
Eric3afc1d12020-07-23 02:16:46 +0200478
Vasil Velichkov499510b2019-04-03 02:32:37 +0300479OSMO_AC_CODE_COVERAGE
480
Vadim Yanitskiya8a58192017-05-08 00:07:21 +0700481dnl Check if the compiler supports specified GCC's built-in function
482AC_DEFUN([CHECK_BUILTIN_SUPPORT], [
483 AC_CACHE_CHECK(
484 [whether ${CC} has $1 built-in],
485 [osmo_cv_cc_has_builtin], [
486 AC_LINK_IFELSE([
487 AC_LANG_PROGRAM([], [
488 __builtin_cpu_supports("sse");
489 ])
490 ],
491 [AS_VAR_SET([osmo_cv_cc_has_builtin], [yes])],
492 [AS_VAR_SET([osmo_cv_cc_has_builtin], [no])])
493 ]
494 )
495
496 AS_IF([test yes = AS_VAR_GET([osmo_cv_cc_has_builtin])], [
497 AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_$1), 1,
498 [Define to 1 if compiler has the '$1' built-in function])
499 ], [
500 AC_MSG_WARN($2)
501 ])
502])
503
504dnl Check if the compiler supports runtime SIMD detection
505CHECK_BUILTIN_SUPPORT([__builtin_cpu_supports],
506 [Runtime SIMD detection will be disabled])
507
Neels Hofmeyr09ecbb72018-03-05 20:40:05 +0100508AC_MSG_RESULT([CFLAGS="$CFLAGS"])
509AC_MSG_RESULT([CPPFLAGS="$CPPFLAGS"])
510
Harald Welte3cae0392010-02-20 21:09:24 +0100511AC_OUTPUT(
512 libosmocore.pc
Sylvain Munautb99b9302010-10-24 18:23:10 +0200513 libosmocodec.pc
Vadim Yanitskiy3262f822016-09-23 01:48:59 +0700514 libosmocoding.pc
Harald Weltee352c522010-05-19 19:42:32 +0200515 libosmovty.pc
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +0100516 libosmogsm.pc
Harald Welte641f7ce2012-06-17 23:05:26 +0800517 libosmogb.pc
Harald Welte3ff81b12014-08-20 19:58:40 +0200518 libosmoctrl.pc
Harald Welted54c2ee2012-01-17 18:25:50 +0100519 libosmosim.pc
Harald Welteda432cd2019-12-15 19:13:26 +0100520 libosmousb.pc
Harald Welte3cae0392010-02-20 21:09:24 +0100521 include/Makefile
522 src/Makefile
Harald Welte3fb0b6f2010-05-19 19:02:52 +0200523 src/vty/Makefile
Sylvain Munaut1a4ea5b2010-10-08 15:09:16 +0200524 src/codec/Makefile
Vadim Yanitskiy3262f822016-09-23 01:48:59 +0700525 src/coding/Makefile
Harald Welted54c2ee2012-01-17 18:25:50 +0100526 src/sim/Makefile
Harald Welteda432cd2019-12-15 19:13:26 +0100527 src/usb/Makefile
Pablo Neira Ayusofba495e2011-03-23 18:08:08 +0100528 src/gsm/Makefile
Harald Welte641f7ce2012-06-17 23:05:26 +0800529 src/gb/Makefile
Harald Welte3ff81b12014-08-20 19:58:40 +0200530 src/ctrl/Makefile
Harald Welte898ffef2017-05-15 21:37:34 +0200531 src/pseudotalloc/Makefile
Harald Welte433005c2020-09-26 11:51:32 +0200532 tapset/Makefile
Harald Welte3cae0392010-02-20 21:09:24 +0100533 tests/Makefile
Neels Hofmeyr96831042016-11-15 17:31:14 +0100534 tests/atlocal
Harald Welteeeb78dd2011-08-02 13:44:54 +0200535 utils/Makefile
Harald Weltec7859ed2011-08-20 12:54:17 +0200536 Doxyfile.core
Harald Welte49e10562011-08-17 19:21:07 +0200537 Doxyfile.gsm
538 Doxyfile.vty
539 Doxyfile.codec
Vadim Yanitskiy3262f822016-09-23 01:48:59 +0700540 Doxyfile.coding
Neels Hofmeyr249fb712017-06-20 02:52:38 +0200541 Doxyfile.gb
Harald Welteb4186822018-05-26 17:25:11 +0200542 Doxyfile.ctrl
Oliver Smith6370f5d2020-05-14 11:27:08 +0200543 Makefile
544 contrib/libosmocore.spec)