diff options
author | m0gg | 2007-01-03 11:43:43 +0000 |
---|---|---|
committer | m0gg | 2007-01-03 11:43:43 +0000 |
commit | 561409cd8e62a912be97259cd44046f347bc76d0 (patch) | |
tree | 560711b5854d06d27e2358bae244f46b94f0a54b | |
parent | 26fb727d99172127ed8837dfd7ee6220c620326e (diff) | |
download | csoap-561409cd8e62a912be97259cd44046f347bc76d0.tar.gz csoap-561409cd8e62a912be97259cd44046f347bc76d0.tar.bz2 |
xsd2c and wsdl2c added
-rw-r--r-- | Makefile.am | 2 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | examples/csoap/Makefile.am | 9 | ||||
-rw-r--r-- | examples/nanohttp/Makefile.am | 3 | ||||
-rwxr-xr-x | wsdl2c/Makefile.am | 4 | ||||
-rwxr-xr-x | xsd2c/Makefile.am | 3 |
7 files changed, 24 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index b14a16b..551aeff 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS=nanohttp libcsoap examples +SUBDIRS=nanohttp libcsoap xsd2c wsdl2c examples bin_SCRIPTS=csoap-config @@ -22181,7 +22181,7 @@ fi rm -f conf.xmlsec1test - ac_config_files="$ac_config_files Makefile libcsoap/Makefile nanohttp/Makefile examples/Makefile examples/nanohttp/Makefile examples/csoap/Makefile libcsoap.pc csoap-config" + ac_config_files="$ac_config_files Makefile libcsoap/Makefile nanohttp/Makefile xsd2c/Makefile wsdl2c/Makefile examples/Makefile examples/nanohttp/Makefile examples/csoap/Makefile libcsoap.pc csoap-config" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure @@ -22769,6 +22769,8 @@ do "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; "libcsoap/Makefile" ) CONFIG_FILES="$CONFIG_FILES libcsoap/Makefile" ;; "nanohttp/Makefile" ) CONFIG_FILES="$CONFIG_FILES nanohttp/Makefile" ;; + "xsd2c/Makefile" ) CONFIG_FILES="$CONFIG_FILES xsd2c/Makefile" ;; + "wsdl2c/Makefile" ) CONFIG_FILES="$CONFIG_FILES wsdl2c/Makefile" ;; "examples/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/Makefile" ;; "examples/nanohttp/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/nanohttp/Makefile" ;; "examples/csoap/Makefile" ) CONFIG_FILES="$CONFIG_FILES examples/csoap/Makefile" ;; diff --git a/configure.ac b/configure.ac index 9c66791..4b1f11b 100644 --- a/configure.ac +++ b/configure.ac @@ -566,6 +566,8 @@ AM_PATH_XMLSEC1(1.2.10, AC_OUTPUT(Makefile libcsoap/Makefile nanohttp/Makefile +xsd2c/Makefile +wsdl2c/Makefile examples/Makefile examples/nanohttp/Makefile examples/csoap/Makefile diff --git a/examples/csoap/Makefile.am b/examples/csoap/Makefile.am index 556dd95..0fb5c0c 100644 --- a/examples/csoap/Makefile.am +++ b/examples/csoap/Makefile.am @@ -1,7 +1,14 @@ +# +# $Revision: 1.11 $ +# LDADD=../../nanohttp/libnanohttp.la ../../libcsoap/libcsoap.la INCLUDES=-I${top_srcdir} -noinst_PROGRAMS=simpleclient simpleserver echoattachments-client echoattachments-server +noinst_PROGRAMS=simpleclient \ + simpleserver \ + echoattachments-client \ + echoattachments-server \ + bin_PROGRAMS=soapclient simpleclient_SOURCES=simpleclient.c diff --git a/examples/nanohttp/Makefile.am b/examples/nanohttp/Makefile.am index d0a6be7..53eadcc 100644 --- a/examples/nanohttp/Makefile.am +++ b/examples/nanohttp/Makefile.am @@ -1,3 +1,6 @@ +# +# $Revision: 1.14 $ +# LDADD=../../nanohttp/libnanohttp.la INCLUDES=-I${top_srcdir} diff --git a/wsdl2c/Makefile.am b/wsdl2c/Makefile.am index db3b340..e56ab0b 100755 --- a/wsdl2c/Makefile.am +++ b/wsdl2c/Makefile.am @@ -1,3 +1,7 @@ +# +# $Revision: 1.6 $ +# + bin_PROGRAMS=wsdl2c INCLUDES=$(LIBXML_CFLAGS) -I$(top_srcdir) diff --git a/xsd2c/Makefile.am b/xsd2c/Makefile.am index 043c8cd..85bd8cf 100755 --- a/xsd2c/Makefile.am +++ b/xsd2c/Makefile.am @@ -1,3 +1,6 @@ +# +# $Revision: 1.6 $ +# bin_PROGRAMS=xsd2c INCLUDES=$(LIBXML_CFLAGS) |