- Linux
- 2012-03-08 - 更新:2015-12-15
PHPのインストール時に使用できるシェルスクリプトです。
Apache1.X系とApache2.x系の2種類作成したもののご紹介です。
#!/bin/sh #======================================= # php configure script # php version 5 # for apache version 1 #======================================= ARGV=$@ if [ -e $ARGV ] ; then echo "Please enter the option!" echo "[Options]:" echo "test - 設定されているコンフィグオプションを表示します。" echo "exec - php5をビルドします。" elif [ "$ARGV" = "test" ] ; then echo "./configure \\" echo "--with-apxs=/usr/local/apache/bin/apxs \\" echo "--enable-mbstring \\" echo "--enable-mbstr-enc-trans \\" echo "--enable-mbregex \\" echo "--enable-trans-sid \\" echo "--with-mysql=/usr/bin \\" echo "--with-config-file-path=/usr/local/lib" elif [ "$ARGV" = "exec" ] ; then ./configure \ --with-apxs=/usr/local/apache/bin/apxs \ --enable-mbstring \ --enable-mbstr-enc-trans \ --enable-mbregex \ --enable-trans-sid \ --with-mysql=/usr/bin \ --with-config-file-path=/usr/local/lib ERROR=$? if [ "$ERROR" = "0" ] ; then echo "ビルドが終了しました。" fi else echo "error: unknown option!" echo "[Options]:" echo "test - 設定されているコンフィグオプションを表示します。" echo "exec - php5をビルドします。" fi