Can anyone help me out with the proper installation instructions for this? I am running Redhat 6.2 and I am trying to upgrade apache to the new version and every time I try to activate the libphp4.a module it cannot find it.....
Here is what I have done so far:
Apache:
./configure --enable-module=so
make
I get this when I did the make "make[2]: [exports.lo] Error 1
make[2]: Leaving directory /usr/local/httpd-2.0.39/server'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory/usr/local/httpd-2.0.39/server'
make: [all-recursive] Error 1"
make install
I get this when I do the make install "make[2]: [exports.lo] Error 1
make[2]: Leaving directory /usr/local/httpd-2.0.39/server'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory/usr/local/httpd-2.0.39/server'
make: [install-recursive] Error 1"
PHP:
./configure --with-mysql=/usr/local/mysql --with-apxs=../httpd-2.0.39/bin/apxs --enable-track-vars
Get this when I run this "Sorry, I was not able to successfully run APXS. Possible reasons:
1. Perl is not installed;
2. Apache was not compiled with DSO support (--enable-module=so);
3. 'apxs' is not in your path.
configure: error: ;"
I know perl is installed when I run perl -v I get this "This is perl, version 5.005_03 built for i386-linux
Copyright 1987-1999, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5.0 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using man perl' orperldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page."
Any help or pointers would be appreciated...
KHris