|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-09-08 20:21 UTC] mikehume at aol dot com
Description:
------------
I'm trying to build today's php5.1 snapshot with dom and xml as shared extensions, but configure isn't respecting my settings.
Reproduce code:
---------------
$ ./configure \
--disable-all \
--with-xml=shared \
--with-dom=shared \
--with-libxml-dir=/opt/local
Expected result:
----------------
$ egrep 'DL_(DOM|XML)) ' main/php_config.h
#define COMPILE_DL_DOM 1
#define COMPILE_DL_XML 1
Actual result:
--------------
$ egrep 'DL_(DOM|XML)) ' main/php_config.h
/* #undef COMPILE_DL_DOM */
/* #undef COMPILE_DL_XML */
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 08:00:02 2025 UTC |
$ ./configure \ --disable-all \ --enable-libxml=shared \ --with-libxml-dir=/opt/local $ egrep '(DL_)?LIBXML ' main/php_config.h | sort -u #define HAVE_LIBXML 1 /* #undef COMPILE_DL_LIBXML */ COMPILE_DL_LIBXML should be defined.