記載された情報が古くなっている可能性がございますので十分ご注意ください。
それではPHPをインストールします
※初めにインストールするバージョンの「configure」で足りないライブラリ群はわんさかエラーして教えてくれますので、適宜「yum」でインストールしてください
基本コマンド
# cd /usr/local/src/php-XXXX
# ./configure ・・・・・・・・
# make;make install;
以下のオプションは必要そうなものを片っ端から入れています。。。。
# ./configure \
--prefix=/usr/local/php/4.4.9 \
--with-config-file-path=/usr/local/lib/php-4.4.9 \
--enable-fastcgi \
--enable-force-cgi-redirect \
--enable-calendar \
--with-curl \
--enable-exif \
--enable-ftp \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-gettext \
--enable-mbstring \
--enable-mbstr-enc-trans \
--enable-track-vars \
--enable-mbregex \
--with-mcrypt \
--with-mhash \
--enable-magic-quotes \
--with-mysqli \
--with-mysql \
--with-pgsql \
--with-openssl \
--enable-discard-path \
--with-pear \
--enable-sockets \
--with-ttf \
--with-freetype-dir=/usr \
--enable-gd-native-ttf \
--enable-wddx \
--with-xmlrpc \
--enable-zip \
--with-zlib \
--with-kerberos \
--enable-soap \
--with-xsl
# ./configure \
--prefix=/usr/local/php/5.2.12 \
--enable-bcmath \
--enable-calendar \
--with-curl \
--enable-cgi \
--enable-exif \
--enable-ftp \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-gettext \
--enable-mbstring \
--enable-mbregex \
--with-mcrypt \
--with-mhash \
--enable-magic-quotes \
--with-mysqli \
--with-mysql \
--with-pgsql \
--with-openssl \
--enable-force-cgi-redirect \
--enable-fastcgi \
--with-pear \
--enable-sockets \
--with-ttf \
--with-freetype-dir=/usr \
--enable-gd-native-ttf \
--enable-wddx \
--with-xmlrpc \
--enable-zip \
--with-zlib \
--with-kerberos \
--enable-pdo=shared \
--with-pdo-sqlite=shared \
--with-sqlite=shared \
--with-pdo-mysql=shared \
--enable-soap \
--with-xsl \
--with-libdir=lib64
# ./configure \
--prefix=/usr/local/php/5.3.1 \
--enable-bcmath \
--enable-calendar \
--with-curl \
--enable-cgi \
--enable-exif \
--enable-ftp \
--with-gd \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-gettext \
--enable-mbstring \
--enable-mbregex \
--with-mcrypt \
--with-mhash \
--enable-magic-quotes \
--with-mysqli \
--with-mysql \
--with-pgsql \
--with-openssl \
--with-pear \
--enable-sockets \
--with-freetype-dir=/usr \
--enable-gd-native-ttf \
--enable-wddx \
--with-xmlrpc \
--enable-zip \
--with-zlib \
--with-kerberos \
--enable-pdo=shared \
--with-pdo-sqlite=shared \
--with-sqlite=shared \
--with-pdo-mysql=shared \
--enable-soap \
--with-xsl \
--with-libdir=lib64