1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
diff -ur vorbis-tools-1.2.0.orig/configure.ac vorbis-tools-1.2.0/configure.ac
--- vorbis-tools-1.2.0.orig/configure.ac 2008-03-03 07:37:31.000000000 +0200
+++ vorbis-tools-1.2.0/configure.ac 2008-03-06 16:31:31.000000000 +0200
@@ -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
|