Run the notifications display deamon with a systemd service.
[platform/core/appfw/notification-service.git] / configure.ac
1 AC_PREREQ([2.68])
2 AC_INIT([notification-service], [0.0.1], [])
3 AM_INIT_AUTOMAKE([foreign 1.11])
4 AC_CONFIG_SRCDIR([configure.ac])
5 AC_CONFIG_HEADERS([config.h])
6
7 AC_PROG_CC
8
9 LT_PREREQ([2.2])
10 LT_INIT([disable-static])
11
12 PKG_PROG_PKG_CONFIG()
13 AC_ARG_ENABLE(wayland, [  --enable-wayland],, enable_wayland=no)
14 AM_CONDITIONAL(HAVE_WAYLAND, test x$enable_wayland = xyes)
15 if test "x$enable_wayland" = "xyes"; then
16   wayland_libs="libwlmessage"
17 fi
18 PKG_CHECK_MODULES([TIZEN], [eina ecore com-core notification dbus-1 bluetooth-api $wayland_libs])
19 AC_SUBST(TIZEN_CFLAGS)
20 AC_SUBST(TIZEN_LIBS)
21
22 AC_CONFIG_FILES([Makefile notifications.service notifications_display.service])
23 AC_PROG_RANLIB([ranlib])
24 AC_OUTPUT