Return to config.m4 CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap |
1.1 ! misho 1: dnl $Id: config.m4 242949 2007-09-26 15:44:16Z cvs2svn $ ! 2: dnl config.m4 for extension soap ! 3: ! 4: PHP_ARG_ENABLE(soap, whether to enable SOAP support, ! 5: [ --enable-soap Enable SOAP support]) ! 6: ! 7: if test -z "$PHP_LIBXML_DIR"; then ! 8: PHP_ARG_WITH(libxml-dir, libxml2 install dir, ! 9: [ --with-libxml-dir=DIR SOAP: libxml2 install prefix], no, no) ! 10: fi ! 11: ! 12: if test "$PHP_SOAP" != "no"; then ! 13: ! 14: if test "$PHP_LIBXML" = "no"; then ! 15: AC_MSG_ERROR([SOAP extension requires LIBXML extension, add --enable-libxml]) ! 16: fi ! 17: ! 18: PHP_SETUP_LIBXML(SOAP_SHARED_LIBADD, [ ! 19: AC_DEFINE(HAVE_SOAP,1,[ ]) ! 20: PHP_NEW_EXTENSION(soap, soap.c php_encoding.c php_http.c php_packet_soap.c php_schema.c php_sdl.c php_xml.c, $ext_shared) ! 21: PHP_SUBST(SOAP_SHARED_LIBADD) ! 22: ], [ ! 23: AC_MSG_ERROR([xml2-config not found. Please check your libxml2 installation.]) ! 24: ]) ! 25: fi