|
|
| version 1.129, 2010/08/31 14:03:26 | version 1.134.2.1, 2011/02/21 05:08:05 |
|---|---|
| Line 2 dnl Process this file with autoconf to p | Line 2 dnl Process this file with autoconf to p |
| AC_INIT(README) | AC_INIT(README) |
| AC_PREREQ(2.57) | AC_PREREQ(2.57) |
| AM_INIT_AUTOMAKE(parser, 3.4.1b, nodefine) | AM_INIT_AUTOMAKE(parser, 3.4.1, nodefine) |
| dnl expand srcdir | dnl expand srcdir |
| P3S=`cd $srcdir/src ; pwd` | P3S=`cd $srcdir/src ; pwd` |
| 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 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/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 |