summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hammond <chipx86@chipx86.com>2006-06-02 22:58:39 +0000
committerChristian Hammond <chipx86@chipx86.com>2006-06-02 22:58:39 +0000
commita70c8b7256510b2001514a5f6df92f36f24d284a (patch)
tree698d0c7cd4cacbe8f0dc8cf6e6ff1460682ac918
parent575d12a3cfd01c7d8430034b9adecbacedce7978 (diff)
downloadlibnotify-a70c8b7256510b2001514a5f6df92f36f24d284a.tar.gz
- 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.
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog9
-rw-r--r--configure.ac7
-rw-r--r--libnotify.pc.in5
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 <duarte.henriques@gmail.com>
Rodney Dawes <dobey@novell.com>
+ Tom Parker <debian@tevp.net>
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 <chipx86@chipx86.com>
+
+ * 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 <chipx86@chipx86.com>
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}