[layer23] Correctly report to restart mobile instance after band change
[osmocom-bb.git] / src / host / gsmmap / configure.ac
1 dnl Process this file with autoconf to produce a configure script
2 AC_INIT([gsmmap],
3         m4_esyscmd([./git-version-gen .tarball-version]),
4         [baseband-devel@lists.osmocom.org])
5
6 AM_INIT_AUTOMAKE([dist-bzip2])
7
8 dnl kernel style compile messages
9 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
10
11 dnl checks for programs
12 AC_PROG_MAKE_SET
13 AC_PROG_CC
14 AC_PROG_INSTALL
15
16 dnl checks for libraries
17 PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore)
18 PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm)
19
20 dnl checks for header files
21 AC_HEADER_STDC
22
23 dnl Checks for typedefs, structures and compiler characteristics
24
25 AC_OUTPUT(
26     Makefile)