- 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.
This commit is contained in:
Christian Hammond 2006-06-02 22:58:39 +00:00
parent 575d12a3cf
commit a70c8b7256
4 changed files with 17 additions and 5 deletions

View File

@ -9,5 +9,6 @@ Patch Writers:
Duarte Henriques <duarte.henriques@gmail.com> Duarte Henriques <duarte.henriques@gmail.com>
Rodney Dawes <dobey@novell.com> Rodney Dawes <dobey@novell.com>
Tom Parker <debian@tevp.net>
jensgr@gmx.net jensgr@gmx.net
M.S. M.S.

View File

@ -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 ========================= ========================= 0.4.0 =========================
Wed Apr 26 01:15:20 PDT 2006 Christian Hammond <chipx86@chipx86.com> Wed Apr 26 01:15:20 PDT 2006 Christian Hammond <chipx86@chipx86.com>

View File

@ -3,7 +3,7 @@ dnl Process this file with autoconf to create configure.
dnl ################################################################ dnl ################################################################
dnl # Initialize autoconf dnl # Initialize autoconf
dnl ################################################################ 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_PREREQ(2.50)
AC_CONFIG_SRCDIR(config.h.in) AC_CONFIG_SRCDIR(config.h.in)
AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond]) AC_COPYRIGHT([Copyright 2004-2006 Christian Hammond])
@ -15,7 +15,7 @@ dnl ################################################################
LIBGALAGO_MAJOR_VERSION=0 LIBGALAGO_MAJOR_VERSION=0
LIBGALAGO_MINOR_VERSION=4 LIBGALAGO_MINOR_VERSION=4
LIBGALAGO_MICRO_VERSION=0 LIBGALAGO_MICRO_VERSION=0
LIBGALAGO_DEVEL_VERSION=0 LIBGALAGO_DEVEL_VERSION=90
LIBGALAGO_VERSION=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION LIBGALAGO_VERSION=$LIBGALAGO_MAJOR_VERSION.$LIBGALAGO_MINOR_VERSION.$LIBGALAGO_MICRO_VERSION
@ -88,7 +88,8 @@ AC_EXEEXT
AM_PROG_LIBTOOL AM_PROG_LIBTOOL
REQ_DBUS_VERSION=0.36 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]) PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS) AC_SUBST(PACKAGE_LIBS)

View File

@ -6,6 +6,7 @@ includedir=@includedir@
Name: libnotify Name: libnotify
Description: Notifications Library Description: Notifications Library
Version: @VERSION@ Version: @VERSION@
Libs: -L${libdir} -lnotify @PACKAGE_LIBS@ Requires: @pkg_modules@
Cflags: -I${includedir} @PACKAGE_CFLAGS@ Libs: -L${libdir} -lnotify
Cflags: -I${includedir}