blob: dcde2ed03629d0bca6820355187879bd8484b122 [file] [log] [blame]
Harald Welte57f6b022012-06-14 21:05:44 +08001dnl Process this file with autoconf to produce a configure script
2AC_INIT([osmo-pcu],
3 m4_esyscmd([./git-version-gen .tarball-version]),
Holger Hans Peter Freyther57522852015-05-22 10:43:34 +08004 [osmocom-net-gprs@lists.osmocom.org])
Harald Welte57f6b022012-06-14 21:05:44 +08005
Neels Hofmeyrda933e02016-10-01 00:35:06 +02006dnl *This* is the root dir, even if an install-sh exists in ../ or ../../
7AC_CONFIG_AUX_DIR([.])
8
Harald Welte57f6b022012-06-14 21:05:44 +08009AM_INIT_AUTOMAKE([dist-bzip2])
Holger Hans Peter Freythere13298d2013-07-28 16:45:54 +020010AC_CONFIG_TESTDIR(tests)
Harald Welte57f6b022012-06-14 21:05:44 +080011
12dnl kernel style compile messages
13m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
14
15dnl checks for programs
16AC_PROG_MAKE_SET
17AC_PROG_CC
18AC_PROG_CXX
19AC_PROG_INSTALL
20LT_INIT
21
Neels Hofmeyrda66f712016-10-01 00:52:10 +020022dnl check for pkg-config (explained in detail in libosmocore/configure.ac)
23AC_PATH_PROG(PKG_CONFIG_INSTALLED, pkg-config, no)
24if test "x$PKG_CONFIG_INSTALLED" = "xno"; then
25 AC_MSG_WARN([You need to install pkg-config])
26fi
27PKG_PROG_PKG_CONFIG([0.20])
28
Harald Welte57f6b022012-06-14 21:05:44 +080029dnl checks for header files
30AC_HEADER_STDC
31
32dnl Checks for typedefs, structures and compiler characteristics
33
34dnl checks for libraries
35PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.3.9)
36PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty)
37PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.3.3)
Ivan Kluchnikovef7f28c2012-07-12 14:49:15 +040038PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.5.1.4)
Harald Welte57f6b022012-06-14 21:05:44 +080039
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010040AC_MSG_CHECKING([whether to enable direct DSP access for PDCH of sysmocom-bts])
41AC_ARG_ENABLE(sysmocom-dsp,
42 AC_HELP_STRING([--enable-sysmocom-dsp],
43 [enable code for sysmocom DSP [default=no]]),
Holger Hans Peter Freyther827ed552013-01-23 21:54:19 +010044 [enable_sysmocom_dsp="$enableval"],[enable_sysmocom_dsp="no"])
Andreas Eversberga23c7ee2012-12-18 10:47:28 +010045AC_MSG_RESULT([$enable_sysmocom_dsp])
46AM_CONDITIONAL(ENABLE_SYSMODSP, test "x$enable_sysmocom_dsp" = "xyes")
47
Yves Godin660709d2016-05-19 11:08:03 +020048AC_MSG_CHECKING([whether to enable direct PHY access for PDCH of NuRAN Wireless Litecell 1.5 BTS])
49AC_ARG_ENABLE(lc15bts-phy,
50 AC_HELP_STRING([--enable-lc15bts-phy],
51 [enable code for Litecell 1.5 PHY [default=no]]),
52 [enable_lc15bts_phy="$enableval"],[enable_lc15bts_phy="no"])
53AC_ARG_WITH([litecell15], [AS_HELP_STRING([--with-litecell15=INCLUDE_DIR], [Location of the litecell 1.5 API header files])],
54 [litecell15_incdir="$withval"],[litecell15_incdir="$incdir"])
55AC_SUBST([LITECELL15_INCDIR], $litecell15_incdir)
56AC_MSG_RESULT([$enable_lc15bts_phy])
57AM_CONDITIONAL(ENABLE_LC15BTS_PHY, test "x$enable_lc15bts_phy" = "xyes")
58if test "$enable_litecell15" = "yes"; then
59 oldCPPFLAGS=$CPPFLAGS
60 CPPFLAGS="$CPPFLAGS -I$LITECELL15_INCDIR -I$srcdir/include $LIBOSMOCORE_CFLAGS"
61 AC_CHECK_HEADER([nrw/litecell15/litecell15.h],[],
62 [AC_MSG_ERROR([nrw/litecell15/litecell15.h can not be found in $litecell15_incdir])],
63 [#include <nrw/litecell15/litecell15.h>])
64 CPPFLAGS=$oldCPPFLAGS
65fi
66
Kat7dac4862013-04-05 21:44:46 +020067AC_ARG_ENABLE([vty_tests],
68 AC_HELP_STRING([--enable-vty-tests],
Ivan Kluchnikovb6bb55d2013-04-24 15:53:25 +040069 [Include the VTY tests in make check [default=no]]),
70 [enable_vty_tests="$enableval"],[enable_vty_tests="no"])
Kat7dac4862013-04-05 21:44:46 +020071if test "x$enable_vty_tests" = "xyes" ; then
72 AM_PATH_PYTHON
73 AC_CHECK_PROG(OSMOTESTVTY_CHECK,osmotestvty.py,yes)
74 if test "x$OSMOTESTVTY_CHECK" != "xyes" ; then
75 AC_MSG_ERROR([Please install osmocom-python to run the vty tests.])
76 fi
77fi
78AC_MSG_CHECKING([whether to enable VTY tests])
79AC_MSG_RESULT([$enable_vty_tests])
80AM_CONDITIONAL(ENABLE_VTY_TESTS, test "x$enable_vty_tests" = "xyes")
81
Neels Hofmeyr6348aea2016-09-30 16:25:16 +020082STD_DEFINES_AND_INCLUDES="-Wall"
83AC_SUBST(STD_DEFINES_AND_INCLUDES)
84
Harald Welte57f6b022012-06-14 21:05:44 +080085AC_OUTPUT(
Harald Welte68fc1272016-11-16 22:48:33 +010086 include/Makefile
Harald Welte57f6b022012-06-14 21:05:44 +080087 src/Makefile
Harald Weltee4050112013-01-11 17:49:22 +010088 examples/Makefile
Holger Hans Peter Freytherbb007042013-07-28 16:15:41 +020089 tests/Makefile
Harald Welte57f6b022012-06-14 21:05:44 +080090 Makefile)