af11ca17993a4d587a4e36bb72ec91634b7be658
[profile/ivi/message-port.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ([2.60])
5 AC_INIT([message-port], [0.0.1], [], [], [])
6 AC_CONFIG_SRCDIR([daemon/main.c])
7 AC_CONFIG_HEADERS([config.h])
8 AC_CONFIG_AUX_DIR([build-aux])
9 AC_CONFIG_MACRO_DIR([m4])
10
11 AM_INIT_AUTOMAKE([1.11 nostdinc silent-rules subdir-objects tar-pax -Wno-portability])
12 LT_INIT([disable-static])
13
14 # Checks for programs.
15 AC_PROG_CC
16
17 # Checks for libraries.
18 PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.30])
19 AC_SUBST(GLIB_CFLAGS)
20 AC_SUBST(GLIB_LIBS)
21
22 PKG_CHECK_MODULES([GIO],[gio-2.0])
23 AC_SUBST(GIO_CFLAGS)
24 AC_SUBST(GIO_LIBS)
25
26 PKG_CHECK_MODULES([GIOUNIX],[gio-unix-2.0])
27 AC_SUBST(GIOUNIX_CFLAGS)
28 AC_SUBST(GIOUINX_LIBS)
29
30 #PKG_CHECK_MODULES([AUL], [aul])
31 AC_SUBST(AUL_CFLAGS)
32 AC_SUBST(AUL_LIBS)
33
34 #PKG_CHECK_MODULES([PKGMGRINFO], [pkgmgr-info])
35 AC_SUBST(PKGMGRINFO_CFLAGS)
36 AC_SUBST(PKGMGRINFO_LIBS)
37
38 PKG_CHECK_MODULES([BUNDLE], [bundle])
39 AC_SUBST(BUNDLE_CFLAGS)
40 AC_SUBST(BUNDLE_LIBS)
41
42 AC_DEFINE(MESSAGEPORT_BUS_ADDRESS, 
43          ["unix:path=%s/.message-port", g_get_user_runtime_dir()],
44          [messageport daemon server socket address])
45
46 # Enable Debug
47 AC_ARG_ENABLE(debug, 
48               [--enable-debug Eenable debug features],
49               [enable_debug=$enableval], [enable_debug=no])
50 if test "x$enable_debug" = "xyes" ; then
51     AC_DEFINE(ENABLE_DEBUG, [1], [Enable debug features])
52 fi
53
54 # build example
55 AC_ARG_ENABLE(examples,
56               [--enable-examples example applications],
57               [enable_examples=$enable_examples], [enable_examples=no])
58 AM_CONDITIONAL(BUILD_EXAMPLES, [test "x$enable_examples" = "xyes"])
59
60 # Checks for header files.
61 AC_CHECK_HEADERS([string.h])
62
63 # Checks for typedefs, structures, and compiler characteristics.
64
65 # Checks for library functions.
66
67 AC_OUTPUT([
68 Makefile
69 common/Makefile
70 daemon/Makefile
71 lib/Makefile
72 lib/message-port.pc
73 ])
74
75 if test "x$enable_examples" = "xyes"; then
76     AC_OUTPUT([
77     examples/Makefile
78     ])
79 fi