From abfc6a3a9bcc3391181940213ce840130a35f1cd Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 22 Mar 2003 22:33:52 +0000 Subject: [PATCH] To define OPENSSL_NO_FP_API for all MSDOS type targets was unfair against DJGPP, and much more restricted than previous definitions. --- e_os2.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/e_os2.h b/e_os2.h index 80ec03ee8c..4fd6c62ace 100644 --- a/e_os2.h +++ b/e_os2.h @@ -200,8 +200,10 @@ extern "C" { /* Specials for I/O an exit */ -#ifdef OPENSSL_SYS_MSDOS +#ifdef OPENSSL_SYS_WIN16 # define OPENSSL_NO_FP_API +#endif +#ifdef OPENSSL_SYS_MSDOS # define OPENSSL_UNISTD_IO # define OPENSSL_DECLARE_EXIT extern void exit(int); #else -- GitLab