Fix missing sendmmsg/recvmmsg on AIX

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)
This commit is contained in:
Tomas Mraz 2024-10-16 10:52:51 +02:00
parent 72d3e9bac4
commit c5795689c9
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@
#undef NO_RECVMSG #undef NO_RECVMSG
#define NO_RECVMSG #define NO_RECVMSG
# endif # endif
# if defined(__ANDROID_API__) && __ANDROID_API__ < 21 # if (defined(__ANDROID_API__) && __ANDROID_API__ < 21) || defined(_AIX)
# undef NO_RECVMMSG # undef NO_RECVMMSG
# define NO_RECVMMSG # define NO_RECVMMSG
# endif # endif