increase version
[platform/upstream/libgsignon-glib.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT(libsignon-glib, 0.21)
4
5 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
6 AM_CONFIG_HEADER(config.h)
7
8 PKG_CHECK_MODULES(
9         DEPS,
10         glib-2.0
11         gobject-2.0
12         dbus-1
13         dbus-glib-1
14         signond);
15 AC_SUBST(DEPS_CFLAGS)
16 AC_SUBST(DEPS_LIBS)
17
18 PKG_CHECK_MODULES([CHECK], [check >= 0.9.4])
19
20 AC_ISC_POSIX
21 AC_PROG_CC
22 AM_PROG_CC_STDC
23 AC_HEADER_STDC
24 AC_PROG_LIBTOOL
25
26 GTK_DOC_CHECK([1.3])
27
28 AC_ARG_ENABLE(cast-checks,  [  --disable-cast-checks   compile with GLIB cast checks disabled],[cchecks=${enableval}],cchecks=yes)
29 if test "x$cchecks" = "xno"; then
30     CFLAGS="$CFLAGS -DG_DISABLE_CAST_CHECKS"
31 fi
32
33 AC_ARG_ENABLE(asserts,      [  --disable-asserts       compile with GLIB assertions disabled],[asserts=${enableval}],asserts=yes)
34 if test "x$asserts" = "xno"; then
35     CFLAGS="$CFLAGS -DG_DISABLE_ASSERTS"
36 fi
37
38 AC_ARG_ENABLE(checks,       [  --disable-checks        compile with GLIB checks disabled],[checks=${enableval}],checks=yes) 
39 if test "x$checks" = "xno"; then
40     CFLAGS="$CFLAGS -DG_DISABLE_CHECKS"
41 fi
42
43 AC_ARG_ENABLE(debug,     [  --enable-debug          enable printing of debug messages],[ddebug=${enableval}],ddebug=no)
44 if test "x$ddebug" != "xyes"; then
45     CFLAGS="$CFLAGS -DG_DEBUG_DISABLE"
46 fi
47
48 AC_ARG_ENABLE(coverage, [  --enable-coverage      compile with coverage info],[coverage=${enableval}],coverage=no)
49 if test "x$coverage" = "xyes"; then
50     CFLAGS="$CFLAGS -g -fprofile-arcs -ftest-coverage"
51 fi
52
53 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 0.51, dbus-glib-1 >= 0.51], have_dbus=yes, have_dbus=no)
54 AC_SUBST(DBUS_CFLAGS)
55 AC_SUBST(DBUS_LIBS)
56
57 testdatadir=${datadir}/libsignon-glib1-test
58 AC_SUBST(testdatadir)
59
60 AC_CONFIG_FILES([tests/signon-glib-test.sh], [chmod +x tests/signon-glib-test.sh])
61
62 AC_OUTPUT([
63         Makefile
64         libsignon-glib/Makefile
65         libsignon-glib.pc
66         docs/Makefile
67         docs/reference/Makefile
68         tests/Makefile
69 ])