|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-02-12 13:56 UTC] rasmus
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 20:00:01 2025 UTC |
./configure fails to set php3 as an apache module when configured under stronghold, plus an additional include directory is needed so that all of the include files that stronghold's httpd.h expects. Unified diffs for configure.in follow: diff -u -r1.1.2.1 configure.in --- configure.in 1998/02/06 06:45:46 1.1.2.1 +++ configure.in 1998/02/12 18:40:12 @@ -159,10 +159,11 @@ STRONGHOLD= # For StrongHold 2.2 elif test -f $withval/apache/httpd.h; then - APACHE_INCLUDE=-I$withval/apache + APACHE_INCLUDE="-I$withval/apache -I$withval/ssl/include" APACHE_TARGET=$withval/apache BINNAME=libphp3.a STRONGHOLD=-DSTRONGHOLD=1 + AC_DEFINE(APACHE) AC_MSG_RESULT(yes - StrongHold) else AC_MSG_RESULT(no)