Changeset 2878

Show
Ignore:
Timestamp:
07/13/06 00:45:34
Author:
chipx86
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libnotify/ChangeLog

    r2877 r2878  
     1Thu Jul 13 00:44:29 PDT 2006  Christian Hammond <chipx86@chipx86.com> 
     2 
     3    * configure.ac: 
     4      - Patch by compnerd to check for glib 2.6+ during configure, as that 
     5        is now required. This closes ticket #69. 
     6 
    17Thu Jul 13 00:41:16 PDT 2006  Christian Hammond <chipx86@chipx86.com> 
    28 
  • trunk/libnotify/configure.ac

    r2877 r2878  
    8484 
    8585REQ_DBUS_VERSION=0.36 
    86 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" 
     86REQ_GTK_VERSION=2.6 
     87REQ_GLIB_VERSION=2.6 
     88pkg_modules="gtk+-2.0 >= $REQ_GTK_VERSION, glib-2.0 >= $REQ_GLIB_VERSION, dbus-1 >= $REQ_DBUS_VERSION, dbus-glib-1 >= $REQ_DBUS_VERSION" 
    8789AC_SUBST(pkg_modules) 
    8890PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])