From: Bodo Möller Date: Wed, 31 May 2000 16:42:47 +0000 (+0000) Subject: When compiling with /opt/SUNWspro/SC4.2/bin/cc on Solaris, __svr4__ is X-Git-Tag: OpenSSL-engine-0_9_6-beta1~66^2~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=af463e7e1909666ef35e39fcf6939fb2fe1899b1;p=oweals%2Fopenssl.git When compiling with /opt/SUNWspro/SC4.2/bin/cc on Solaris, __svr4__ is not defined, but __SVR4 is. --- diff --git a/e_os.h b/e_os.h index 4c39cb0238..7e63d0130c 100644 --- a/e_os.h +++ b/e_os.h @@ -403,7 +403,7 @@ extern HINSTANCE _hInstance; #endif #endif -#if defined(sun) && !defined(__svr4__) +#if defined(sun) && !defined(__svr4__) && !defined(__SVR4) #define memmove(s1,s2,b) bcopy((s2),(s1),(n)) #define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b))) #endif