[xiph-commits] r8185 - trunk/ao

giles at motherfish-iii.xiph.org giles at motherfish-iii.xiph.org
Tue Nov 9 00:06:22 PST 2004


Author: giles
Date: 2004-11-09 00:06:21 -0800 (Tue, 09 Nov 2004)
New Revision: 8185

Modified:
   trunk/ao/configure.in
Log:
Replace the default fatal ACTION-IF-NOT-FOUND clause of the
polypaudio PKG_CHECK_MODULES() call with one that appropriately
disables the module in the build. Previously, configure died
here if polypaudio was not available.


Modified: trunk/ao/configure.in
===================================================================
--- trunk/ao/configure.in	2004-11-09 05:37:54 UTC (rev 8184)
+++ trunk/ao/configure.in	2004-11-09 08:06:21 UTC (rev 8185)
@@ -351,7 +351,8 @@
 
 have_polyp=no
 if test "x$BUILD_POLYP" = "xyes" ; then
-    PKG_CHECK_MODULES(POLYP, [ polyplib-simple >= 0.6 ],have_polyp=yes)
+    PKG_CHECK_MODULES(POLYP, [ polyplib-simple >= 0.6 ],
+	[have_polyp=yes],[have_polyp=no])
     AC_SUBST(POLYP_LIBS)
     AC_SUBST(POLYP_CFLAGS)
 fi



More information about the commits mailing list