-
LIBADD_DL contains a list of libraries like "-ldl". Thus, it should be in LDADD instead of LDFLAGS in case one of the libraries depends on a path set in LDFLAGS.
This patch only modifies several Makefile.am. The corresponding Makefile.in need to be regenerated afterwards.
2009-06-16 16:36:32 UTC in CppUnit - C++ port of JUnit
-
See https://sourceforge.net/tracker/?func=detail&atid=102435&aid=2728605&group_id=2435 for original report.
Additional info:
It seems highly unlikely to me that the bug is not in MSYS' cat.exe for the following reasons:
- Bug occurs with both cmd.exe and Cygwin's bash.exe.
- Filemon shows that MSYS-1.0.11's cat.exe is writing 1107 bytes which is already one byte too many.
- Bug does...
2009-04-06 09:55:30 UTC in MinGW - Minimalist GNU for Windows
-
MSYS 1.0.11(0.46/3/2) 2009-01-29 00:39 i686 unknown; targ=MINGW32
cat (GNU coreutils) 5.97
Windows Server 2003 64-bit
When the text files a.txt and b.txt are concatenated (see attachment), MSYS' cat.exe outputs a duplicate CR after about 1000 bytes. Both a.txt and b.txt have CRLF line endings. Line lengths in these files seem to matter, you can't trigger the bug with any kind of text...
2009-04-03 17:45:22 UTC in MinGW - Minimalist GNU for Windows
-
stdsoap2.cpp(5552) : warning C4310: cast truncates constant value
stdsoap2.cpp(5668) : warning C4310: cast truncates constant value
stdsoap2.cpp(5693) : warning C4310: cast truncates constant value
Casting SOAP_CANARY to unsigned short instead of signed short fixes these warnings.
I made this patch for gSOAP 2.7.11, but 2.7.12 contains the same code, and the patch applies to it as...
2009-02-23 14:46:39 UTC in gSOAP Toolkit
-
There's one error case in soap_ssl_accept() in which SOAP_INVALID_SOCKET is returned, but soap_ssl_accept() should return gSOAP error codes, not socket handles. I think SOAP_SSL_ERROR would be the correct return code here.
2008-09-18 09:37:19 UTC in gSOAP Toolkit
-
If soap->connect_timeout is not zero, SSL_connect() does not succeed immediately, and select() is called to wait for more data.
However, select() did return -1 on a Windows Server 2003 system where I tested this. This results in r == -1, and SSL_connect() isn't retried.
Consequently, tcp_connect() fails a bit later with a "No SSL certificate was presented by the peer in tcp_connect()"...
2008-09-11 16:19:06 UTC in gSOAP Toolkit
-
This patch adds a new flag to skip the call to SSL_CTX_set_default_verify_paths(). There are some situations where this is useful:
- The OpenSSL library may not have a reasonable built-in default path.
- It may be desirable to only trust a small set of explicitly specified root certificates.
2008-09-02 15:49:59 UTC in gSOAP Toolkit
-
The Bugs+Patches page contains this fix for gSOAP 2.7.11:
Fix for router:
Replace stdsoap2.c/.cpp line 6268:
soap_free_temp(soap);
with:
soap_free_ns(soap);
and download the router.c patch.
But there's no soap_free_ns() in gSOAP 2.7.11. If stdsoap2.c/.cpp is changed according to that description, it can no longer be compiled.
2008-08-21 09:52:47 UTC in gSOAP Toolkit
-
Even if --disable-ssl is given, wsdl2h is still linked with libgsoapssl++.a.
The patch fixes configure.in and Makefile.am and also updates the files generated by automake. I haven't included a configure update because I don't have the same autoconf version.
The patch assumes that gSOAP-2.7.11-wsdl-makefile.patch from tracker item #1897041 is applied first, but manually applying this...
2008-08-21 09:46:01 UTC in gSOAP Toolkit
-
This is an updated patch for gSOAP 2.7.11.
File Added: gSOAP-2.7.11-wsdl-makefile.patch.
2008-08-21 09:30:54 UTC in gSOAP Toolkit