diff options
author | Sascha Schumann <sas@php.net> | 2000-05-18 13:10:13 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-05-18 13:10:13 +0000 |
commit | 33789f8cdf7110c7081751a249f24089e9f278d6 (patch) | |
tree | e44129d56c0f38c30d05f4177f84556a4d649897 /sapi | |
parent | c97760776b12094e030e23e7637f761b1a4f5bd3 (diff) | |
download | php-git-33789f8cdf7110c7081751a249f24089e9f278d6.tar.gz |
Later AOLserver releases will copy the include to the installation dir.
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/aolserver/README | 5 | ||||
-rw-r--r-- | sapi/aolserver/config.m4 | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/sapi/aolserver/README b/sapi/aolserver/README index 8a29e8674a..45fb89d320 100644 --- a/sapi/aolserver/README +++ b/sapi/aolserver/README @@ -19,6 +19,11 @@ $ ./configure \ --with-aolserver-src=/path/to/source/distribution \ <other options> +NOTE: While AOLserver 3.0 did not install its include directory, later + releases will do so. This effectively means that you do not need + to retain the source directory of AOLserver, if there is an + include directory in the installation directory. + 3.) Compiling and Installing PHP $ make install diff --git a/sapi/aolserver/config.m4 b/sapi/aolserver/config.m4 index 42c7b14b7a..50a0c5b880 100644 --- a/sapi/aolserver/config.m4 +++ b/sapi/aolserver/config.m4 @@ -16,6 +16,9 @@ AC_ARG_WITH(aolserver, AC_MSG_RESULT($PHP_AOLSERVER) if test "$PHP_AOLSERVER" != "no"; then + if test -d "$PHP_AOLSERVER/include"; then + PHP_AOLSERVER_SRC="$PHP_AOLSERVER" + fi if test -z "$PHP_AOLSERVER_SRC" || test ! -d $PHP_AOLSERVER_SRC/include; then AC_MSG_ERROR(Please specify the path to the source distribution of AOLserver using --with-aolserver-src=DIR) fi |