mirror of
https://github.com/php/php-src.git
synced 2024-12-02 14:24:10 +08:00
793bc648bf
- added DOMXML_PARAM_THREE macro - renamed domxml_dumpmem to domxml_dump_mem, added alias for domxml_dumpmem - domxml_has_attributes was missing in in zend_function_entry @- added function domxml_dump_file($filename,[$compression]). Dumps XML to @ a file and uses compression, if specified (chregu) @- added exslt integration (see http://exslt.org for details). To be @ configured with --with-dom-exslt[=DIR] (and --with-dom-xslt) (chregu, jaroslaw)
173 lines
4.3 KiB
Plaintext
173 lines
4.3 KiB
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_DOM_CHECK_VERSION,[
|
|
old_CPPFLAGS=$CPPFLAGS
|
|
CPPFLAGS=-I$DOMXML_DIR/include$DOMXML_DIR_ADD
|
|
AC_MSG_CHECKING(for libxml version)
|
|
AC_EGREP_CPP(yes,[
|
|
#include <libxml/xmlversion.h>
|
|
#if LIBXML_VERSION >= 20402
|
|
yes
|
|
#endif
|
|
],[
|
|
AC_MSG_RESULT(>= 2.4.2)
|
|
],[
|
|
AC_MSG_ERROR(libxml version 2.4.2 or greater required.)
|
|
])
|
|
CPPFLAGS=$old_CPPFLAGS
|
|
])
|
|
|
|
PHP_ARG_WITH(dom, for DOM support,
|
|
[ --with-dom[=DIR] Include DOM support (requires libxml >= 2.4.2).
|
|
DIR is the libxml install directory.])
|
|
|
|
if test "$PHP_DOM" != "no"; then
|
|
|
|
DOMXML_DIR_ADD=""
|
|
if test -r $PHP_DOM/include/libxml2/libxml/tree.h; then
|
|
DOMXML_DIR=$PHP_DOM
|
|
DOMXML_DIR_ADD="/libxml2"
|
|
elif test -r $PHP_DOM/include/libxml/tree.h; then
|
|
DOMXML_DIR=$PHP_DOM
|
|
else
|
|
for i in /usr/local /usr; do
|
|
test -r $i/include/libxml/tree.h && DOMXML_DIR=$i
|
|
test -r $i/include/libxml2/libxml/tree.h && DOMXML_DIR=$i && DOMXML_DIR_ADD="/libxml2"
|
|
done
|
|
fi
|
|
|
|
if test -z "$DOMXML_DIR"; then
|
|
AC_MSG_RESULT(not found)
|
|
AC_MSG_ERROR(Please reinstall the libxml >= 2.4.2 distribution)
|
|
fi
|
|
|
|
PHP_DOM_CHECK_VERSION
|
|
|
|
if test -f $DOMXML_DIR/lib/libxml2.a -o -f $DOMXML_DIR/lib/libxml2.$SHLIB_SUFFIX_NAME ; then
|
|
DOM_LIBNAME=xml2
|
|
else
|
|
DOM_LIBNAME=xml
|
|
fi
|
|
|
|
PHP_ADD_LIBRARY_WITH_PATH($DOM_LIBNAME, $DOMXML_DIR/lib, DOMXML_SHARED_LIBADD)
|
|
PHP_ADD_INCLUDE($DOMXML_DIR/include$DOMXML_DIR_ADD)
|
|
|
|
if test "$PHP_ZLIB_DIR" = "no"; then
|
|
AC_MSG_ERROR(DOMXML requires ZLIB. Use --with-zlib-dir=<DIR>)
|
|
else
|
|
PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/lib, DOMXML_SHARED_LIBADD)
|
|
fi
|
|
|
|
AC_DEFINE(HAVE_DOMXML,1,[ ])
|
|
PHP_EXTENSION(domxml, $ext_shared)
|
|
PHP_SUBST(DOMXML_SHARED_LIBADD)
|
|
fi
|
|
|
|
AC_DEFUN(PHP_DOM_XSLT_CHECK_VERSION,[
|
|
old_CPPFLAGS=$CPPFLAGS
|
|
CPPFLAGS=-I$DOMXSLT_DIR/include
|
|
AC_MSG_CHECKING(for libxslt version)
|
|
AC_EGREP_CPP(yes,[
|
|
#include <libxslt/xsltconfig.h>
|
|
#if LIBXSLT_VERSION >= 10003
|
|
yes
|
|
#endif
|
|
],[
|
|
AC_MSG_RESULT(>= 1.0.3)
|
|
],[
|
|
AC_MSG_ERROR(libxslt version 1.0.3 or greater required.)
|
|
])
|
|
CPPFLAGS=$old_CPPFLAGS
|
|
])
|
|
|
|
AC_DEFUN(PHP_DOM_EXSLT_CHECK_VERSION,[
|
|
old_CPPFLAGS=$CPPFLAGS
|
|
CPPFLAGS=-I$DOMEXSLT_DIR/include
|
|
AC_MSG_CHECKING(for libexslt version)
|
|
AC_EGREP_CPP(yes,[
|
|
#include <libexslt/exsltconfig.h>
|
|
#if LIBEXSLT_VERSION >= 600
|
|
yes
|
|
#endif
|
|
],[
|
|
AC_MSG_RESULT(>= 1.0.3)
|
|
],[
|
|
AC_MSG_ERROR(libxslt version 1.0.3 or greater required.)
|
|
])
|
|
CPPFLAGS=$old_CPPFLAGS
|
|
])
|
|
|
|
PHP_ARG_WITH(dom-xslt, for DOM XSLT support,
|
|
[ --with-dom-xslt[=DIR] Include DOM XSLT support (requires libxslt >= 1.0.3).
|
|
DIR is the libxslt install directory.])
|
|
|
|
PHP_ARG_WITH(dom-exslt, for DOM EXSLT support,
|
|
[ --with-dom-exslt[=DIR] Include DOM EXSLT support (requires libxslt >= 1.0.3).
|
|
DIR is the libexslt install directory.])
|
|
|
|
if test "$PHP_DOM_XSLT" != "no"; then
|
|
|
|
if test -r $PHP_DOM_XSLT/include/libxslt/transform.h; then
|
|
DOMXSLT_DIR=$PHP_DOM_XSLT
|
|
else
|
|
for i in /usr/local /usr; do
|
|
test -r $i/include/libxslt/transform.h && DOMXSLT_DIR=$i
|
|
done
|
|
fi
|
|
|
|
if test -z "$DOMXSLT_DIR"; then
|
|
AC_MSG_RESULT(not found)
|
|
AC_MSG_ERROR(Please reinstall the libxslt >= 1.0.3 distribution)
|
|
fi
|
|
|
|
PHP_DOM_XSLT_CHECK_VERSION
|
|
|
|
PHP_ADD_LIBRARY_WITH_PATH(xslt, $DOMXSLT_DIR/lib, DOMXML_SHARED_LIBADD)
|
|
|
|
PHP_ADD_INCLUDE($DOMXSLT_DIR/include)
|
|
|
|
if test "$PHP_DOM" = "no"; then
|
|
AC_MSG_ERROR(DOMXSLT requires DOMXML. Use --with-dom=<DIR>)
|
|
fi
|
|
|
|
AC_DEFINE(HAVE_DOMXSLT,1,[ ])
|
|
|
|
PHP_SUBST(DOMXML_SHARED_LIBADD)
|
|
fi
|
|
|
|
if test "$PHP_DOM_EXSLT" != "no"; then
|
|
if test "$PHP_DOM" = "no"; then
|
|
AC_MSG_ERROR(DOMEXSLT requires DOMXML. Use --with-dom=<DIR>)
|
|
fi
|
|
|
|
if test "$PHP_DOM_XSLT" = "no"; then
|
|
AC_MSG_ERROR(DOMEXSLT requires DOMXSLT. Use --with-dom-xslt=<DIR>)
|
|
fi
|
|
|
|
if test -r $PHP_DOM_EXSLT/include/libexslt/exslt.h; then
|
|
DOMEXSLT_DIR=$PHP_DOM_EXSLT
|
|
else
|
|
for i in /usr/local /usr; do
|
|
test -r $i/include/libexslt/exslt.h && DOMEXSLT_DIR=$i
|
|
done
|
|
fi
|
|
|
|
if test -z "$DOMEXSLT_DIR"; then
|
|
AC_MSG_RESULT(not found)
|
|
AC_MSG_ERROR(Please reinstall the libxslt >= 1.0.3 distribution)
|
|
fi
|
|
|
|
PHP_DOM_EXSLT_CHECK_VERSION
|
|
|
|
PHP_ADD_LIBRARY_WITH_PATH(exslt, $DOMEXSLT_DIR/lib, DOMXML_SHARED_LIBADD)
|
|
|
|
PHP_ADD_INCLUDE($DOMEXSLT_DIR/include)
|
|
|
|
AC_DEFINE(HAVE_DOMEXSLT,1,[ ])
|
|
|
|
PHP_SUBST(DOMXML_SHARED_LIBADD)
|
|
|
|
fi
|