Busybox: Upgrade to 1.21.1 (stable). lsof active.
[tomato.git] / release / src / router / php / ext / wddx / config.m4
blob2b02a92aa9fc9a7b3c4e67c30637aba3c266c2ff
1 dnl
2 dnl $Id$
3 dnl
5 PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
6 [  --enable-wddx           Enable WDDX support])
8 if test -z "$PHP_LIBXML_DIR"; then
9   PHP_ARG_WITH(libxml-dir, libxml2 install dir,
10   [  --with-libxml-dir=DIR     WDDX: libxml2 install prefix], no, no)
13 PHP_ARG_WITH(libexpat-dir, libexpat dir for WDDX,
14 [  --with-libexpat-dir=DIR   WDDX: libexpat dir for XMLRPC-EPI (deprecated)],no,no)
16 if test "$PHP_WDDX" != "no"; then
18   dnl
19   dnl Default to libxml2 if --with-libexpat-dir is not used
20   dnl
21   if test "$PHP_LIBEXPAT_DIR" = "no"; then
22     if test "$PHP_LIBXML" = "no"; then
23       AC_MSG_ERROR([WDDX extension requires LIBXML extension, add --enable-libxml])
24     fi
26     PHP_SETUP_LIBXML(WDDX_SHARED_LIBADD, [
27       if test "$PHP_XML" = "no"; then
28         PHP_ADD_SOURCES(ext/xml, compat.c)
29         PHP_ADD_BUILD_DIR(ext/xml)
30       fi
31     ], [
32       AC_MSG_ERROR([xml2-config not found. Use --with-libxml-dir=<DIR>])
33     ])
34   fi
36   dnl
37   dnl Check for expat only if --with-libexpat-dir is used.
38   dnl
39   if test "$PHP_LIBEXPAT_DIR" != "no"; then
40     for i in $PHP_XML $PHP_LIBEXPAT_DIR /usr /usr/local; do
41       if test -f "$i/$PHP_LIBDIR/libexpat.a" || test -f "$i/$PHP_LIBDIR/libexpat.$SHLIB_SUFFIX_NAME"; then
42         EXPAT_DIR=$i
43         break
44       fi
45     done
47     if test -z "$EXPAT_DIR"; then
48       AC_MSG_ERROR([not found. Please reinstall the expat distribution.])
49     fi
51     PHP_ADD_INCLUDE($EXPAT_DIR/include)
52     PHP_ADD_LIBRARY_WITH_PATH(expat, $EXPAT_DIR/$PHP_LIBDIR, WDDX_SHARED_LIBADD)
53     AC_DEFINE(HAVE_LIBEXPAT, 1, [ ])
54   fi
56   AC_DEFINE(HAVE_WDDX, 1, [ ])
57   PHP_NEW_EXTENSION(wddx, wddx.c, $ext_shared)
58   PHP_ADD_EXTENSION_DEP(wddx, libxml)
59   PHP_SUBST(XMLRPC_SHARED_LIBADD)