-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
41 lines (31 loc) · 981 Bytes
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
AC_INIT([Hildon Control Panel for Language and Region],
[1.0.0],
[[email protected]], [osso-applet-languageregional])
AM_INIT_AUTOMAKE
LT_INIT([shared disable-static])
AC_CONFIG_FILES(Makefile)
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
PKG_PROG_PKG_CONFIG
PKG_CHECK_MODULES(LIBHILDON, hildon-1)
AC_SUBST(LIBHILDON_CFLAGS)
AC_SUBST(LIBHILDON_LIBS)
PKG_CHECK_MODULES(LIBDBUS, dbus-1)
AC_SUBST(LIBDBUS_CFLAGS)
AC_SUBST(LIBDBUS_LIBS)
PKG_CHECK_MODULES(GLIB, glib-2.0)
AC_SUBST(GLIB_CFLAGS)
AC_SUBST(GLIB_LIBS)
#PKG_CHECK_MODULES(X11, x11)
#AC_SUBST(X11_CFLAGS)
#AC_SUBST(X11_LIBS)
#
#PKG_CHECK_MODULES(GCONF, gconf-2.0)
#AC_SUBST(GCONF_CFLAGS)
#AC_SUBST(GCONF_LIBS)
hildoncontrolpaneldesktopentrydir="`$PKG_CONFIG --variable=plugindesktopentrydir hildon-control-panel`"
AC_SUBST(hildoncontrolpaneldesktopentrydir)
hildoncontrolpanelpluginlibdir="`$PKG_CONFIG --variable=pluginlibdir hildon-control-panel`"
AC_SUBST(hildoncontrolpanelpluginlibdir)
AC_OUTPUT