[sword-cvs] sword configure.ac,1.20,1.21
sword@www.crosswire.org
sword@www.crosswire.org
Tue, 8 Jul 2003 00:24:31 -0700
Update of /usr/local/cvsroot/sword
In directory www:/tmp/cvs-serv15712
Modified Files:
configure.ac
Log Message:
dglassey: first get it working without installmgr/curl
Index: configure.ac
===================================================================
RCS file: /usr/local/cvsroot/sword/configure.ac,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** configure.ac 7 Jul 2003 14:16:25 -0000 1.20
--- configure.ac 8 Jul 2003 07:24:29 -0000 1.21
***************
*** 103,112 ****
CURL_CFLAGS=
CURL_LIBS=
! 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"
echo "*** compiling without install manager support"
enable_installmgr=no
! else
echo "curl found - remote install options available"
CURL_CFLAGS=`$CURL_CONFIG --cflags`
--- 103,113 ----
CURL_CFLAGS=
CURL_LIBS=
! if test x$enable_installmgr = xyes; then
! 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"
echo "*** compiling without install manager support"
enable_installmgr=no
! else
echo "curl found - remote install options available"
CURL_CFLAGS=`$CURL_CONFIG --cflags`
***************
*** 114,117 ****
--- 115,119 ----
CXXFLAGS="$CXXFLAGS -DCURLAVAILABLE"
CFLAGS="$CFLAGS -DCURLAVAILABLE"
+ fi
fi