summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKathryn Kulick <gothgirl@gentoo.org>2006-07-01 19:16:17 +0000
committerKathryn Kulick <gothgirl@gentoo.org>2006-07-01 19:16:17 +0000
commit52e7a747cd1470c9a01eff826d9115a9225918c2 (patch)
tree73d107dce6df73c9585aaab0750abdf9d1939a17 /net-im/gaim/files
parentUpdate version. Add patches from fedora and fix catalog path (based on (diff)
downloadgentoo-2-52e7a747cd1470c9a01eff826d9115a9225918c2.tar.gz
gentoo-2-52e7a747cd1470c9a01eff826d9115a9225918c2.tar.bz2
gentoo-2-52e7a747cd1470c9a01eff826d9115a9225918c2.zip
Added avahi howl and meanwhile support.
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'net-im/gaim/files')
-rw-r--r--net-im/gaim/files/gaim-2.0.0_beta3-avahi-compat.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/net-im/gaim/files/gaim-2.0.0_beta3-avahi-compat.patch b/net-im/gaim/files/gaim-2.0.0_beta3-avahi-compat.patch
new file mode 100644
index 000000000000..2520e7233d7e
--- /dev/null
+++ b/net-im/gaim/files/gaim-2.0.0_beta3-avahi-compat.patch
@@ -0,0 +1,30 @@
+diff -ur gaim-2.0.0beta3/configure.ac gaim-2.0.0beta3-patched/configure.ac
+--- gaim-2.0.0beta3/configure.ac 2006-03-26 07:45:35.000000000 +0000
++++ gaim-2.0.0beta3-patched/configure.ac 2006-05-07 23:13:46.000000000 +0000
+@@ -183,15 +183,17 @@
+ HOWL_CFLAGS=""
+ HOWL_LIBS=""
+
+-dnl Attempt to autodetect Howl
+-PKG_CHECK_MODULES(HOWL, howl, [
+- howlincludes="yes"
+- howllibs="yes"
+- ], [
+- AC_MSG_RESULT(no)
+- howlincludes="no"
+- howllibs="no"
+- ])
++dnl First we attempt to use avahi-compat-howl
++PKG_CHECK_MODULES(HOWL, avahi-compat-howl,
++ [howlincludes="yes" howllibs="yes"],
++ [howlincludes="no" howllibs="no"])
++
++dnl If that fails, autodetect the "real" howl
++if test "$howlincludes" = "no" ; then
++ PKG_CHECK_MODULES(HOWL, howl,
++ [howlincludes="yes" howllibs="yes"],
++ [howlincludes="no" howllibs="no"])
++fi
+
+ dnl Override HOWL_CFLAGS if the user specified an include dir
+ if test "$ac_howl_includes" != "no"; then