[Galago-commits] r2555 - trunk/notification-daemon

galago-commits at freedesktop.org galago-commits at freedesktop.org
Sat Feb 4 20:01:22 PST 2006


Author: chipx86
Date: 2006-02-04 20:01:20 -0800 (Sat, 04 Feb 2006)
New Revision: 2555

Modified:
   trunk/notification-daemon/ChangeLog
   trunk/notification-daemon/configure.ac
Log:
Fix make distcheck.


Modified: trunk/notification-daemon/ChangeLog
===================================================================
--- trunk/notification-daemon/ChangeLog	2006-02-05 03:49:06 UTC (rev 2554)
+++ trunk/notification-daemon/ChangeLog	2006-02-05 04:01:20 UTC (rev 2555)
@@ -1,3 +1,8 @@
+Sat Feb 04 20:01:09 PST 2006  Christian Hammond <chipx86 at chipx86.com>
+
+	* configure.ac:
+	  - Fix make distcheck.
+
 Sat Feb 04 19:48:49 PST 2006  Christian Hammond <chipx86 at chipx86.com>
 
 	D themes/standard/bgbox.c:

Modified: trunk/notification-daemon/configure.ac
===================================================================
--- trunk/notification-daemon/configure.ac	2006-02-05 03:49:06 UTC (rev 2554)
+++ trunk/notification-daemon/configure.ac	2006-02-05 04:01:20 UTC (rev 2555)
@@ -79,7 +79,7 @@
 REQ_GLIB_VERSION=$REQ_GTK_VERSION
 REQ_SEXY_VERSION=0.1.3
 REQ_DBUS_VERSION=0.36
-PKG_CHECK_MODULES(NOTIFICATION_DAEMON, [\
+pkg_modules="
 	gtk+-2.0 >= $REQ_GTK_VERSION, \
 	glib-2.0 >= $REQ_GLIB_VERSION, \
 	dbus-1 >= $REQ_DBUS_VERSION, \
@@ -87,18 +87,18 @@
 	libsexy >= $REQ_SEXY_VERSION, \
 	gconf-2.0, \
 	libwnck-1.0 \
-])
+"
+PKG_CHECK_MODULES(NOTIFICATION_DAEMON, $pkg_modules)
 AC_SUBST(NOTIFICATION_DAEMON_CFLAGS)
 AC_SUBST(NOTIFICATION_DAEMON_LIBS)
 
-PKG_CHECK_MODULES(GDK,
+gdk_modules="
 	gdk-2.0 >= $REQ_GTK_VERSION, \
 	gdk-pixbuf-2.0 >= $REQ_GTK_VERSION \
-],[
-	have_gdk=yes,
-],[
+"
+PKG_CHECK_MODULES(GDK, $gdk_modules, have_gdk=yes,
+[
 	have_gdk=no
-
 	AC_WARN("Some test apps will not be built")
 ])
 



More information about the galago-commits mailing list