diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-07-30 09:54:46 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-07-30 09:54:46 +0000 |
commit | fc5789f18ed815f3616e627d07225f207dc5a6c3 (patch) | |
tree | 3372b861a3036be299f1cad91307e7533348f116 /kde-base/kmilo/files | |
parent | version bump. +3.242 x86 stable (diff) | |
download | gentoo-2-fc5789f18ed815f3616e627d07225f207dc5a6c3.tar.gz gentoo-2-fc5789f18ed815f3616e627d07225f207dc5a6c3.tar.bz2 gentoo-2-fc5789f18ed815f3616e627d07225f207dc5a6c3.zip |
Add configure patch for pbbuttonsd detection (#94731).
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'kde-base/kmilo/files')
-rw-r--r-- | kde-base/kmilo/files/configure-fix-kdeutils-powerbook.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/kde-base/kmilo/files/configure-fix-kdeutils-powerbook.patch b/kde-base/kmilo/files/configure-fix-kdeutils-powerbook.patch new file mode 100644 index 000000000000..a54c727876ea --- /dev/null +++ b/kde-base/kmilo/files/configure-fix-kdeutils-powerbook.patch @@ -0,0 +1,31 @@ +Index: kmilo/configure.in.in +=================================================================== +--- kmilo/configure.in.in (revision 433553) ++++ kmilo/configure.in.in (working copy) +@@ -9,6 +9,15 @@ + dnl --------------------------------------------------------------------- + dnl PowerBook IPC Library + ++AC_ARG_WITH(powerbook, ++ [AS_HELP_STRING(--with-powerbook, ++ [enable support for PPC PowerBook @<:@default=check@:>@])], ++ [], with_powerbook=check) ++ ++have_pbbipc="" ++have_pbb="" ++if test "x$with_powerbook" != xno; then ++ + KDE_CHECK_LIB(pbbipc, create_msgport, + [ + KEYBOARD_LIBS="-lpbbipc $KEYBOARD_LIBS" +@@ -23,6 +32,10 @@ + have_pbb=true + ]) + ++if test "x$with_powerbook" != xcheck && test -z "$have_pbbipc$have_pbb"; then ++ AC_MSG_FAILURE([--with-powerbook was given, but test for libpbb failed]) ++fi ++fi + + AM_CONDITIONAL(include_kmilo_powerbook, test x$have_pbbipc = xtrue) + AM_CONDITIONAL(include_kmilo_pbb, test x$have_pbb = xtrue) |