diff options
author | foobar <sniper@php.net> | 2002-03-22 13:49:05 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-03-22 13:49:05 +0000 |
commit | 35e7255055a9699ec15434070d4c772e615d81bb (patch) | |
tree | 4523ea95cf79a895e988abbd889f7b197d1f60cd | |
parent | 5e0f34ea559964c0c2ceca9005d79e7345e69dcb (diff) | |
download | php-git-35e7255055a9699ec15434070d4c772e615d81bb.tar.gz |
- Fixed minor inconvenience with iconv detection when iconv is found in libc
-rw-r--r-- | ext/rpc/xmlrpc/config.m4 | 1 | ||||
-rw-r--r-- | ext/xmlrpc/config.m4 | 1 | ||||
-rw-r--r-- | ext/xslt/config.m4 | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/ext/rpc/xmlrpc/config.m4 b/ext/rpc/xmlrpc/config.m4 index a7f4fae3b8..774c13b2fb 100644 --- a/ext/rpc/xmlrpc/config.m4 +++ b/ext/rpc/xmlrpc/config.m4 @@ -32,6 +32,7 @@ if test "$PHP_XMLRPC" != "no"; then AC_MSG_ERROR(XML-RPC support requires libexpat. Use --with-expat-dir=<DIR>) fi + PHP_ICONV=yes PHP_SETUP_ICONV(XMLRPC_SHARED_LIBADD, [], [ AC_MSG_ERROR([iconv not found, in order to build xmlrpc you need the iconv library]) ]) diff --git a/ext/xmlrpc/config.m4 b/ext/xmlrpc/config.m4 index a7f4fae3b8..774c13b2fb 100644 --- a/ext/xmlrpc/config.m4 +++ b/ext/xmlrpc/config.m4 @@ -32,6 +32,7 @@ if test "$PHP_XMLRPC" != "no"; then AC_MSG_ERROR(XML-RPC support requires libexpat. Use --with-expat-dir=<DIR>) fi + PHP_ICONV=yes PHP_SETUP_ICONV(XMLRPC_SHARED_LIBADD, [], [ AC_MSG_ERROR([iconv not found, in order to build xmlrpc you need the iconv library]) ]) diff --git a/ext/xslt/config.m4 b/ext/xslt/config.m4 index b05dfcfc7f..26402760af 100644 --- a/ext/xslt/config.m4 +++ b/ext/xslt/config.m4 @@ -69,6 +69,7 @@ if test "$PHP_XSLT" != "no"; then PHP_ADD_LIBRARY(xmltok) fi + PHP_ICONV=yes PHP_SETUP_ICONV(XSLT_SHARED_LIBADD, [], [ AC_MSG_ERROR([iconv not found, in order to build sablotron you need the iconv library]) ]) |