|
|
| version 1.125, 2009/12/04 04:20:45 | version 1.134, 2010/11/28 14:22:54 |
|---|---|
| Line 266 AC_ARG_WITH(shared-gc,[ --with-shared-g | Line 266 AC_ARG_WITH(shared-gc,[ --with-shared-g |
| ]) | ]) |
| AC_ARG_WITH(static-gc,[ --with-static-gc[=D] D is the directory where | AC_ARG_WITH(static-gc,[ --with-static-gc[=D] D is the directory where |
| Boehm garbage collecting library is installed (static lib)],[ | Boehm garbage collecting library is installed (static lib)],[ |
| GC_LIBS="-L$withval -Wl,-Bstatic -l$GC_LIB_NAME -Wl,-Bdynamic" | GC_LIBS="$withval/lib$GC_LIB_NAME.a" |
| ]) | ]) |
| if test -z "$GC_LIBS"; then | if test -z "$GC_LIBS"; then |
| #undefined? use any found in system | #undefined? use any found in system |
| Line 359 AC_ARG_WITH(curl,[ --with-curl=D | Line 359 AC_ARG_WITH(curl,[ --with-curl=D |
| AC_DEFINE(HAVE_CURL,,curl enabled parser) | AC_DEFINE(HAVE_CURL,,curl enabled parser) |
| CURL_INCLUDES="-I$CURLINC" | CURL_INCLUDES="-I$CURLINC -I$CURLINC/../" |
| ]) | ]) |
| AC_SUBST(CURL_INCLUDES) | AC_SUBST(CURL_INCLUDES) |
| Line 444 AC_ARG_WITH(sendmail,[ \"--with-sendmai | Line 444 AC_ARG_WITH(sendmail,[ \"--with-sendmai |
| ) | ) |
| AC_ARG_WITH(apache13,[ --with-apache13=D D is the Apache13 source distribution directory | AC_ARG_WITH(apache,[ --with-apache=FILE is the full path for APXS |
| builds library for apache_module using that dir | builds apache DSO module using apxs],[ |
| (do not add /src)], | APXS=$withval |
| APACHE13=$withval | |
| if test \! -f "$APACHE13/src/include/httpd.h"; then | if test -z "$APXS" -o "$APXS" = "yes"; then |
| AC_MSG_ERROR($APACHE13 does not seem to be valid Apache13 source distribution directory) | APXS=`which apxs 2>/dev/null` |
| fi; | |
| APACHE=`$APXS -q TARGET 2>/dev/null` | |
| if test -z "$APACHE"; then | |
| AC_MSG_ERROR($APXS does not seem to be valid apache apxs utility path) | |
| fi | fi |
| ) | |
| AC_SUBST(APACHE13) | APACHE_MAIN_INC=`$APXS -q INCLUDEDIR` |
| AM_CONDITIONAL(COMPILE_APACHE13_MODULE, test -n "$APACHE13") | APACHE_EXTRA_INC=`$APXS -q EXTRA_INCLUDES 2>/dev/null` |
| APACHE_INC="-I$APACHE_MAIN_INC $APACHE_EXTRA_INC" | |
| APACHE_CFLAGS=`$APXS -q CFLAGS` | |
| ]) | |
| AC_SUBST(APACHE) | |
| AC_SUBST(APACHE_INC) | |
| AC_SUBST(APACHE_CFLAGS) | |
| AM_CONDITIONAL(COMPILE_APACHE_MODULE, test -n "$APACHE") | |
| dnl Enable building of the convenience library | dnl Enable building of the convenience library |
| Line 689 AC_OUTPUT( | Line 702 AC_OUTPUT( |
| src/lib/ltdl/Makefile | src/lib/ltdl/Makefile |
| src/lib/md5/Makefile | src/lib/md5/Makefile |
| src/lib/sdbm/Makefile | src/lib/sdbm/Makefile |
| src/lib/sdbm/apr-include/Makefile | src/lib/sdbm/pa-include/Makefile |
| src/lib/json/Makefile | |
| src/targets/Makefile | src/targets/Makefile |
| src/targets/cgi/Makefile | src/targets/cgi/Makefile |
| src/targets/apache13core/Makefile | src/targets/apache/Makefile |
| src/targets/apache13/Makefile | |
| src/targets/apache13/p3runConfigure | |
| src/targets/isapi/Makefile | src/targets/isapi/Makefile |
| etc/Makefile | etc/Makefile |
| etc/parser3.charsets/Makefile | etc/parser3.charsets/Makefile |