mirror of https://github.com/openssl/openssl.git
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:
parent
72d3e9bac4
commit
c5795689c9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue