]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix missing sendmmsg/recvmmsg on AIX
authorTomas Mraz <tomas@openssl.org>
Wed, 16 Oct 2024 08:52:51 +0000 (10:52 +0200)
committerTomas Mraz <tomas@openssl.org>
Wed, 23 Oct 2024 13:19:34 +0000 (15:19 +0200)
This at least fixes the build failures on AIX

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Saša Nedvědický <sashan@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25704)

crypto/bio/bss_dgram.c

index 1ab8c5fd707a280e2baa6b4d5e1ec48883ef753e..ea2550859ccdabf3ac7d2a76dc324318655912aa 100644 (file)
@@ -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