Building Apache with many modules > Installing independent modules
Previous Page Contents Next Page
OOP-Reserch home page

Mail to Me

Installing independent modules

Any questions and comments are welcome to me.
#!/bin/sh

APACHE_HOME=/opt/local/apache
export APACHE_HOME

echo "Installing DAV..."
cd mod_dav-0.9.16-1.3.6
make distclean
./configure --with-apxs=${APACHE_HOME}/bin/apxs
make
make install
cd ..
echo "Done!"

echo "Installing fastCGI..."
cd mod_fastcgi_2.2.2
${APACHE_HOME}/bin/apxs -o mod_fastcgi.so -c *.c
${APACHE_HOME}/bin/apxs -i -a -n fastcgi mod_fastcgi.so
cd ..
echo "Done!"

echo "Installing PHP3..."
cd php-3.0.16
make distclean
./configure \
    --with-apxs=${APACHE_HOME}/bin/apxs \
    --with-xml \
    --with-mysql=/opt/local/mysql
make
make install
cd ..
echo "Done!"

echo "Installing JServ for Tomcat..."
cd jakarta-tomcat/src/native/apache/jserv
${APACHE_HOME}/bin/apxs -c mod_jserv.c jserv*.c 
${APACHE_HOME}/bin/apxs -i -a -n jserv mod_jserv.so
cd ..
echo "Done!"

Java and all Java-based trademarks and logos are trademarks or registered of Sun Microsystems, Inc. in the United States and other countries.


Previous Page Contents Next Page
OOP-Reserch home page

Mail to Me


ALL CONTENTS COPYRIGHT 2000 , Jun Inamori. All rights reserved.
Any questions and comments are welcome to Jun Inamori .