Commit 416b19c6 authored by Richard Levitte's avatar Richard Levitte
Browse files

gcc wants character constants to be correct. Before this change, the

following would happen on Solaris:

  m4 -B 8192 asm/des_enc.m4 > asm/des_enc-sparc.S
  gcc -DOPENSSL_SYSNAME_ULTRASPARC -DOPENSSL_NO_STATIC_ENGINE -fPIC -DOPENSSL_PIC -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -DOPENSSL_NO_KRB5 -m32 -mcpu=ultrasparc -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W -DMD5_ASM   -c -o asm/des_enc-sparc.o asm/des_enc-sparc.S
  asm/des_enc-sparc.S:2007: unterminated character constant
  asm/des_enc-sparc.S:2008: unterminated character constant
parent 5b7249f3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1434,8 +1434,8 @@ DES_decrypt3:

#ifdef OPENSSL_PIC
	! In case anybody wonders why this code is same for both ABI.
	! To start with it's not. Do note LDPTR below. But of course
	! you must be wondering why the rest of it doesn't contain
	! To start with it is not. Do note LDPTR below. But of course
	! you must be wondering why the rest of it does not contain
	! things like %hh, %hm and %lm. Well, those are needed only
	! if OpenSSL library *itself* will become larger than 4GB,
	! which is not going to happen any time soon.