From c5795689c93f95508e8da97d5c766a793bad3b58 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Wed, 16 Oct 2024 10:52:51 +0200 Subject: [PATCH] Fix missing sendmmsg/recvmmsg on AIX MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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) --- crypto/bio/bss_dgram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.2