[xiph-commits] r12963 - trunk/vorbis-tools
    xiphmont at svn.xiph.org 
    xiphmont at svn.xiph.org
       
    Fri May 18 08:51:03 PDT 2007
    
    
  
Author: xiphmont
Date: 2007-05-18 08:51:02 -0700 (Fri, 18 May 2007)
New Revision: 12963
Modified:
   trunk/vorbis-tools/configure.ac
Log:
Checking for libcurl is silly if you don't bother using it when you find 
it!
Modified: trunk/vorbis-tools/configure.ac
===================================================================
--- trunk/vorbis-tools/configure.ac	2007-05-18 09:35:29 UTC (rev 12962)
+++ trunk/vorbis-tools/configure.ac	2007-05-18 15:51:02 UTC (rev 12963)
@@ -163,6 +163,9 @@
 else
   AM_PATH_CURL(HAVE_CURL=yes, HAVE_CURL=no; AC_MSG_WARN(libcurl missing))
 fi
+if test "x$HAVE_CURL" = "xyes"; then
+  AC_DEFINE(HAVE_CURL,1,[Defined if we have libcurl])
+fi
 
 if test "x$build_ogg123" = xyes; then
   AC_MSG_RESULT([checking for ogg123 requirements])
    
    
More information about the commits
mailing list