This commit is contained in:
foobar 2004-04-07 15:25:29 +00:00
parent 7264ffe50d
commit 99a2a59f01
4 changed files with 3 additions and 42 deletions

2
ext/soap/CREDITS Normal file
View File

@ -0,0 +1,2 @@
SOAP
Brad Lafountain, Shane Caraveo, Dmitry Stogov

View File

@ -1,8 +0,0 @@
# $Id$
LTLIBRARY_NAME = libsoap.la
LTLIBRARY_SOURCES = soap.c php_sdl.c php_schema.c php_xml.c php_encoding.c php_http.c php_packet_soap.c
LTLIBRARY_SHARED_NAME = soap.la
LTLIBRARY_SHARED_LIBADD = $(SOAP_SHARED_LIBADD)
include $(top_srcdir)/build/dynlib.mk

View File

@ -1,33 +0,0 @@
dnl $Id$
dnl config.m4 for extension soap
PHP_ARG_WITH(soap, whether to enable soap support,
[ --with-soap[=DIR] Include SOAP support. DIR is libxml2
library directory.])
if test "$PHP_SOAP" != "no"; then
if test "$PHP_SOAP" = "yes"; then
for i in /usr/local /usr; do
if test -d "$i/include/libxml2/libxml"; then
XML2_INCDIR=$i/include/libxml2
XML2_LIBDIR=$i/lib
fi
done
else
if test -d "$PHP_SOAP/include/libxml2/libxml"; then
XML2_INCDIR=$PHP_SOAP/include/libxml2
XML2_LIBDIR=$PHP_SOAP/lib
fi
fi
if test -z "$XML2_INCDIR"; then
AC_MSG_ERROR(Cannot find libxml2 header. Please specify correct libxml2 installation path)
fi
AC_DEFINE(HAVE_PHP_SOAP,1,[Whether you have soap module])
PHP_ADD_INCLUDE($XML2_INCDIR)
PHP_ADD_LIBRARY_WITH_PATH(xml2,$XML2_LIBDIR,SOAP_SHARED_LIBADD)
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)
PHP_SUBST(SOAP_SHARED_LIBADD)
fi

View File

@ -39,10 +39,10 @@
</release>
<filelist>
<dir name="/">
<file role="doc">CREDITS</file>
<file role="doc">EXPERIMENTAL</file>
<file role="doc">TODO</file>
<file role="src">config.m4</file>
<file role="src">Makefile.in</file>
<file role="src">php_encoding.c</file>
<file role="src">php_encoding.h</file>
<file role="src">php_http.c</file>