Fix the issue that changed callback is not working
[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
14 AC_CHECK_FUNC([dlopen], [],
15               AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
16 AC_SUBST(DLOPEN_LIBS)
17
18 PKG_CHECK_MODULES([TIZEN], [eina ecore com-core notification dbus-1 bluetooth-api dlog libwlmessage vconf vconf-internal-keys])
19 AC_SUBST(TIZEN_CFLAGS)
20 AC_SUBST(TIZEN_LIBS)
21
22 AC_CONFIG_FILES([Makefile plugins/Makefile notifications.service notifications-display-ivi.service notifications-display-x11.service notifications-display-wayland.service])
23 AC_PROG_RANLIB([ranlib])
24 AC_OUTPUT