PHP5.6をソースからインストール
1 2 3 4 | # cd /usr/src # wget http://jp2.php.net/get/php-5.6.14.tar.gz/from/this/mirror # tar xvzf php-5.6.14.tar.gz # cd php-5.6.14 |
1 | # ./configure --enable-mbstring --with-pgsql=/usr/local/pgsql/ --with-apxs2=/usr/sbin/apxs --with-gd --with-jpeg-dir=/usr/lib/ --with-zlib --with-mysql --with-mysqli --with-pdo-mysql --with-freetype-dir=/usr/include/freetype2/ --enable-gd-native-ttf --enable-gd-jis-conv --enable-zip --with-libdir=/usr/lib64 |
しかし、色々足りないものがあってエラーになる。 足りないパッケージの追加とMakefil Continue Reading