mirror of https://github.com/openssl/openssl.git
Fix AIX build in test/radix/quic_tests.c
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/27354)
This commit is contained in:
parent
e11fdd8293
commit
235092d780
|
|
@ -7,6 +7,16 @@
|
|||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
#if defined(_AIX)
|
||||
/*
|
||||
* Some versions of AIX define macros for events and revents for use when
|
||||
* accessing pollfd structures (see Github issue #24236). That interferes
|
||||
* with our use of these names here. We simply undef them.
|
||||
*/
|
||||
# undef revents
|
||||
# undef events
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Test Scripts
|
||||
* ============================================================================
|
||||
|
|
|
|||
Loading…
Reference in New Issue