[Galago-commits] r2878 - trunk/libnotify
galago-commits at freedesktop.org
galago-commits at freedesktop.org
Thu Jul 13 00:45:37 PDT 2006
Author: chipx86
Date: 2006-07-13 00:45:34 -0700 (Thu, 13 Jul 2006)
New Revision: 2878
Modified:
trunk/libnotify/ChangeLog
trunk/libnotify/configure.ac
Log:
Patch by compnerd to check for glib 2.6+ during configure, as that is now required. This closes ticket #69.
Modified: trunk/libnotify/ChangeLog
===================================================================
--- trunk/libnotify/ChangeLog 2006-07-13 07:43:50 UTC (rev 2877)
+++ trunk/libnotify/ChangeLog 2006-07-13 07:45:34 UTC (rev 2878)
@@ -1,3 +1,9 @@
+Thu Jul 13 00:44:29 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
+
+ * configure.ac:
+ - Patch by compnerd to check for glib 2.6+ during configure, as that
+ is now required. This closes ticket #69.
+
Thu Jul 13 00:41:16 PDT 2006 Christian Hammond <chipx86 at chipx86.com>
* libnotify/notification.c:
Modified: trunk/libnotify/configure.ac
===================================================================
--- trunk/libnotify/configure.ac 2006-07-13 07:43:50 UTC (rev 2877)
+++ trunk/libnotify/configure.ac 2006-07-13 07:45:34 UTC (rev 2878)
@@ -83,7 +83,9 @@
AM_PROG_LIBTOOL
REQ_DBUS_VERSION=0.36
-pkg_modules="gtk+-2.0 >= 2.2.2, glib-2.0 >= 2.2.2, dbus-1 >= $REQ_DBUS_VERSION, dbus-glib-1 >= $REQ_DBUS_VERSION"
+REQ_GTK_VERSION=2.6
+REQ_GLIB_VERSION=2.6
+pkg_modules="gtk+-2.0 >= $REQ_GTK_VERSION, glib-2.0 >= $REQ_GLIB_VERSION, dbus-1 >= $REQ_DBUS_VERSION, dbus-glib-1 >= $REQ_DBUS_VERSION"
AC_SUBST(pkg_modules)
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS)
More information about the galago-commits
mailing list