If you want to compile php5 with DOM support for xml the function 'dom_canonicalization' references to 'xmlC14NDocSaveTo'. That this function exists libxml2 have to be compiled with c14n support. If I understand the dependency stuff right, the "select LIBXML2_DOM" statement must be occurs in the top of the file (because it references to an option of an other package).
Signed-off-by: Markus Rathgeb <[email protected]> ==================================================== --- php5.in.org 2009-07-15 07:49:00.000000000 +0200 +++ php5.in 2009-07-15 07:55:31.000000000 +0200 @@ -4,11 +4,13 @@ menuconfig PHP5 tristate prompt "php5 " - select APACHE2 if PHP5_SAPI_APXS2 - select LIBXML2 if PHP5_XML_LIBXML2 - select LIBXSLT if PHP5_XML_LIBXML2_XSLT - select MYSQL if PHP5_EXT_MYSQL - select PHP5_XML if PHP5_EXT_SOAP + select APACHE2 if PHP5_SAPI_APXS2 + select LIBXML2 if PHP5_XML_LIBXML2 + select LIBXSLT if PHP5_XML_LIBXML2_XSLT + select MYSQL if PHP5_EXT_MYSQL + select PHP5_XML if PHP5_EXT_SOAP + select LIBXML2_DOM if PHP5_XML_LIBXML2_DOM + select LIBXML2_C14N if PHP5_XML_LIBXML2_DOM if PHP5 @@ -262,7 +264,6 @@ config PHP5_XML_LIBXML2_DOM bool - select LIBXML2_DOM prompt "DOM support" help libxml2 DOM support -- ptxdist mailing list [email protected]
