I started by reading http://php.net/manual/en/install.macosx.php
"Example 2-4. Mac OS X server install"
cd /packages
wget http://apache.vitts.com/dist/apache_1.3.19.tar.gz
gnutar zxf apache_1.3.19.tar.gz
cd apache_1.3.19/
Instead of step 2, I did a ./configure --layout to confirm that I did
not need to type all of this stuff in, and instead just typed:
./configure --enable-module=so
make clean
make
make install
I realized after the fact that the make's were premature, but I didn't
think that would hurt anything...
I was told in order to use frontbase I had to follow the instructions
from http://www.frontbase.com/download/PHP4/index.html instead of step
5. I was also told I had to upgrade autoconf to 2.13. This I did
without incident. So then:
cd ..
wget
'http://www.php.net/do_download.php?download_file=php-4.0.5.tar.gz&source_site=www.php.net'
gnutar zxf php-4.0.5.tar.gz
cd php-4.0.5/
autoconf configure.in > c
chmod u+x c
./c --with-fbsql --enable-bcmath --enable-calendar --enable-trans-id
--enable-ftp --enable-sockets --with-apxs=/usr/sbin/apxs
It seemed to go well, so resuming with step 6:
make
make install
cd ../apache_1.3.19
./configure --enable-module=so --activate-module=src/modules/php4/libphp4.a
make clean
make
lots of stuff gets made, but then I get:
===> src/modules/php4
cd: can't cd to php4
make[3]: *** [all] Error 1
make[2]: *** [subdirs] Error 1
make[1]: *** [build-std] Error 2
make: *** [build] Error 2
--
:-J
--
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]