I'm trying to build the latest version of both Apache (1.3.27) and PHP (4.3).
I've built mod_php by typing
./configure --with-apache=../apache_1.3.27 --with-mysql -- enable-track-vars --enable-calendar
make
make install
Then I try to build apache with mod_php thus
cd ../apache_1.3.27
./configure --prefix=/www --activate-module=src/modules/php
4/libmodphp4.a --enable-module=rewrite
make
When I do this I get the following :-
<=== src/modules/standard
===> src/modules/php4
gcc -c -I../../os/unix -I../../include -DLINUX=22 -DNO_DBM_REWRITEMAP -DUSE_HSREGEX -DUSE_EXPAT -I../../lib/expat-lite -DNO_DL_NEEDED ../../apaci mod_php4.c
mod_php4.c:22:29: php_apache_http.h: No such file or directory
make[4]: [mod_php4.o] Error 1
make[3]: [all] Error 1
make[2]: [subdirs] Error 1
make[2]: Leaving directory /home/kev/software/apache_1.3.27/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory/home/kev/software/apache_1.3.27'
make: [build] Error 2
Has anyone got any ideas - I know it can't find the header file. It does exist in
../php-4.3.0/sapi/apache/php_apache_http.h
Any help would be gratefully received.
🙁