[PHP-users 3461] NetBSD-1.4.3でPHP-4.0.6のコンパイルでワーニングが出力される。

Takuro Suzuki php-users@php.gr.jp
Fri, 9 Nov 2001 17:25:10 +0900


NetBSD-1.4.3でPHP-4.0.6をコンパイルすると、次のようなメッセージが出力されます。

*** Warning: inter-library dependencies are not known to be supported.
*** All declared inter-library dependencies are being dropped.
*** The inter-library dependencies that have been dropped here will be
*** automatically added whenever a program is linked with this library
*** or is declared to -dlopen it.

このままインストールすると、phpinfo()やpintf()などは動作するのですが、
PostgreSQLにアクセスしようとすると、そこで止まってしまいます。

このワーニングをでないようにするには、どうすればいいのでしょうか。

configureは、次のように指定しています。

CFLAGS="-O2" ./configure \
--without-mysql \
--with-pgsql \
--enable-track-vars \
--with-apxs=/usr/local/apache/bin/apxs \
--enable-versioning \
--without-gd \
--enable-trans-sid \
--enable-mbstring \
--enable-mbstr-enc-trans \
--disable-posix \
--disable-session \
--disable-xml \
--disable-discard-path \
--disable-force-cgi-redirect

--------
Takuro suzuki