ID: 34433
User updated by: mikehume at aol dot com
-Summary: not able to build xml/dom extensions as shared
Reported By: mikehume at aol dot com
Status: Open
Bug Type: *Compile Issues
Operating System: Solaris
PHP Version: 5CVS-2005-09-08 (snap)
New Comment:
$ ./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.
Previous Comments:
------------------------------------------------------------------------
[2005-09-08 20:21:30] 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 */
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=34433&edit=1