diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-11-28 02:34:44 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-11-28 02:34:44 +0100 |
commit | 644110a847c5911c2eb04eb53c93031740561efc (patch) | |
tree | 9658dde1cc70b52b233957b7852f87d997e98156 /trinity-base/kopete/files/kopete-3.5.13.1-patches/0014-265c466-added-test-of-the-presence-libgadu-with-automake.patch | |
download | tde-packaging-gentoo-644110a847c5911c2eb04eb53c93031740561efc.tar.gz tde-packaging-gentoo-644110a847c5911c2eb04eb53c93031740561efc.zip |
Initial import of an ebuilds tree
from Fat-Zer's (Alexander Golubev) repository.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'trinity-base/kopete/files/kopete-3.5.13.1-patches/0014-265c466-added-test-of-the-presence-libgadu-with-automake.patch')
-rw-r--r-- | trinity-base/kopete/files/kopete-3.5.13.1-patches/0014-265c466-added-test-of-the-presence-libgadu-with-automake.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/trinity-base/kopete/files/kopete-3.5.13.1-patches/0014-265c466-added-test-of-the-presence-libgadu-with-automake.patch b/trinity-base/kopete/files/kopete-3.5.13.1-patches/0014-265c466-added-test-of-the-presence-libgadu-with-automake.patch new file mode 100644 index 00000000..1c5de852 --- /dev/null +++ b/trinity-base/kopete/files/kopete-3.5.13.1-patches/0014-265c466-added-test-of-the-presence-libgadu-with-automake.patch @@ -0,0 +1,21 @@ +diff --git a/kopete/protocols/configure.in.in b/kopete/protocols/configure.in.in +index 0008f19..7a96cc9 100644 +--- a/kopete/protocols/configure.in.in ++++ b/kopete/protocols/configure.in.in +@@ -27,6 +27,16 @@ fi + dnl This may need a test still for compatibility + COMPILE_GADU=true + use_libgadu_copy= ++if test "$with_external_libgadu" != "no" ; then ++ # Check and setup for libgadu ++ KDE_PKG_CHECK_MODULES(LIBGG, libgadu, [have_libgg=yes], [have_libgg=no]) ++ if test "x$have_libgg" = "xno"; then ++ COMPILE_GADU= ++ AC_MSG_RESULT([not found]) ++ else ++ AC_MSG_RESULT([found]) ++ fi ++fi + + AC_SUBST(LIBGG_INCLUDES) + AC_SUBST(LIBGG_LIBS) |