[xiph-commits] r14625 - trunk/vorbis-tools

ivo at svn.xiph.org ivo at svn.xiph.org
Tue Mar 25 10:46:45 PDT 2008


Author: ivo
Date: 2008-03-25 10:46:44 -0700 (Tue, 25 Mar 2008)
New Revision: 14625

Modified:
   trunk/vorbis-tools/CHANGES
   trunk/vorbis-tools/configure.ac
Log:
Use "$withval" instead of "no".  Closes #1319.

Modified: trunk/vorbis-tools/CHANGES
===================================================================
--- trunk/vorbis-tools/CHANGES	2008-03-25 05:54:31 UTC (rev 14624)
+++ trunk/vorbis-tools/CHANGES	2008-03-25 17:46:44 UTC (rev 14625)
@@ -1,3 +1,7 @@
+vorbis-tools 1.2.1 -- Unreleased
+
+* Fixed an error in configure.ac; --with-speex/flac work again
+
 vorbis-tools 1.2.0 -- 2008-02-21
 
  * FLAC support now relies on libFLAC

Modified: trunk/vorbis-tools/configure.ac
===================================================================
--- trunk/vorbis-tools/configure.ac	2008-03-25 05:54:31 UTC (rev 14624)
+++ trunk/vorbis-tools/configure.ac	2008-03-25 17:46:44 UTC (rev 14625)
@@ -98,8 +98,8 @@
 AC_ARG_ENABLE(ogginfo,[  --disable-ogginfo  Skip building ogginfo], build_ogginfo="$enableval", build_ogginfo="yes")
 AC_ARG_ENABLE(vcut,   [  --disable-vcut     Skip building vcut], build_vcut="$enableval", build_vcut="no")
 AC_ARG_ENABLE(vorbiscomment, [  --disable-vorbiscomment   Skip building vorbiscomment], build_vorbiscomment="$enableval", build_vorbiscomment="yes")
-AC_ARG_WITH(flac,     [  --without-flac     Do not compile FLAC support], build_flac=no, build_flac="yes")
-AC_ARG_WITH(speex,    [  --without-speex    Do not compile Speex support], build_speex=no, build_speex="yes")
+AC_ARG_WITH(flac,     [  --without-flac     Do not compile FLAC support], build_flac="$withval", build_flac="yes")
+AC_ARG_WITH(speex,    [  --without-speex    Do not compile Speex support], build_speex="$withval", build_speex="yes")
 
 dnl --------------------------------------------------
 dnl Check for generally needed libraries



More information about the commits mailing list