From: Bodo Möller Date: Thu, 8 Jun 2000 22:47:09 +0000 (+0000) Subject: Another attempt to allow compiling on SunOS 4.*. X-Git-Tag: OpenSSL-engine-0_9_6-beta1~21^2~77 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=6da6a113310ed0e2002a34d2c2630e23e3c506fe;hp=3dd985ee2ab05b4eda53b67395d85269acad74bd Another attempt to allow compiling on SunOS 4.*. --- diff --git a/Configure b/Configure index 31221bb338..0c8ebe7b87 100755 --- a/Configure +++ b/Configure @@ -163,7 +163,7 @@ my %table=( # Sunos configs, assuming sparc for the gcc one. ##"sunos-cc", "cc:-O4 -DNOPROTO -DNOCONST::(unknown)::DES_UNROLL:::", -"sunos-gcc","gcc:-O3 -mv8 -Dssize_t=int::(unknown):-liberty:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL DES_PTR DES_RISC1:::", +"sunos-gcc","gcc:-O3 -mv8 -Dssize_t=int::(unknown)::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL DES_PTR DES_RISC1:::", #### IRIX 5.x configs # -mips2 flag is added by ./config when appropriate. diff --git a/e_os.h b/e_os.h index 948a8bfd7e..f540d7752e 100644 --- a/e_os.h +++ b/e_os.h @@ -404,7 +404,11 @@ extern HINSTANCE _hInstance; #endif #if defined(sun) && !defined(__svr4__) && !defined(__SVR4) -#define memmove(s1,s2,n) bcopy((s2),(s1),(n)) +# define memmove(s1,s2,n) bcopy((s2),(s1),(n)) +# define strtoul(s,e,b) ((unsigned long int)strtol((s),(e),(b))) +extern char *sys_errlist[]; extern int sys_nerr; +# define strerror(errnum) \ + (((errnum)<0 || (errnum)>=sys_nerr) ? NULL : sys_errlist[errnum]) #endif /***********************************************/