annotate src/gsoap-1-fixes.patch @ 1994:8bf08e374ef9

package gsoap: apply published bugfix
author Mark Brand <mabrand@mabrand.nl>
date Mon, 19 Sep 2011 15:39:23 +0200
parents
children b7c837764729
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1994
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
1 This file is part of mingw-cross-env.
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
2 See doc/index.html for further information.
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
3
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
4 Contains ad hoc patches for cross building.
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
5
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
6 From 35024d3ef8fb879a92de71b738ad985b6e8318af Mon Sep 17 00:00:00 2001
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
7 From: mingw-cross-env
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
8 Date: Mon, 19 Sep 2011 15:22:59 +0200
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
9 Subject: [PATCH] bugfix for 2.8.3 from:
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
10 http://www.cs.fsu.edu/~engelen/soapbugs.html
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
11
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
12
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
13 diff --git a/gsoap/VisualStudio2005/wsdl2h/wsdl2h/stdsoap2.cpp b/gsoap/VisualStudio2005/wsdl2h/wsdl2h/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
14 index 6f05170..f31676b 100644
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
15 --- a/gsoap/VisualStudio2005/wsdl2h/wsdl2h/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
16 +++ b/gsoap/VisualStudio2005/wsdl2h/wsdl2h/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
17 @@ -8261,7 +8261,7 @@ soap_copy_context(struct soap *copy, const struct soap *soap)
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
18 soap_set_recv_logfile(copy, soap->logfile[SOAP_INDEX_RECV]);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
19 #endif
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
20 copy->local_namespaces = NULL;
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
21 - soap_set_namespaces(copy, soap->local_namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
22 + soap_set_namespaces(copy, soap->namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
23 #ifdef WITH_C_LOCALE
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
24 copy->c_locale = duplocale(soap->c_locale);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
25 #else
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
26 diff --git a/gsoap/samples/calc_vs2005/calc_vs2005/stdsoap2.cpp b/gsoap/samples/calc_vs2005/calc_vs2005/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
27 index 6f05170..f31676b 100644
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
28 --- a/gsoap/samples/calc_vs2005/calc_vs2005/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
29 +++ b/gsoap/samples/calc_vs2005/calc_vs2005/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
30 @@ -8261,7 +8261,7 @@ soap_copy_context(struct soap *copy, const struct soap *soap)
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
31 soap_set_recv_logfile(copy, soap->logfile[SOAP_INDEX_RECV]);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
32 #endif
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
33 copy->local_namespaces = NULL;
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
34 - soap_set_namespaces(copy, soap->local_namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
35 + soap_set_namespaces(copy, soap->namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
36 #ifdef WITH_C_LOCALE
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
37 copy->c_locale = duplocale(soap->c_locale);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
38 #else
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
39 diff --git a/gsoap/stdsoap2.c b/gsoap/stdsoap2.c
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
40 index 6f05170..f31676b 100644
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
41 --- a/gsoap/stdsoap2.c
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
42 +++ b/gsoap/stdsoap2.c
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
43 @@ -8261,7 +8261,7 @@ soap_copy_context(struct soap *copy, const struct soap *soap)
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
44 soap_set_recv_logfile(copy, soap->logfile[SOAP_INDEX_RECV]);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
45 #endif
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
46 copy->local_namespaces = NULL;
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
47 - soap_set_namespaces(copy, soap->local_namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
48 + soap_set_namespaces(copy, soap->namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
49 #ifdef WITH_C_LOCALE
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
50 copy->c_locale = duplocale(soap->c_locale);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
51 #else
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
52 diff --git a/gsoap/stdsoap2.cpp b/gsoap/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
53 index 6f05170..f31676b 100644
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
54 --- a/gsoap/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
55 +++ b/gsoap/stdsoap2.cpp
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
56 @@ -8261,7 +8261,7 @@ soap_copy_context(struct soap *copy, const struct soap *soap)
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
57 soap_set_recv_logfile(copy, soap->logfile[SOAP_INDEX_RECV]);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
58 #endif
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
59 copy->local_namespaces = NULL;
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
60 - soap_set_namespaces(copy, soap->local_namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
61 + soap_set_namespaces(copy, soap->namespaces);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
62 #ifdef WITH_C_LOCALE
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
63 copy->c_locale = duplocale(soap->c_locale);
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
64 #else
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
65 --
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
66 1.7.6.1
8bf08e374ef9 package gsoap: apply published bugfix
Mark Brand <mabrand@mabrand.nl>
parents:
diff changeset
67