From a70c8b7256510b2001514a5f6df92f36f24d284a Mon Sep 17 00:00:00 2001 From: Christian Hammond Date: Fri, 2 Jun 2006 22:58:39 +0000 Subject: [PATCH] - Improve libnotify.pc by pushing dependencies into Requires: instead of Cflags: and Libs:. This closes ticket #58. - Bump the version to 0.4.0.90. --- AUTHORS | 1 + ChangeLog | 9 +++++++++ configure.ac | 7 ++++--- libnotify.pc.in | 5 +++-- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 0d3a350..3cca58b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -9,5 +9,6 @@ Patch Writers: Duarte Henriques Rodney Dawes + Tom Parker jensgr@gmx.net M.S. diff --git a/ChangeLog b/ChangeLog index 774551e..f635bb3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Fri Jun 02 15:56:05 PDT 2006 Christian Hammond + + * AUTHORS: + * configure.ac: + * libnotify.pc.in: + - Improve libnotify.pc by pushing dependencies into Requires: instead of + Cflags: and Libs:. This closes ticket #58. + - Bump the version to 0.4.0.90. + ========================= 0.4.0 ========================= Wed Apr 26 01:15:20 PDT 2006 Christian Hammond diff --git a/configure.ac b/configure.ac index 8799010..7e74f75 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl Process this file with autoconf to create configure. dnl ################################################################ dnl # Initialize autoconf dnl ################################################################ -AC_INIT(libnotify, 0.4.0, chipx86@chipx86.com) +AC_INIT(libnotify, 0.4.0.90, chipx86@chipx86.com) AC_PREREQ(2.50) AC_CONFIG_SRCDIR(config.h.in) AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond]) @@ -15,7 +15,7 @@ dnl ################################################################ LIBGALAGO_MAJOR_VERSION=0 LIBGALAGO_MINOR_VERSION=4 LIBGALAGO_MICRO_VERSION=0 -LIBGALAGO_DEVEL_VERSION=0 +LIBGALAGO_DEVEL_VERSION=90 LIBGALAGO_VERSION=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION @@ -88,7 +88,8 @@ 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" +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" +AC_SUBST(pkg_modules) PKG_CHECK_MODULES(PACKAGE, [$pkg_modules]) AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_LIBS) diff --git a/libnotify.pc.in b/libnotify.pc.in index 198d324..b586d74 100644 --- a/libnotify.pc.in +++ b/libnotify.pc.in @@ -6,6 +6,7 @@ includedir=@includedir@ Name: libnotify Description: Notifications Library Version: @VERSION@ -Libs: -L${libdir} -lnotify @PACKAGE_LIBS@ -Cflags: -I${includedir} @PACKAGE_CFLAGS@ +Requires: @pkg_modules@ +Libs: -L${libdir} -lnotify +Cflags: -I${includedir}