phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] property/tutorials/property/examples update.apache.an


From: ceb
Subject: [Phpgroupware-cvs] property/tutorials/property/examples update.apache.and.php.txt, 1.2 update.apache.and.php.sh, 1.2
Date: Thu, 24 Feb 2005 14:49:58 -0000

Update of property/tutorials/property/examples

Added Files:
     Branch: MAIN
            update.apache.and.php.txt lines: +21 -0
            update.apache.and.php.sh lines: +72 -0

Log Message:
committed prop-18-branch version to head

====================================================
Index: update.apache.and.php.txt
/usr/local/apache2/bin/apachectl stop &&\
cd /opt/web/httpd-2.0.52 &&\
./configure --enable-so --enable-deflate --enable-headers &&\
make &&\
make install &&\
cd ../php-4.3.9 &&\
export LDFLAGS=-lstdc++ &&\
make clean &&\
./configure --with-sybase-ct=/usr/local/freetds\
 --with-apxs2=/usr/local/apache2/bin/apxs --enable-mail --enable-xslt\
 --with-xslt-sablot --with-zlib --with-pspell --with-jpeg-dir=/usr/lib\
 --with-png-dir=/usr --with-freetype-dir=/usr/lib --with-gd --enable-ftp &&\
make &&\
make install &&\
cd ../turck-mmcache-2.4.6 &&\
export PHP_PREFIX="/usr/local" &&\
$PHP_PREFIX/bin/phpize &&\
./configure --enable-mmcache=shared 
--with-php-config=$PHP_PREFIX/bin/php-config &&\
make &&\
make install &&\
/usr/local/apache2/bin/apachectl start

====================================================
Index: update.apache.and.php.sh
#!/bin/bash
# $Id: update.apache.and.php.sh,v 1.2 2005/01/13 17:00:04 ceb Exp $

#/**
#  * Updatescript for APACHE2 with PHP XSLT FREEDTS and MMCACHE
#  *
#  * XSLT and FREEDTS are assumed to be installed
#  *
#  * Download all tarballs to one directory and place this script in the same 
place
#  *
#  * NOTE: Do not add spaces after bash variables.
#  *
#  * @author            Sigurd Nes <Sigurdne (inside) online (dot) no>
#  * @version           Release-1.0.0
#  */

##############################
# should be edited
##############################

#/**
#  * Name of the APACHE tarball e.g httpd-2.0.52.tar.gz
#  *
#  * @var               string APACHE2, APACHE2TAR
#  */
APACHE2TAR="httpd-2.0.52.tar.gz"
APACHE2="httpd-2.0.52"

#/**
#  * Name of the PHP tarball e.g php-4.3.9.tar.gz
#  *
#  * @var               string PHP, PHPTAR
#  */
PHPTAR="php-4.3.9.tar.gz"
PHP="php-4.3.9"

#/**
#  * Name of the MMCACHE tarball e.g turck-mmcache-2.4.6.tar.gz
#  *
#  * @var               string MMCACHE, MMCACHETAR
#  */
MMCACHETAR="turck-mmcache-2.4.6.tar.gz"
MMCACHE="turck-mmcache-2.4.6"

# perform the update

tar -xzf $APACHE2TAR &&\
tar -xzf $PHPTAR &&\
tar -xzf $MMCACHETAR &&\
/usr/local/apache2/bin/apachectl stop &&\
cd $APACHE2 &&\
./configure --enable-so --enable-deflate --enable-headers &&\
make &&\
make install &&\
cd ../$PHP &&\
export LDFLAGS=-lstdc++ &&\
make clean &&\
./configure --with-sybase-ct=/usr/local/freetds\
 --with-apxs2=/usr/local/apache2/bin/apxs --enable-mail --enable-xslt\
 --with-xslt-sablot --with-zlib --with-pspell --with-jpeg-dir=/usr/lib\
 --with-png-dir=/usr --with-freetype-dir=/usr/lib --with-gd --enable-ftp &&\
make &&\
make install &&\
cd ../$MMCACHE &&\
export PHP_PREFIX="/usr/local" &&\
$PHP_PREFIX/bin/phpize &&\
./configure --enable-mmcache=shared 
--with-php-config=$PHP_PREFIX/bin/php-config &&\
make &&\
make install &&\
/usr/local/apache2/bin/apachectl start

# vim: set expandtab :






reply via email to

[Prev in Thread] Current Thread [Next in Thread]