From 0059bb5dac4224f866d9cd34e987c7d489c71e48 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Tue, 1 Aug 2023 14:47:32 +0100 Subject: Prepare for 3.0.11 Reviewed-by: Tomas Mraz Release: yes --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'NEWS.md') diff --git a/NEWS.md b/NEWS.md index feed902697..068def4ae1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -18,6 +18,10 @@ OpenSSL Releases OpenSSL 3.0 ----------- +### Major changes between OpenSSL 3.0.10 and OpenSSL 3.0.11 [under development] + + * none + ### Major changes between OpenSSL 3.0.9 and OpenSSL 3.0.10 [1 Aug 2023] * Fix excessive time spent checking DH q parameter value ([CVE-2023-3817]) -- cgit v1.2.3 table id='header'> cgit logo index : openssl
Mirror of https://github.com/openssl/opensslmatthias
summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-04-04 17:10:53 +0000
committerAndy Polyakov <appro@openssl.org>2005-04-04 17:10:53 +0000
commit0abfd606049999071891ef2bab460c99d254edc6 (patch)
treeb5a1d96808941760cfb4ae9e16ece21240ef740c /crypto
parente5dbccc182f3ada92014f2569ed9624886040ce0 (diff)
Extend Solaris x86 support to amd64.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/Makefile1
-rw-r--r--crypto/rc4/Makefile2
2 files changed, 2 insertions, 1 deletions
diff --git a/crypto/bn/Makefile b/crypto/bn/Makefile
index 75437cdbcc..0a3851853d 100644
--- a/crypto/bn/Makefile
+++ b/crypto/bn/Makefile
@@ -89,6 +89,7 @@ sparcv8plus.o: asm/sparcv8plus.S
mips3.o: asm/mips3.s
x86_64-gcc.o: asm/x86_64-gcc.c
+ $(CC) $(CFLAGS) -c -o $@ asm/x86_64-gcc.c
bn-ia64.s: asm/ia64.S
$(CC) $(CFLAGS) -E asm/ia64.S > $@
diff --git a/crypto/rc4/Makefile b/crypto/rc4/Makefile
index 91fb3ac803..a392e3e997 100644
--- a/crypto/rc4/Makefile
+++ b/crypto/rc4/Makefile
@@ -58,7 +58,7 @@ rx86-cof.s: asm/rc4-586.pl ../perlasm/x86asm.pl
rx86-out.s: asm/rc4-586.pl ../perlasm/x86asm.pl
(cd asm; $(PERL) rc4-586.pl a.out $(CFLAGS) > ../$@)
-rc4-amd64.s: asm/rc4-amd64.pl; $(PERL) $< $@
+rc4-amd64.s: asm/rc4-amd64.pl; $(PERL) asm/rc4-amd64.pl $@
rc4-ia64.s: asm/rc4-ia64.S
$(CC) $(CFLAGS) -E asm/rc4-ia64.S > $@