[xiph-cvs] cvs commit: ao ao.m4

Jack Moffitt jack at xiph.org
Mon Mar 26 14:33:44 PST 2001



jack        01/03/26 14:33:44

  Modified:    .        ao.m4
  Log:
  fixed "NONE" problem in .m4 file

Revision  Changes    Path
1.6       +2 -2      ao/ao.m4

Index: ao.m4
===================================================================
RCS file: /usr/local/cvsroot/ao/ao.m4,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ao.m4	2001/02/28 03:24:17	1.5
+++ ao.m4	2001/03/26 22:33:44	1.6
@@ -13,7 +13,7 @@
 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 @@
        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

--- >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