blob: 7c63437a26a875eecb6e1315f1c1c2452ba2095a [file] [log] [blame]
Harald Weltede729a12008-12-23 21:01:25 +00001dnl Process this file with autoconf to produce a configure script
Neels Hofmeyre9920f22017-07-10 15:07:22 +02002AC_INIT([osmo-mgw],
Harald Welte5a29c7f2010-03-23 00:09:32 +08003 m4_esyscmd([./git-version-gen .tarball-version]),
Holger Hans Peter Freyther47d8f022014-05-15 12:26:16 +02004 [openbsc@lists.osmocom.org])
Harald Weltede729a12008-12-23 21:01:25 +00005
Neels Hofmeyrb8103122016-10-01 00:34:31 +02006dnl *This* is the root dir, even if an install-sh exists in ../ or ../../
7AC_CONFIG_AUX_DIR([.])
8
Harald Welte5a29c7f2010-03-23 00:09:32 +08009AM_INIT_AUTOMAKE([dist-bzip2])
Holger Hans Peter Freyther6c882172012-01-06 15:16:12 +010010AC_CONFIG_TESTDIR(tests)
Harald Weltede729a12008-12-23 21:01:25 +000011
Holger Hans Peter Freyther1f59ac42009-10-27 03:34:49 +010012dnl kernel style compile messages
13m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
14
Max58cfd252017-08-28 12:04:18 +020015dnl include release helper
16RELMAKE='-include osmo-release.mk'
17AC_SUBST([RELMAKE])
18
Harald Weltede729a12008-12-23 21:01:25 +000019dnl checks for programs
20AC_PROG_MAKE_SET
21AC_PROG_CC
22AC_PROG_INSTALL
Maxeab5f592017-05-26 12:31:00 +020023LT_INIT
Harald Weltede729a12008-12-23 21:01:25 +000024
Ericeebbf2b2020-04-11 00:53:38 +020025dnl patching ${archive_cmds} to affect generation of file "libtool" to fix linking with clang
26AS_CASE(["$LD"],[*clang*],
27 [AS_CASE(["${host_os}"],
28 [*linux*],[archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'])])
29
Neels Hofmeyra8f91df2016-10-01 00:50:25 +020030dnl check for pkg-config (explained in detail in libosmocore/configure.ac)
31AC_PATH_PROG(PKG_CONFIG_INSTALLED, pkg-config, no)
32if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
33 AC_MSG_WARN([You need to install pkg-config])
34fi
35PKG_PROG_PKG_CONFIG([0.20])
36
Max34f01262017-01-20 13:03:03 +010037dnl check for AX_CHECK_COMPILE_FLAG
38m4_ifdef([AX_CHECK_COMPILE_FLAG], [], [
39 AC_MSG_ERROR([Please install autoconf-archive; re-run 'autoreconf -fi' for it to take effect.])
40 ])
41
Harald Weltede729a12008-12-23 21:01:25 +000042dnl checks for libraries
Jacob Erlbeck51a869c2013-10-15 12:00:26 +020043AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
44AC_SUBST(LIBRARY_DL)
45
Erice885bc52020-04-11 00:52:43 +020046AC_SEARCH_LIBS([dlsym], [dl dld], [LIBRARY_DLSYM="$LIBS";LIBS=""])
47AC_SUBST(LIBRARY_DLSYM)
48
Harald Weltede729a12008-12-23 21:01:25 +000049
Pau Espin Pedrolec450682020-01-03 13:35:10 +010050PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.1.0)
51PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 1.1.0)
Harald Welte9852e222020-03-08 10:22:14 +010052PKG_CHECK_MODULES(LIBOSMOCTRL, libosmoctrl >= 1.1.0)
Pau Espin Pedrolec450682020-01-03 13:35:10 +010053PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 1.1.0)
Pau Espin Pedrola2d10212019-08-07 16:42:26 +020054PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.6.0)
Holger Hans Peter Freyther25b70ce2012-12-20 23:49:24 +010055
Neels Hofmeyr7c20c9d2017-11-17 01:43:36 +010056AC_ARG_ENABLE(sanitize,
57 [AS_HELP_STRING(
58 [--enable-sanitize],
59 [Compile with address sanitizer enabled],
60 )],
61 [sanitize=$enableval], [sanitize="no"])
62if test x"$sanitize" = x"yes"
63then
64 CFLAGS="$CFLAGS -fsanitize=address -fsanitize=undefined"
65 CPPFLAGS="$CPPFLAGS -fsanitize=address -fsanitize=undefined"
66fi
67
Neels Hofmeyr4f7613e2018-03-05 20:43:27 +010068AC_ARG_ENABLE(werror,
69 [AS_HELP_STRING(
70 [--enable-werror],
71 [Turn all compiler warnings into errors, with exceptions:
72 a) deprecation (allow upstream to mark deprecation without breaking builds);
73 b) "#warning" pragmas (allow to remind ourselves of errors without breaking builds)
74 ]
75 )],
76 [werror=$enableval], [werror="no"])
77if test x"$werror" = x"yes"
78then
79 WERROR_FLAGS="-Werror"
80 WERROR_FLAGS+=" -Wno-error=deprecated -Wno-error=deprecated-declarations"
81 WERROR_FLAGS+=" -Wno-error=cpp" # "#warning"
82 CFLAGS="$CFLAGS $WERROR_FLAGS"
83 CPPFLAGS="$CPPFLAGS $WERROR_FLAGS"
84fi
85
Harald Weltede729a12008-12-23 21:01:25 +000086dnl Checks for typedefs, structures and compiler characteristics
87
Max34f01262017-01-20 13:03:03 +010088AX_CHECK_COMPILE_FLAG([-Werror=implicit], [CFLAGS="$CFLAGS -Werror=implicit"])
89AX_CHECK_COMPILE_FLAG([-Werror=maybe-uninitialized], [CFLAGS="$CFLAGS -Werror=maybe-uninitialized"])
90AX_CHECK_COMPILE_FLAG([-Werror=memset-transposed-args], [CFLAGS="$CFLAGS -Werror=memset-transposed-args"])
Hoernchen199c5e92019-07-19 00:49:22 +020091AX_CHECK_COMPILE_FLAG([-Wnull-dereference], [CFLAGS="$CFLAGS -Wnull-dereference"])
Max34f01262017-01-20 13:03:03 +010092AX_CHECK_COMPILE_FLAG([-Werror=sizeof-array-argument], [CFLAGS="$CFLAGS -Werror=sizeof-array-argument"])
93AX_CHECK_COMPILE_FLAG([-Werror=sizeof-pointer-memaccess], [CFLAGS="$CFLAGS -Werror=sizeof-pointer-memaccess"])
94
Holger Hans Peter Freytherecd94a42010-11-15 18:37:57 +010095# Coverage build taken from WebKit's configure.in
96AC_MSG_CHECKING([whether to enable code coverage support])
97AC_ARG_ENABLE(coverage,
98 AC_HELP_STRING([--enable-coverage],
99 [enable code coverage support [default=no]]),
100 [],[enable_coverage="no"])
101AC_MSG_RESULT([$enable_coverage])
102if test "$enable_coverage" = "yes"; then
103 COVERAGE_CFLAGS="-ftest-coverage -fprofile-arcs"
104 COVERAGE_LDFLAGS="-ftest-coverage -fprofile-arcs"
105 AC_SUBST([COVERAGE_CFLAGS])
106 AC_SUBST([COVERAGE_LDFLAGS])
107fi
108
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +0200109AC_ARG_ENABLE([vty_tests],
110 AC_HELP_STRING([--enable-vty-tests],
Holger Hans Peter Freytherdd588ae2014-08-22 00:29:04 +0200111 [Include the VTY/CTRL tests in make check (deprecated)
112 [default=no]]),
113 [enable_ext_tests="$enableval"],[enable_ext_tests="no"])
Pablo Neira Ayuso92240102014-09-01 09:34:07 +0200114AC_ARG_ENABLE([external_tests],
Holger Hans Peter Freytherdd588ae2014-08-22 00:29:04 +0200115 AC_HELP_STRING([--enable-external-tests],
116 [Include the VTY/CTRL tests in make check [default=no]]),
117 [enable_ext_tests="$enableval"],[enable_ext_tests="no"])
118if test "x$enable_ext_tests" = "xyes" ; then
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +0200119 AM_PATH_PYTHON
Holger Hans Peter Freytherdd588ae2014-08-22 00:29:04 +0200120 AC_CHECK_PROG(OSMOTESTEXT_CHECK,osmotestvty.py,yes)
121 if test "x$OSMOTESTEXT_CHECK" != "xyes" ; then
Neels Hofmeyrb6cd7932017-07-20 23:01:45 +0200122 AC_MSG_ERROR([Please install git://osmocom.org/python/osmo-python-tests to run the VTY/CTRL tests.])
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +0200123 fi
124fi
Holger Hans Peter Freytherdd588ae2014-08-22 00:29:04 +0200125AC_MSG_CHECKING([whether to enable VTY/CTRL tests])
126AC_MSG_RESULT([$enable_ext_tests])
127AM_CONDITIONAL(ENABLE_EXT_TESTS, test "x$enable_ext_tests" = "xyes")
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +0200128
Oliver Smith7c0b70a2018-11-14 10:47:01 +0100129# Generate manuals
130AC_ARG_ENABLE(manuals,
131 [AS_HELP_STRING(
132 [--enable-manuals],
133 [Generate manual PDFs [default=no]],
134 )],
135 [osmo_ac_build_manuals=$enableval], [osmo_ac_build_manuals="no"])
136AM_CONDITIONAL([BUILD_MANUALS], [test x"$osmo_ac_build_manuals" = x"yes"])
137AC_ARG_VAR(OSMO_GSM_MANUALS_DIR, [path to common osmo-gsm-manuals files, overriding pkg-config and "../osmo-gsm-manuals"
138 fallback])
139if test x"$osmo_ac_build_manuals" = x"yes"
140then
141 # Find OSMO_GSM_MANUALS_DIR (env, pkg-conf, fallback)
142 if test -n "$OSMO_GSM_MANUALS_DIR"; then
143 echo "checking for OSMO_GSM_MANUALS_DIR... $OSMO_GSM_MANUALS_DIR (from env)"
144 else
145 OSMO_GSM_MANUALS_DIR="$($PKG_CONFIG osmo-gsm-manuals --variable=osmogsmmanualsdir 2>/dev/null)"
146 if test -n "$OSMO_GSM_MANUALS_DIR"; then
147 echo "checking for OSMO_GSM_MANUALS_DIR... $OSMO_GSM_MANUALS_DIR (from pkg-conf)"
148 else
149 OSMO_GSM_MANUALS_DIR="../osmo-gsm-manuals"
150 echo "checking for OSMO_GSM_MANUALS_DIR... $OSMO_GSM_MANUALS_DIR (fallback)"
151 fi
152 fi
153 if ! test -d "$OSMO_GSM_MANUALS_DIR"; then
154 AC_MSG_ERROR("OSMO_GSM_MANUALS_DIR does not exist! Install osmo-gsm-manuals or set OSMO_GSM_MANUALS_DIR.")
155 fi
156
157 # Find and run check-depends
158 CHECK_DEPENDS="$OSMO_GSM_MANUALS_DIR/check-depends.sh"
159 if ! test -x "$CHECK_DEPENDS"; then
160 CHECK_DEPENDS="osmo-gsm-manuals-check-depends"
161 fi
162 if ! $CHECK_DEPENDS; then
163 AC_MSG_ERROR("missing dependencies for --enable-manuals")
164 fi
165
166 # Put in Makefile with absolute path
167 OSMO_GSM_MANUALS_DIR="$(realpath "$OSMO_GSM_MANUALS_DIR")"
168 AC_SUBST([OSMO_GSM_MANUALS_DIR])
169fi
170
Pau Espin Pedrole6866752018-09-10 12:46:47 +0200171# https://www.freedesktop.org/software/systemd/man/daemon.html
172AC_ARG_WITH([systemdsystemunitdir],
173 [AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files])],,
174 [with_systemdsystemunitdir=auto])
175AS_IF([test "x$with_systemdsystemunitdir" = "xyes" -o "x$with_systemdsystemunitdir" = "xauto"], [
176 def_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
177
178 AS_IF([test "x$def_systemdsystemunitdir" = "x"],
179 [AS_IF([test "x$with_systemdsystemunitdir" = "xyes"],
180 [AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])])
181 with_systemdsystemunitdir=no],
182 [with_systemdsystemunitdir="$def_systemdsystemunitdir"])])
183AS_IF([test "x$with_systemdsystemunitdir" != "xno"],
184 [AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])])
185AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemdsystemunitdir" != "xno"])
186
Neels Hofmeyr4f7613e2018-03-05 20:43:27 +0100187AC_MSG_RESULT([CFLAGS="$CFLAGS"])
188AC_MSG_RESULT([CPPFLAGS="$CPPFLAGS"])
189
Holger Freyther6d9f77a2009-06-08 10:32:54 +0000190dnl Generate the output
191AM_CONFIG_HEADER(bscconfig.h)
192
Holger Freyther5f755982008-12-27 09:42:59 +0000193AC_OUTPUT(
Neels Hofmeyr97df6912017-09-03 23:52:51 +0200194 libosmo-mgcp-client.pc
Holger Freyther5f755982008-12-27 09:42:59 +0000195 include/Makefile
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200196 include/osmocom/Makefile
Neels Hofmeyr97df6912017-09-03 23:52:51 +0200197 include/osmocom/mgcp_client/Makefile
Philipp Maier87bd9be2017-08-22 16:35:41 +0200198 include/osmocom/mgcp/Makefile
Holger Freyther5f755982008-12-27 09:42:59 +0000199 src/Makefile
Neels Hofmeyr97df6912017-09-03 23:52:51 +0200200 src/libosmo-mgcp-client/Makefile
Philipp Maier87bd9be2017-08-22 16:35:41 +0200201 src/libosmo-mgcp/Makefile
Philipp Maier87bd9be2017-08-22 16:35:41 +0200202 src/osmo-mgw/Makefile
Holger Freyther5f755982008-12-27 09:42:59 +0000203 tests/Makefile
Holger Hans Peter Freyther93ef33e2012-01-09 22:53:04 +0100204 tests/atlocal
Neels Hofmeyr97df6912017-09-03 23:52:51 +0200205 tests/mgcp_client/Makefile
Philipp Maier87bd9be2017-08-22 16:35:41 +0200206 tests/mgcp/Makefile
Harald Welteeb113132011-05-11 22:11:28 +0200207 doc/Makefile
208 doc/examples/Makefile
Oliver Smith7c0b70a2018-11-14 10:47:01 +0100209 doc/manuals/Makefile
Neels Hofmeyrffebe6e2017-07-20 17:57:37 +0200210 contrib/Makefile
Pau Espin Pedrole6866752018-09-10 12:46:47 +0200211 contrib/systemd/Makefile
Oliver Smith6500d722020-05-14 11:48:29 +0200212 contrib/osmo-mgw.spec
Holger Freyther5f755982008-12-27 09:42:59 +0000213 Makefile)