summaryrefslogtreecommitdiff
path: root/ogg.m4
diff options
context:
space:
mode:
authorJack Moffitt <jack@xiph.org>2001-03-26 22:31:36 +0000
committerJack Moffitt <jack@xiph.org>2001-03-26 22:31:36 +0000
commitdacfbe0fc6dac31a25d740a39ca507c408672beb (patch)
tree9dfc43fd4327f9decc661d93c680cfd2ba428b9c /ogg.m4
parentbb06164152c1ad9dada5e992cf0a04d5b3e058be (diff)
downloadogg-git-dacfbe0fc6dac31a25d740a39ca507c408672beb.tar.gz
fixed .m4 file. AC_ARG_WITH sets the variable to "NONE" not "".
svn path=/trunk/ogg/; revision=1403
Diffstat (limited to 'ogg.m4')
-rw-r--r--ogg.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/ogg.m4 b/ogg.m4
index 8d57adc..45b7c3f 100644
--- a/ogg.m4
+++ b/ogg.m4
@@ -12,7 +12,7 @@ dnl
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 @@ int main ()
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