From: <jpg...@us...> - 2007-08-28 19:54:14
|
Revision: 1110 http://iaxclient.svn.sourceforge.net/iaxclient/?rev=1110&view=rev Author: jpgrayson Date: 2007-08-28 12:54:16 -0700 (Tue, 28 Aug 2007) Log Message: ----------- Fix problem with gsm always being disabled. Thanks to Mikael Magnusson. Modified Paths: -------------- trunk/configure.ac Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2007-08-28 15:56:53 UTC (rev 1109) +++ trunk/configure.ac 2007-08-28 19:54:16 UTC (rev 1110) @@ -287,11 +287,11 @@ AC_DEFINE(CODEC_ILBC,,[Enable ILBC support]) fi -if test x$has_gsm = xyes && test ! x$with_gsmlibraries != xno; then +if test x$has_gsm = xyes && test ! x$with_gsm = xno; then AC_DEFINE(CODEC_GSM,,[Enable GSM support]) fi -AM_CONDITIONAL(USE_CODEC_GSM, test x$has_gsm = xyes && test ! x$with_gsmlibraries != xno) +AM_CONDITIONAL(USE_CODEC_GSM, test x$has_gsm = xyes && test ! x$with_gsm = xno) AM_CONDITIONAL(USE_LOCAL_GSM, test x$enable_local_gsm = xyes) AM_CONDITIONAL(USE_LOCAL_IAX2, test x$enable_local_iax2 = xyes) AM_CONDITIONAL(USE_LOCAL_ILBC, test x$enable_local_ilbc = xyes) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |