aboutsummaryrefslogtreecommitdiffstats
path: root/misc/configure.ac
blob: 542967d858e2b80831bf406e781900578beba99b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
AC_INIT([misc-vapi], [0.5.0], [smartphones-userland@linuxtogo.org], [misc-vapi])
AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_HEADERS(config.h)
AM_INIT_AUTOMAKE([dist-bzip2])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

AC_PROG_CC
AM_PROG_CC_C_O
AC_DISABLE_STATIC
AC_PROG_LIBTOOL

AC_SUBST(CFLAGS)
AC_SUBST(CPPFLAGS)
AC_SUBST(LDFLAGS)

#
# pkg-config requirements
#
PKG_PROG_PKG_CONFIG
VALA_REQUIRED=0.14.2
GLIB_REQUIRED=2.18.0
ALSA_REQUIRED=0.20

# vala
AC_PATH_PROG(VALAC, valac, valac)
AC_SUBST(VALAC)
m4_ifdef([AM_PROG_VALAC], [AM_PROG_VALAC([$VALA_REQUIRED])])

# glib and friends
PKG_CHECK_MODULES(GLIB,
  glib-2.0 >= $GLIB_REQUIRED
  gobject-2.0 >= $GLIB_REQUIRED
  gio-2.0 >= $GLIB_REQUIRED)
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)

# shall we compile the tests? [default=yes]
AC_ARG_ENABLE(tests,      [  --disable-tests      skip building the tests [[default=no]]])
AM_CONDITIONAL(MAKE_TESTS, test x$enable_tests != xno)
AC_MSG_CHECKING([whether to compile the tests])
if test "$enable_tests" != no; then
  AC_MSG_RESULT(yes)
  # glib and friends
  PKG_CHECK_MODULES(ALSA,
    alsa >= $ALSA_REQUIRED)
  AC_SUBST(ALSA_CFLAGS)
  AC_SUBST(ALSA_LIBS)
else
  AC_MSG_RESULT(no)
fi

#
# output
#
AC_CONFIG_FILES([Makefile
  tests/Makefile
  vapi/Makefile
  misc-vapi-1.0.pc])

AC_OUTPUT