File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / wddx / config.m4
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:45 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, HEAD
php 5.4.3+patches

    1: dnl
    2: dnl $Id: config.m4,v 1.1.1.2 2012/05/29 12:34:45 misho Exp $
    3: dnl
    4: 
    5: PHP_ARG_ENABLE(wddx,whether to enable WDDX support,
    6: [  --enable-wddx           Enable WDDX support])
    7: 
    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)
   11: fi
   12: 
   13: PHP_ARG_WITH(libexpat-dir, libexpat dir for WDDX,
   14: [  --with-libexpat-dir=DIR   WDDX: libexpat dir for XMLRPC-EPI (deprecated)],no,no)
   15: 
   16: if test "$PHP_WDDX" != "no"; then
   17: 
   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
   25: 
   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
   35: 
   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
   46: 
   47:     if test -z "$EXPAT_DIR"; then
   48:       AC_MSG_ERROR([not found. Please reinstall the expat distribution.])
   49:     fi
   50: 
   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
   55: 
   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)
   60: fi

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>