mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
27 lines
1.4 KiB
Diff
27 lines
1.4 KiB
Diff
diff --git a/gsoap/stdsoap2.cpp b/gsoap/stdsoap2.cpp
|
|
index fccadad..2de066f 100644
|
|
--- a/gsoap/stdsoap2.cpp
|
|
+++ b/gsoap/stdsoap2.cpp
|
|
@@ -19652,7 +19652,7 @@ soap_strerror(struct soap *soap)
|
|
{
|
|
#ifndef WIN32
|
|
# ifdef HAVE_STRERROR_R
|
|
-# if defined(_GNU_SOURCE) && !defined(__ANDROID__)
|
|
+# if defined(_GNU_SOURCE) && !defined(__ANDROID__) && defined(__GLIBC__)
|
|
return strerror_r(err, soap->msgbuf, sizeof(soap->msgbuf)); /* GNU-specific */
|
|
# else
|
|
strerror_r(err, soap->msgbuf, sizeof(soap->msgbuf)); /* XSI-compliant */
|
|
diff --git a/gsoap/stdsoap2.h b/gsoap/stdsoap2.h
|
|
index ba38ba3..9922319 100644
|
|
--- a/gsoap/stdsoap2.h
|
|
+++ b/gsoap/stdsoap2.h
|
|
@@ -947,7 +947,7 @@ extern "C" {
|
|
# endif
|
|
#elif defined(SOCKLEN_T)
|
|
# define SOAP_SOCKLEN_T SOCKLEN_T
|
|
-#elif defined(__socklen_t_defined) || defined(_SOCKLEN_T) || defined(CYGWIN) || defined(FREEBSD) || defined(__FreeBSD__) || defined(OPENBSD) || defined(__QNX__) || defined(QNX) || defined(OS390) || defined(__ANDROID__) || defined(_XOPEN_SOURCE)
|
|
+#elif defined(__socklen_t_defined) || defined(_SOCKLEN_T) || defined(CYGWIN) || defined(FREEBSD) || defined(__FreeBSD__) || defined(OPENBSD) || defined(__QNX__) || defined(QNX) || defined(OS390) || defined(__ANDROID__) || defined(_XOPEN_SOURCE) || defined (LINUX)
|
|
# define SOAP_SOCKLEN_T socklen_t
|
|
#elif defined(IRIX) || defined(WIN32) || defined(__APPLE__) || defined(SUN_OS) || defined(OPENSERVER) || defined(TRU64) || defined(VXWORKS)
|
|
# define SOAP_SOCKLEN_T int
|