[sword-cvs] sword configure.ac,1.23,1.24

sword@www.crosswire.org sword@www.crosswire.org
Wed, 9 Jul 2003 15:10:07 -0700


Update of /usr/local/cvsroot/sword
In directory www:/tmp/cvs-serv18363

Modified Files:
	configure.ac 
Log Message:

dglassey: no need to not use curl if don't have zlib


Index: configure.ac
===================================================================
RCS file: /usr/local/cvsroot/sword/configure.ac,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- configure.ac	9 Jul 2003 21:52:45 -0000	1.23
+++ configure.ac	9 Jul 2003 22:10:05 -0000	1.24
@@ -105,12 +105,6 @@
 CURL_CFLAGS=
 CURL_LIBS=
 if test x$with_curl = xyes; then
-  if test x$with_zlib  = xno; then
-	echo "*** Install manager support requires zlib"
-	echo "*** However you have specified no zlib"
-	echo "*** compiling without install manager support"
-	enable_installmgr=no
-  else
     AC_PATH_PROG(CURL_CONFIG, curl-config, no)
     if test "$CURL_CONFIG" = "no" ; then
 	echo "*** The curl-config script installed by curl could not be found"
@@ -123,7 +117,6 @@
 	CXXFLAGS="$CXXFLAGS -DCURLAVAILABLE"
 	CFLAGS="$CFLAGS -DCURLAVAILABLE"
     fi
-  fi
 fi
 
 # ---------------------------------------------------------------------