Changeset 2511
- Timestamp:
- 01/29/06 12:16:33
- Files:
-
- trunk/notification-daemon/ChangeLog (modified) (1 diff)
- trunk/notification-daemon/configure.ac (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/notification-daemon/ChangeLog
r2498 r2511 1 Sun Jan 29 12:12:43 PST 2006 Christian Hammond <chipx86@chipx86.com> 2 3 * configure.ac: 4 - Fix a couple missing commas in the list of package modules. Also 5 take the time to clean this up a bit and put each module on its own 6 line, and put the required versions into their own variables. 7 - Bump the version to 0.3.3.90. 8 1 9 ==================== 0.3.3 ==================== 2 10 trunk/notification-daemon/configure.ac
r2498 r2511 4 4 dnl # Initialize autoconf 5 5 dnl ################################################################ 6 AC_INIT(notification-daemon, 0.3.3 , galago-devel@lists.freedesktop.org)6 AC_INIT(notification-daemon, 0.3.3.90, galago-devel@lists.freedesktop.org) 7 7 AC_PREREQ(2.50) 8 8 AC_CONFIG_SRCDIR(config.h.in) … … 16 16 NOTIFICATION_DAEMON_MINOR_VERSION=3 17 17 NOTIFICATION_DAEMON_MICRO_VERSION=3 18 NOTIFICATION_DAEMON_DEVEL_VERSION= 018 NOTIFICATION_DAEMON_DEVEL_VERSION=90 19 19 20 20 NOTIFICATION_DAEMON_VERSION=$NOTIFICATION_DAEMON_MAJOR_VERSION.$NOTIFICATION_DAEMON_MINOR_VERSION.$NOTIFICATION_DAEMON_MICRO_VERSION … … 76 76 AC_CHECK_LIB([popt], [poptGetArg], , AC_MSG_ERROR([Popt is required])) 77 77 78 REQ_GTK_VERSION=2.4.0 79 REQ_GLIB_VERSION=$REQ_GTK_VERSION 80 REQ_SEXY_VERSION=0.1.3 78 81 REQ_DBUS_VERSION=0.36 79 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 libsexy >= 0.1.3 gconf-2.0 libwnck-1.0" 80 PKG_CHECK_MODULES(NOTIFICATION_DAEMON, [$pkg_modules]) 82 PKG_CHECK_MODULES(NOTIFICATION_DAEMON, [\ 83 gtk+-2.0 >= $REQ_GTK_VERSION, \ 84 glib-2.0 >= $REQ_GLIB_VERSION, \ 85 dbus-1 >= $REQ_DBUS_VERSION, \ 86 dbus-glib-1 >= $REQ_DBUS_VERSION, \ 87 libsexy >= $REQ_SEXY_VERSION, \ 88 gconf-2.0, \ 89 libwnck-1.0 \ 90 ]) 81 91 AC_SUBST(NOTIFICATION_DAEMON_CFLAGS) 82 92 AC_SUBST(NOTIFICATION_DAEMON_LIBS) 83 93 84 gdk_modules="gdk-2.0 gdk-pixbuf-2.0" 85 PKG_CHECK_MODULES(GDK, [$gdk_modules], have_gdk=yes, 86 [ 94 PKG_CHECK_MODULES(GDK, 95 gdk-2.0 >= $REQ_GTK_VERSION, \ 96 gdk-pixbuf-2.0 >= $REQ_GTK_VERSION \ 97 ],[ 98 have_gdk=yes, 99 ],[ 87 100 have_gdk=no 88 101
