djgpp: Skip test/rsa_complex.c
We don't have <complex.h> on djgpp, so this entire test can be skipped. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19286)
This commit is contained in:
parent
cffb65f2ff
commit
2de00f4f1e
@ -11,13 +11,18 @@
|
|||||||
* Check to see if there is a conflict between complex.h and openssl/rsa.h.
|
* Check to see if there is a conflict between complex.h and openssl/rsa.h.
|
||||||
* The former defines "I" as a macro and earlier versions of the latter use
|
* The former defines "I" as a macro and earlier versions of the latter use
|
||||||
* for function arguments.
|
* for function arguments.
|
||||||
|
*
|
||||||
|
* Will always succeed on djgpp, since its libc does not have complex.h.
|
||||||
*/
|
*/
|
||||||
#if defined(__STDC_VERSION__)
|
|
||||||
# if __STDC_VERSION__ >= 199901L
|
#if !defined(__DJGPP__)
|
||||||
# include <complex.h>
|
# if defined(__STDC_VERSION__)
|
||||||
|
# if __STDC_VERSION__ >= 199901L
|
||||||
|
# include <complex.h>
|
||||||
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
# include <openssl/rsa.h>
|
||||||
#endif
|
#endif
|
||||||
#include <openssl/rsa.h>
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user