aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
blob: 828b2145c930481f239d3b6a02dc54a24bb82539 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
AC_INIT([libosmo-sccp], [0.0.1], [openbsc-devel@lists.openbsc.org])

AC_CONFIG_MACRO_DIR([m4])

AM_INIT_AUTOMAKE([dist-bzip2])

dnl kernel style compile messages
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

dnl checks for programs
AC_PROG_MAKE_SET
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_RANLIB

PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.1.13)
PKG_CHECK_MODULES(LIBOSMOSCCP, libosmo-sccp >= 0.0.2)

AM_WITH_ERLANG

AC_OUTPUT(
    Makefile
    c_src/Makefile)