summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJ.W. Jagersma <jwjagersma@gmail.com>2022-09-27 18:52:05 +0200
committerTomas Mraz <tomas@openssl.org>2022-09-29 12:48:23 +0200
commit2de00f4f1e20d3dd4cb8e3165f30146c1294f6d4 (patch)
treeb30daecdc9d5b9802ba5a4d649bcba9db5be5eec
parentcffb65f2ff85f19418ed121275901674824e52ca (diff)
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)
-rw-r--r--test/rsa_complex.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/test/rsa_complex.c b/test/rsa_complex.c
index 66b85f0ca0..7c77980f54 100644
--- a/test/rsa_complex.c
+++ b/test/rsa_complex.c
@@ -11,13 +11,18 @@
* 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
* for function arguments.
+ *
+ * Will always succeed on djgpp, since its libc does not have complex.h.
*/
-#if defined(__STDC_VERSION__)
-# if __STDC_VERSION__ >= 199901L
-# include <complex.h>
+
+#if !defined(__DJGPP__)
+# if defined(__STDC_VERSION__)
+# if __STDC_VERSION__ >= 199901L
+# include <complex.h>
+# endif
# endif
+# include <openssl/rsa.h>
#endif
-#include <openssl/rsa.h>
#include <stdlib.h>
int main(int argc, char *argv[])