diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-10 13:09:47 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2009-05-10 13:09:47 +0000 |
commit | db034600f7e9cddec660e8cd8cc0c040333efbdb (patch) | |
tree | d694c5bf03bec1eb0e369dba7f001be41207daaa /dev-libs/libunique | |
parent | add texlive-latex dep, by Alexander Smith <alexander.smith@utoronto.ca>, bug ... (diff) | |
download | gentoo-2-db034600f7e9cddec660e8cd8cc0c040333efbdb.tar.gz gentoo-2-db034600f7e9cddec660e8cd8cc0c040333efbdb.tar.bz2 gentoo-2-db034600f7e9cddec660e8cd8cc0c040333efbdb.zip |
Fix POSIX issue with test in configure.ac patch
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'dev-libs/libunique')
-rw-r--r-- | dev-libs/libunique/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/dev-libs/libunique/ChangeLog b/dev-libs/libunique/ChangeLog index 17c48a61bd71..6c7da185a608 100644 --- a/dev-libs/libunique/ChangeLog +++ b/dev-libs/libunique/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/libunique # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunique/ChangeLog,v 1.5 2009/05/07 17:34:12 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libunique/ChangeLog,v 1.6 2009/05/10 13:09:47 nirbheek Exp $ + + 10 May 2009; Nirbheek Chauhan <nirbheek@gentoo.org> + files/libunique-1.0.8-automagic-dbus.patch: + Fix POSIX issue with test in configure.ac patch 07 May 2009; Ferris McCormick <fmccor@gentoo.org> libunique-1.0.8.ebuild: Add ~sparc for testing, bug #268487. diff --git a/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch b/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch index afaa36d4f3f5..9b0e9b14e981 100644 --- a/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch +++ b/dev-libs/libunique/files/libunique-1.0.8-automagic-dbus.patch @@ -24,7 +24,7 @@ diff -Naur a/configure.ac b/configure.ac + [have_dbus=$enableval], + [have_dbus=yes]) + -+if test x$have_dbus == xyes; then ++if test x$have_dbus = xyes; then + dnl D-Bus backend dependencies + if $PKG_CONFIG --atleast-version $DBUS_GLIB_REQUIRED dbus-glib-1; then + have_dbus=yes |