summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJack Moffitt <jack@xiph.org>2001-03-26 22:30:08 +0000
committerJack Moffitt <jack@xiph.org>2001-03-26 22:30:08 +0000
commit77713fe4eae6d804a7159a0c7787426d7a4184b3 (patch)
treeb0398079127910804ce05f4d2b26927930474566 /acinclude.m4
parent971f75656a1bdffc61bb5f48fb8b3a3e92df22a5 (diff)
downloadlibvorbis-git-77713fe4eae6d804a7159a0c7787426d7a4184b3.tar.gz
fixed minor errors in Jeff's patches.
svn path=/trunk/vorbis/; revision=1402
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 5a7e261b..73e41bd7 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -16,7 +16,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"
@@ -58,7 +58,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