[xiph-cvs] cvs commit: ogg ogg.m4
Jack Moffitt
jack at xiph.org
Mon Mar 26 14:31:37 PST 2001
jack 01/03/26 14:31:37
Modified: . ogg.m4
Log:
fixed .m4 file. AC_ARG_WITH sets the variable to "NONE" not "".
Revision Changes Path
1.4 +2 -2 ogg/ogg.m4
Index: ogg.m4
===================================================================
RCS file: /usr/local/cvsroot/ogg/ogg.m4,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ogg.m4 2001/02/28 03:24:18 1.3
+++ ogg.m4 2001/03/26 22:31:36 1.4
@@ -12,7 +12,7 @@
AC_ARG_WITH(ogg-prefix,[ --with-ogg-prefix=PFX Prefix where libogg is installed (optional)], ogg_prefix="$withval", ogg_prefix="")
AC_ARG_ENABLE(oggtest, [ --disable-oggtest Do not try to compile and run a test Ogg program],, enable_oggtest=yes)
- if test x$ogg_prefix != x ; then
+ if test "x$ogg_prefix" != "xNONE" ; then
ogg_args="$ogg_args --prefix=$ogg_prefix"
OGG_CFLAGS="-I$ogg_prefix/include"
OGG_LIBS="-L$ogg_prefix/lib"
@@ -54,7 +54,7 @@
LIBS="$ac_save_LIBS"
fi
- if test "x$no_ogg" = x ; then
+ if test "x$no_ogg" = "x" ; then
AC_MSG_RESULT(yes)
ifelse([$1], , :, [$1])
else
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list