[xiph-commits] r9507 - trunk/theora

giles at svn.xiph.org giles at svn.xiph.org
Wed Jun 22 08:52:37 PDT 2005


Author: giles
Date: 2005-06-22 08:52:33 -0700 (Wed, 22 Jun 2005)
New Revision: 9507

Modified:
   trunk/theora/configure.ac
Log:
Correctly handle --enable-encode and --enable-float on the configure 
commandline. Previously, these had the opposite effect. Patch from
Edward Hervey.


Modified: trunk/theora/configure.ac
===================================================================
--- trunk/theora/configure.ac	2005-06-22 12:43:30 UTC (rev 9506)
+++ trunk/theora/configure.ac	2005-06-22 15:52:33 UTC (rev 9507)
@@ -157,7 +157,7 @@
 ac_enable_float=yes
 AC_ARG_ENABLE(float,
      [  --disable-float         disable use of floating point code ],
-     [ ac_enable_float=no ], [ ac_enable_float=yes] )
+     [ ac_enable_float=$enableval ], [ ac_enable_float=yes] )
 
 if test "x${ac_enable_float}" = xyes ; then
     AC_DEFINE(THEORA_SUPPORT_FLOAT, [1], [Build floating point code])
@@ -171,7 +171,7 @@
 ac_enable_encode=yes
 AC_ARG_ENABLE(encode,
      [  --disable-encode        disable encoding support ],
-     [ ac_enable_encode=no ], [ ac_enable_encode=yes] )
+     [ ac_enable_encode=$enableval ], [ ac_enable_encode=yes] )
 
 if test "x${ac_enable_encode}" = xyes ; then
     if test x$HAVE_VORBIS = xyes; then



More information about the commits mailing list