I got error on configure time:
Notice: Following unknown configure options were used:
--with-fpm-conf=/usr/local/etc/php/php-fpm.conf
--with-fpm-log=/var/log/php-fpm.log
--with-fpm-pid=/var/run/php-fcgi/php-fpm.pid
and here is my configure script:
#!/bin/bash
CFLAGS="-march=prescott -O2 -pipe -fomit-frame-pointer" \
CHOST="i686-pc-linux-gnu" \
./configure --prefix=/usr/local \
--disable-debug \
--disable-ipv6 \
--disable-rpath \
--enable-bcmath \
--enable-calendar \
--enable-cli \
--enable-dba \
--enable-exif \
--enable-fpm \
--enable-ftp \
--enable-gd-native-ttf \
--enable-inline-optimization \
--enable-mbregex \
--enable-mbstring=all \
--enable-pcntl \
--enable-shmop \
--enable-sigchild \
--enable-sockets \
--enable-sqlite-utf8 \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-zend-multibyte \
--enable-zip \
--with-bz2 \
--with-config-file-path="/usr/local/etc/php" \
--with-config-file-scan-dir="/usr/local/etc/php/extra" \
--with-curl \
--with-curlwrappers \
--with-db4 \
--with-fpm-conf="/usr/local/etc/php/php-fpm.conf" \
--with-fpm-log="/var/log/php-fpm.log" \
--with-fpm-pid="/var/run/php-fcgi/php-fpm.pid" \
--with-freetype-dir \
--with-gd \
--with-gdbm \
--with-gettext \
--with-gmp \
--with-iconv \
--with-imap \
--with-imap-ssl \
--with-jpeg-dir \
--with-kerberos \
--with-ldap \
--with-libmbfl \
--with-mcrypt \
--with-mhash \
--with-mm \
--with-mysql="/opt/mysql" \
--with-mysqli="/opt/mysql/bin/mysql_config" \
--with-openssl \
--with-pcre-dir \
--with-pcre-regex \
--with-pdo-mysql="/opt/mysql" \
--with-pear \
--with-png-dir \
--with-snmp \
--with-tidy \
--with-xsl \
--with-zend-vm=GOTO \
--with-zlib
On Jul 6, 1:44