From 9c3b8d29fec3c023f1b5dad00d4b83e162c2429d Mon Sep 17 00:00:00 2001
From: yanmorin <yanmorin>
Date: Wed, 11 Jan 2006 15:05:27 +0000
Subject: [PATCH] Disable speex by default Didn't find the cause yet to const
 SpeexMove/SpeexMove bug seen on some ubuntu distribution

---
 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index bb4c7bf3c0..66d8dfe617 100644
--- a/configure.ac
+++ b/configure.ac
@@ -109,8 +109,8 @@ SFLPHONE_LIBS="$SFLPHONE_LIBS $OSIP_LIBS $EXOSIP_LIBS "
 AC_SUBST(SFLPHONE_CXXFLAGS)
 AC_SUBST(SFLPHONE_LIBS)
 
-#zeroconf...
-AC_ARG_ENABLE(speex, [  --enable-speex	compile with speex codec ], with_speex=$enableval, with_speex=yes)
+#speex disable by default...
+AC_ARG_ENABLE(speex, [  --enable-speex	compile with speex codec (default: no) ], with_speex=$enableval, with_speex=no)
 
 if test "x$with_speex" = "xyes" ; then
   AC_CHECK_HEADER([speex/speex.h], [
@@ -124,7 +124,7 @@ if test "x$with_speex" = "xyes" ; then
 fi
 AM_CONDITIONAL(USE_SPEEX, test "x$with_speex" = "xyes" )
 
-
+#zeroconf
 AC_ARG_ENABLE(zeroconf, [  --disable-zeroconf	don't require libdns_sd (browsing and publishing DNS-SD services will not be possible) ],  with_zeroconf=$enableval, with_zeroconf=yes)
 if test "$with_zeroconf" = "yes"; then
 AC_MSG_CHECKING(for DNS-SD support)
-- 
GitLab