commit | af463e7e1909666ef35e39fcf6939fb2fe1899b1 | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Wed May 31 16:42:47 2000 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Wed May 31 16:42:47 2000 +0000 |
tree | 58cadaa5dac88dc8c91b8f11983dc478fb2f7622 | |
parent | 01296a6de0f968d741d871efda8ab4ed5420442d [diff] |
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 4c39cb0..7e63d01 100644 --- a/e_os.h +++ b/e_os.h
@@ -403,7 +403,7 @@ #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