diff options
author | foobar <sniper@php.net> | 2003-11-12 23:42:38 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-11-12 23:42:38 +0000 |
commit | 32b5a41941b0e43d96dc0b2f6ea39a7404b35a76 (patch) | |
tree | 6615d0d165c71b3d3b65e91359568b1a5c9f22f5 /ext/libxml | |
parent | 81d1a19d0b81fc7143aed7af387b921256f1ee31 (diff) | |
download | php-git-32b5a41941b0e43d96dc0b2f6ea39a7404b35a76.tar.gz |
- Fixed bug #26072 (--disable-libxml does not work).
Diffstat (limited to 'ext/libxml')
-rw-r--r-- | ext/libxml/config0.m4 (renamed from ext/libxml/config.m4) | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ext/libxml/config.m4 b/ext/libxml/config0.m4 index 1b9e6886c4..ecab8c1d2f 100644 --- a/ext/libxml/config.m4 +++ b/ext/libxml/config0.m4 @@ -12,11 +12,12 @@ fi if test "$PHP_LIBXML" != "no"; then + dnl This extension can not be build as shared + ext_shared=no + PHP_SETUP_LIBXML(LIBXML_SHARED_LIBADD, [ AC_DEFINE(HAVE_LIBXML,1,[ ]) - PHP_NEW_EXTENSION(libxml, [libxml.c], - $ext_shared) - PHP_SUBST(LIBXML_SHARED_LIBADD) + PHP_NEW_EXTENSION(libxml, [libxml.c], $ext_shared) ], [ AC_MSG_ERROR([xml2-config not found. Please check your libxml2 installation.]) ]) |