ekiga r6965 - trunk
- From: mschneid svn gnome org
- To: svn-commits-list gnome org
- Subject: ekiga r6965 - trunk
- Date: Sun, 14 Sep 2008 11:04:53 +0000 (UTC)
Author: mschneid
Date: Sun Sep 14 11:04:53 2008
New Revision: 6965
URL: http://svn.gnome.org/viewvc/ekiga?rev=6965&view=rev
Log:
Add forward compatibility for opal autoconf branch.
Modified:
trunk/ChangeLog
trunk/configure.ac
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sun Sep 14 11:04:53 2008
@@ -534,23 +534,30 @@
AC_SUBST(OPAL_CFLAGS)
AC_SUBST(OPAL_LIBS)
+dnl The =1 checks are here only for backward compatibility
H323=`$PKG_CONFIG --variable=h323 opal`
if test "x$H323" = "x1"; then
- H323="enabled"
- AC_DEFINE(HAVE_H323,1,[H323 support])
+ H323="yes"
else
- H323="disabled"
+ H323=`$PKG_CONFIG --variable=OPAL_H323 opal`
+fi
+
+if test "x$H323" = "xyes"; then
+ AC_DEFINE(HAVE_H323,1,[H323 support])
fi
-AM_CONDITIONAL(HAVE_H323, test "x${H323}" = "xenabled")
+AM_CONDITIONAL(HAVE_H323, test "x${H323}" = "xyes")
SIP=`$PKG_CONFIG --variable=sip opal`
if test "x$SIP" = "x1"; then
- SIP="enabled"
- AC_DEFINE(HAVE_SIP,1,[SIP support])
+ SIP="yes"
else
- SIP="disabled"
+ SIP=`$PKG_CONFIG --variable=OPAL_SIP opal`
+fi
+
+if test "x$SIP" = "xyes"; then
+ AC_DEFINE(HAVE_SIP,1,[SIP support])
fi
-AM_CONDITIONAL(HAVE_SIP, test "x${SIP}" = "xenabled")
+AM_CONDITIONAL(HAVE_SIP, test "x${SIP}" = "xyes")
dnl #########################################################################
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]