Use defined(__sun) instead of defined(sun)
Strict ISO confirming C compilers only define __sun Reviewed-by: Viktor Dukhovni <openssl-users@dukhovni.org> RT #4144, MR #1353 (cherry picked from commit 3d32218812e87221344f2985512e42e4aaa88745)
This commit is contained in:
parent
6d31885d4a
commit
fb92839c93
@ -120,7 +120,7 @@
|
||||
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 */
|
||||
|
||||
#if defined( sun ) /* Newer Sparc's */
|
||||
#if defined( __sun ) /* Newer Sparc's */
|
||||
# define DES_PTR
|
||||
# define DES_RISC1
|
||||
# define DES_UNROLL
|
||||
|
4
e_os.h
4
e_os.h
@ -619,7 +619,7 @@ struct servent *PASCAL getservbyname(const char *, const char *);
|
||||
# include <sys/select.h>
|
||||
# endif
|
||||
|
||||
# if defined(sun)
|
||||
# if defined(__sun)
|
||||
# include <sys/filio.h>
|
||||
# else
|
||||
# ifndef VMS
|
||||
@ -661,7 +661,7 @@ struct servent *PASCAL getservbyname(const char *, const char *);
|
||||
|
||||
# endif
|
||||
|
||||
# if defined(sun) && !defined(__svr4__) && !defined(__SVR4)
|
||||
# if defined(__sun) && !defined(__svr4__) && !defined(__SVR4)
|
||||
/* include headers first, so our defines don't break it */
|
||||
# include <stdlib.h>
|
||||
# include <string.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user