[xiph-commits] r9029 - trunk/theora

j at motherfish-iii.xiph.org j at motherfish-iii.xiph.org
Thu Mar 3 08:58:47 PST 2005


Author: j
Date: 2005-03-03 08:58:45 -0800 (Thu, 03 Mar 2005)
New Revision: 9029

Modified:
   trunk/theora/configure.ac
Log:
change OSS check so it only warns if it does not find any of the possible soundcard.h files

Modified: trunk/theora/configure.ac
===================================================================
--- trunk/theora/configure.ac	2005-03-03 16:48:56 UTC (rev 9028)
+++ trunk/theora/configure.ac	2005-03-03 16:58:45 UTC (rev 9029)
@@ -188,7 +188,10 @@
 AC_CHECK_HEADERS([sys/soundcard.h soundcard.h machine/soundcard.h],[
   HAVE_OSS=yes
   break
-],AC_MSG_WARN([OSS audio support not found -- not compiling player_example]))
+])
+if test x$HAVE_OSS != xyes; then
+  AC_MSG_WARN([OSS audio support not found -- not compiling player_example])
+fi
 
 if test x$HAVE_SDL = xyes -a x$HAVE_OSS = xyes; then
   BUILDABLE_EXAMPLES="$BUILDABLE_EXAMPLES player_example"



More information about the commits mailing list