Patch by compnerd to check for glib 2.6+ during configure, as that is now required. This closes ticket #69.

This commit is contained in:
Christian Hammond 2006-07-13 07:45:34 +00:00
parent 1d95f7d3c3
commit 761ad2b8c7
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Thu Jul 13 00:44:29 PDT 2006 Christian Hammond <chipx86@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@chipx86.com>
* libnotify/notification.c:

View File

@ -83,7 +83,9 @@ AC_EXEEXT
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)