Package: libjingle0.3
Severity: important
Version: 0.3.11-3
Tags: patch
User: [EMAIL PROTECTED]
Usertags: kfreebsd
Hi,
the current version fails to build on GNU/kFreeBSD.
It have to treat all glibc based systems in the same way.
Please apply patch bellow to configure.ac
and rerun autoconf to update configure.
It would also be nice if you can ask upstream
to include this change.
Thanks in advance
Petr
--- configure.ac~ 2008-08-05 15:50:50.000000000 +0000
+++ configure.ac 2008-08-05 15:50:50.000000000 +0000
@@ -63,14 +63,16 @@
AC_ERROR([Expat is required to build libjingle. You can get it from
http://expat.sourceforge.net/])
fi
-if test `uname -s` = Linux; then
+case $host_os in
+linux*|k*bsd*-gnu*|gnu*)
PKG_CHECK_MODULES(OPENSSL, openssl >= 0.9.7g, HAVE_OPENSSL=yes,
HAVE_OPENSSL=no)
if test x$HAVE_OPENSSL = xno; then
AC_ERROR([OpenSSL development files not found.])
fi
AC_SUBST(OPENSSL_CFLAGS)
AC_SUBST(OPENSSL_LIBS)
-fi
+ ;;
+esac
AC_OUTPUT([Makefile
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]