blob: a5c5f6b35b898b533d9140ae7587f625c36050b0 [file] [log] [blame]
Harald Welte3cae0392010-02-20 21:09:24 +01001AC_INIT
2
3AM_INIT_AUTOMAKE(libosmocore, 0.0alpha1)
4
5dnl kernel style compile messages
6m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
7
8dnl checks for programs
9AC_PROG_MAKE_SET
10AC_PROG_CC
11AC_PROG_INSTALL
12AC_PROG_RANLIB
13AC_PROG_LIBTOOL
14
15dnl checks for header files
16AC_HEADER_STDC
17AC_CHECK_HEADERS(execinfo.h sys/select.h)
18
19# The following test is taken from WebKit's webkit.m4
20saved_CFLAGS="$CFLAGS"
21CFLAGS="$CFLAGS -fvisibility=hidden "
22AC_MSG_CHECKING([if ${CC} supports -fvisibility=hidden])
23AC_COMPILE_IFELSE([char foo;],
24 [ AC_MSG_RESULT([yes])
25 SYMBOL_VISIBILITY="-fvisibility=hidden"],
26 AC_MSG_RESULT([no]))
27CFLAGS="$saved_CFLAGS"
28AC_SUBST(SYMBOL_VISIBILITY)
29
30dnl Generate the output
31AM_CONFIG_HEADER(config.h)
32
33AC_OUTPUT(
34 libosmocore.pc
35 include/osmocore/Makefile
36 include/osmocore/protocol/Makefile
37 include/Makefile
38 src/Makefile
39 tests/Makefile
40 tests/timer/Makefile
41 tests/sms/Makefile
42 Makefile)