Annotation of embedaddon/php/ext/xmlrpc/config.w32, revision 1.1

1.1     ! misho       1: // $Id: config.w32 262125 2008-07-06 16:52:59Z pajoye $
        !             2: // vim:ft=javascript
        !             3: 
        !             4: ARG_WITH("xmlrpc", "XMLRPC-EPI support", "no");
        !             5: 
        !             6: if (PHP_XMLRPC != "no") {
        !             7:        if (CHECK_HEADER_ADD_INCLUDE("xmlrpc.h", "CFLAGS_XMLRPC", configure_module_dirname + "/libxmlrpc")
        !             8:                && CHECK_HEADER_ADD_INCLUDE("iconv.h", "CFLAGS")
        !             9:                && ADD_EXTENSION_DEP('xmlrpc', 'libxml')) {
        !            10:                EXTENSION('xmlrpc', 'xmlrpc-epi-php.c', PHP_XMLRPC_SHARED, "-DVERSION=\"0.50\"");
        !            11:                ADD_SOURCES(configure_module_dirname + "/libxmlrpc", "base64.c simplestring.c xml_to_dandarpc.c \
        !            12:                xmlrpc_introspection.c encodings.c system_methods.c xml_to_xmlrpc.c \
        !            13:                queue.c xml_element.c xmlrpc.c xml_to_soap.c", "xmlrpc");
        !            14: 
        !            15:        } else {
        !            16:                WARNING("xmlrpc support can't be enabled, libraries or headers are missing")
        !            17:                PHP_XMLRPC = "no";
        !            18:        }
        !            19: }
        !            20: 

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