- 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:
parent
575d12a3cf
commit
a70c8b7256
1
AUTHORS
1
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.
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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}
|
||||
|
||||
|
|
Loading…
Reference in New Issue