Initial import
[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 PKG_CHECK_MODULES([TIZEN], [eina ecore com-core notification])
14 AC_SUBST(TIZEN_CFLAGS)
15 AC_SUBST(TIZEN_LIBS)
16
17 AC_CONFIG_FILES([Makefile notifications.service notifications.socket])
18 AC_PROG_RANLIB([ranlib])
19 AC_OUTPUT