i generally create a small install script for my php installs:
#!/bin/sh
APACHE=/usr/local/apache
APXS=${APACHE}/bin/apxs
DB=/opt/databases
MYSQL=${DB}/mysql
PGSQL=${DB}/pgsql
OPENSLL=/opt/openssl
PHP_BASE=/usr/local/php
VERSION=5.0.3
PHP_HOME=${PHP_BASE}-${VERSION}
./configure -prefix=${PHP_HOME} \ --with-apxs=${APXS} \
--with-openssl=${OPENSSL} \
--with-zlib \
--with-dom \
--with-xmlrpc \
--with-pgsql=${PGSQL} \
--with-mysql=${MYSQL} \
--enable-mbstring \
--enable-mbstr-enc-trans \
--enable-soap
make
make install
cd /usr/local
ln -s php-5.0.3 php
cp
Trackbacks: (Trackback URL)
No Comments Posted Yet
