Sat, 06 Oct 2012 16:24:01 +0200
Update to new vendor software version and adjust patch code accordingly.
Unfortunately the vendor has apparently failed to properly test this
release which depends on missing object symbols in libsasl2.a(common.o):
undefined reference to `sasl_randcreate'
undefined reference to `sasl_mkchal'
undefined reference to `sasl_utf8verify'
undefined reference to `sasl_rand'
undefined reference to `sasl_churn'
undefined reference to `sasl_encode64'
undefined reference to `sasl_decode64'
undefined reference to `sasl_erasebuffer'
undefined reference to `sasl_randfree'
undefined reference to `sasl_strlower'
undefined reference to `get_fqhostname'
...yet to be patched.
michael@41 | 1 | Index: src/SOAPSSLContext.cpp |
michael@41 | 2 | --- src/SOAPSSLContext.cpp.orig 2005-09-24 09:24:24 +0200 |
michael@41 | 3 | +++ src/SOAPSSLContext.cpp 2006-11-11 09:19:55 +0100 |
michael@41 | 4 | @@ -18,6 +18,7 @@ |
michael@41 | 5 | * |
michael@41 | 6 | * $Id: easysoap.patch,v 1.4 2006/11/11 08:50:52 rse Exp $ |
michael@41 | 7 | */ |
michael@41 | 8 | +#define OPENSSL_NO_SHA512 |
michael@41 | 9 | |
michael@41 | 10 | #include <easysoap/SOAP.h> |
michael@41 | 11 | #include <easysoap/SOAPDebugger.h> |
michael@41 | 12 | Index: src/SOAPSecureSocketImp.cpp |
michael@41 | 13 | --- src/SOAPSecureSocketImp.cpp.orig 2005-09-24 09:24:24 +0200 |
michael@41 | 14 | +++ src/SOAPSecureSocketImp.cpp 2006-11-11 09:19:02 +0100 |
michael@41 | 15 | @@ -24,6 +24,8 @@ |
michael@41 | 16 | #pragma warning (disable: 4786) |
michael@41 | 17 | #endif // _MSC_VER |
michael@41 | 18 | |
michael@41 | 19 | +#define OPENSSL_NO_SHA512 |
michael@41 | 20 | + |
michael@41 | 21 | #include <easysoap/SOAP.h> |
michael@41 | 22 | #include <easysoap/SOAPDebugger.h> |
michael@41 | 23 | #include <easysoap/SOAPSSLContext.h> |