diff options
author | Christoph Mende <angelos@gentoo.org> | 2008-12-06 22:14:07 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2008-12-06 22:14:07 +0000 |
commit | 68f8529373df0aa9b7a8e713099fc679fde34184 (patch) | |
tree | 66f42efe606b6db2adbd9884698466e67bcb916b /media-sound/ario/files | |
parent | version bump (diff) | |
download | historical-68f8529373df0aa9b7a8e713099fc679fde34184.tar.gz historical-68f8529373df0aa9b7a8e713099fc679fde34184.tar.bz2 historical-68f8529373df0aa9b7a8e713099fc679fde34184.zip |
Fixed as-needed, bug 232416 and 247814, thanks to a-v and idl0r on freenode
Package-Manager: portage-2.2_rc16/cvs/Linux 2.6.28-rc7-00167-g24920a7 x86_64
Diffstat (limited to 'media-sound/ario/files')
-rw-r--r-- | media-sound/ario/files/ario-1.1-as-needed.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-sound/ario/files/ario-1.1-as-needed.patch b/media-sound/ario/files/ario-1.1-as-needed.patch new file mode 100644 index 000000000000..580697674c62 --- /dev/null +++ b/media-sound/ario/files/ario-1.1-as-needed.patch @@ -0,0 +1,32 @@ +diff -u -Nru a/configure.ac b/configure.ac +--- a/configure.ac 2008-06-05 23:44:02.000000000 +0200 ++++ b/configure.ac 2008-12-06 23:07:49.000000000 +0100 +@@ -26,6 +26,8 @@ + AC_SUBST(DEPS_CFLAGS) + AC_SUBST(DEPS_LIBS) + ++AM_PATH_LIBGCRYPT(1.4.0,,) ++ + dnl i18n + GETTEXT_PACKAGE=Ario + AC_SUBST(GETTEXT_PACKAGE) +diff -u -Nru a/src/Makefile.am b/src/Makefile.am +--- a/src/Makefile.am 2008-05-17 20:02:37.000000000 +0200 ++++ b/src/Makefile.am 2008-12-06 23:08:03.000000000 +0100 +@@ -132,12 +132,14 @@ + endif + + ario_LDADD = \ +- $(DEPS_LIBS)\ +- $(AVAHI_LIBS) ++ $(DEPS_LIBS) \ ++ $(AVAHI_LIBS) \ ++ $(LIBGCRYPT_LIBS) + + AM_CPPFLAGS = \ + $(DEPS_CFLAGS) \ + $(AVAHI_CFLAGS) \ ++ $(LIBGCRYPT_CFLAGS) \ + -DLOCALE_DIR=\""$(pkgdatadir)/locale"\"\ + -DPIXMAP_PATH=\""$(pkgdatadir)/ario/art/"\"\ + -DDATA_PATH=\""$(pkgdatadir)/ario/data/"\"\ |