You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2008/10/25 18:12:51 UTC

svn commit: r707856 - /incubator/couchdb/trunk/configure.ac

Author: jan
Date: Sat Oct 25 09:12:50 2008
New Revision: 707856

URL: http://svn.apache.org/viewvc?rev=707856&view=rev
Log:
Add checks for libcurl to ./configure. Picked version 7.16.0 as lowest requirement because that's the oldest base-install I could find. I assume we can keep lowering that, if people complain.

Modified:
    incubator/couchdb/trunk/configure.ac

Modified: incubator/couchdb/trunk/configure.ac
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/configure.ac?rev=707856&r1=707855&r2=707856&view=diff
==============================================================================
--- incubator/couchdb/trunk/configure.ac (original)
+++ incubator/couchdb/trunk/configure.ac Sat Oct 25 09:12:50 2008
@@ -104,6 +104,10 @@
 AC_SUBST(ICU_LOCAL_CFLAGS)
 AC_SUBST(ICU_LOCAL_LDFLAGS)
 
+AC_CHECK_CURL(7.16.0)
+AC_SUBST(CURL_CFLAGS) 
+AC_SUBST(CURL_LIBS) 
+
 AC_PATH_PROG([ERL], [erl])
 
 if test x${ERL} = x; then