現象
PHP コンパイル時に以下のエラーが発生した。
'--with-apxs2=/usr/local/apache228-php4/bin/apxs' \
'--enable-mbstring' \
'--enable-mbstr-enc-trans' \
'--enable-mbregex' \
'--enable-cli' \
'--enable-pcntl' \
'--enable-track-vars' \
'--with-oci8-instant-client=/opt/app/oracle/product/10.2.0/instantclient_1' \
'--with-expat=builtin'
...
collect2: ld returned 1 exit status
make: *** [sapi/cli/php] エラー 1
対処
- /usr/local/lib/libiconv がないので、libiconv をインストールする。
- 「--with-iconv=/usr/local」をコンパイルオプションに追加する。
'--with-apxs2=/usr/local/apache228-php4/bin/apxs' \
'--enable-mbstring' \
'--enable-mbstr-enc-trans' \
'--enable-mbregex' \
'--enable-cli' \
'--enable-pcntl' \
'--enable-track-vars' \
'--with-oci8-instant-client=/opt/app/oracle/product/10.2.0/instantclient_1' \
'--with-expat=builtin' \
'--with-iconv=/usr/local'