Skip to content
Snippets Groups Projects
Commit 1abf6106 authored by Jack Moffitt's avatar Jack Moffitt
Browse files

fixed "NONE" problem in .m4 file

git-svn-id: http://svn.xiph.org/trunk/ao@1404 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent 70003ebd
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ dnl
AC_ARG_WITH(ao-prefix,[ --with-ao-prefix=PFX Prefix where libao is installed (optional)], ao_prefix="$withval", ao_prefix="")
AC_ARG_ENABLE(aotest, [ --disable-aotest Do not try to compile and run a test ao program],, enable_aotest=yes)
if test x$ao_prefix != x ; then
if test "x$ao_prefix" != "xNONE" ; then
ao_args="$ao_args --prefix=$ao_prefix"
AO_CFLAGS="-I$ao_prefix/include"
AO_LIBS="-L$ao_prefix/lib"
......@@ -63,7 +63,7 @@ int main ()
LIBS="$ac_save_LIBS"
fi
if test "x$no_ao" = x ; then
if test "x$no_ao" = "x" ; then
AC_MSG_RESULT(yes)
ifelse([$1], , :, [$1])
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment