From: Tomas Mraz Date: Wed, 16 Oct 2024 08:52:51 +0000 (+0200) Subject: Fix missing sendmmsg/recvmmsg on AIX X-Git-Tag: openssl-3.5.0-alpha1~972 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5795689c93f95508e8da97d5c766a793bad3b58;p=thirdparty%2Fopenssl.git Fix missing sendmmsg/recvmmsg on AIX This at least fixes the build failures on AIX Reviewed-by: Neil Horman Reviewed-by: Saša Nedvědický (Merged from https://github.com/openssl/openssl/pull/25704) --- diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c index 1ab8c5fd707..ea2550859cc 100644 --- a/crypto/bio/bss_dgram.c +++ b/crypto/bio/bss_dgram.c @@ -66,7 +66,7 @@ #undef NO_RECVMSG #define NO_RECVMSG # endif -# if defined(__ANDROID_API__) && __ANDROID_API__ < 21 +# if (defined(__ANDROID_API__) && __ANDROID_API__ < 21) || defined(_AIX) # undef NO_RECVMMSG # define NO_RECVMMSG # endif