From a1037ce3bcadad76d3fbfb766d836b93f5ad3dfa Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 30 May 2002 15:45:02 +0000 Subject: [PATCH] Make sure that MS_STATIC isn't defined to 'static' under Win32. PR: 51 --- e_os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e_os.h b/e_os.h index 28bef94bbd..f216936e18 100644 --- a/e_os.h +++ b/e_os.h @@ -114,7 +114,7 @@ extern "C" { ********************************************************************/ /* The following is used becaue of the small stack in some * Microsoft operating systems */ -#if defined(OPENSSL_SYS_MSDOS) +#if defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYSNAME_WIN32) # define MS_STATIC static #else # define MS_STATIC -- 2.25.1