Use both sun and __sun

Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
Kurt Roeckx 2015-11-24 23:21:06 +01:00
parent 296f7bd1ac
commit ed02493567
2 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@
optimization options. Older Sparc's work better with only UNROLL, but optimization options. Older Sparc's work better with only UNROLL, but
there's no way to tell at compile time what it is you're running on */ there's no way to tell at compile time what it is you're running on */
#if defined( __sun ) /* Newer Sparc's */ #if defined( __sun ) || defined ( sun ) /* Newer Sparc's */
# define DES_PTR # define DES_PTR
# define DES_RISC1 # define DES_RISC1
# define DES_UNROLL # define DES_UNROLL

4
e_os.h
View File

@ -619,7 +619,7 @@ struct servent *PASCAL getservbyname(const char *, const char *);
# include <sys/select.h> # include <sys/select.h>
# endif # endif
# if defined(__sun) # if defined(__sun) || defined(sun)
# include <sys/filio.h> # include <sys/filio.h>
# else # else
# ifndef VMS # ifndef VMS
@ -661,7 +661,7 @@ struct servent *PASCAL getservbyname(const char *, const char *);
# endif # endif
# if defined(__sun) && !defined(__svr4__) && !defined(__SVR4) # if (defined(__sun) || defined(sun)) && !defined(__svr4__) && !defined(__SVR4)
/* include headers first, so our defines don't break it */ /* include headers first, so our defines don't break it */
# include <stdlib.h> # include <stdlib.h>
# include <string.h> # include <string.h>