diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-12 05:20:02 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-12 05:20:02 +0000 |
commit | 8827d5922076b84e45a55f53afd17987abe89905 (patch) | |
tree | 45eddbed50cc225dbcf058420fef068870ce2166 /dev-libs/openssl/files | |
parent | Add fixes for CAN-2005-2969 #108852. (diff) | |
download | gentoo-2-8827d5922076b84e45a55f53afd17987abe89905.tar.gz gentoo-2-8827d5922076b84e45a55f53afd17987abe89905.tar.bz2 gentoo-2-8827d5922076b84e45a55f53afd17987abe89905.zip |
Version bumpage.
(Portage version: 2.0.53_rc4)
Diffstat (limited to 'dev-libs/openssl/files')
4 files changed, 26 insertions, 0 deletions
diff --git a/dev-libs/openssl/files/digest-openssl-0.9.7h b/dev-libs/openssl/files/digest-openssl-0.9.7h new file mode 100644 index 000000000000..a72fb85d8c5c --- /dev/null +++ b/dev-libs/openssl/files/digest-openssl-0.9.7h @@ -0,0 +1 @@ +MD5 8dc90a113eb8925795071fbe52b2932c openssl-0.9.7h.tar.gz 3287019 diff --git a/dev-libs/openssl/files/digest-openssl-0.9.8a b/dev-libs/openssl/files/digest-openssl-0.9.8a new file mode 100644 index 000000000000..9ea1a44310ce --- /dev/null +++ b/dev-libs/openssl/files/digest-openssl-0.9.8a @@ -0,0 +1 @@ +MD5 1d16c727c10185e4d694f87f5e424ee1 openssl-0.9.8a.tar.gz 3271435 diff --git a/dev-libs/openssl/files/openssl-0.9.7h-ABI-compat.patch b/dev-libs/openssl/files/openssl-0.9.7h-ABI-compat.patch new file mode 100644 index 000000000000..878ec6060ec0 --- /dev/null +++ b/dev-libs/openssl/files/openssl-0.9.7h-ABI-compat.patch @@ -0,0 +1,11 @@ +Fix from RedHat: +* Thu Mar 31 2005 Tomas Mraz <tmraz@redhat.com> 0.9.7f-2 +- disable broken bignum assembly on x86_64 + +--- Configure ++++ Configure +@@ -413,3 +413,3 @@ + "linux-ia64-ecc", "ecc:-DL_ENDIAN -DTERMIO -O2 -Wall -no_cpprt::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR:asm/ia64.o::::asm/sha1-ia64.o::asm/rc4-ia64.o:::dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", +-"linux-x86_64", "gcc:-m64 -DL_ENDIAN -DTERMIO -O3 -Wall -DMD32_REG_T=int::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR BF_PTR2 DES_INT DES_UNROLL:asm/x86_64-gcc.o::::::asm/rc4-x86_64.o:::dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", ++"linux-x86_64", "gcc:-m64 -DL_ENDIAN -DTERMIO -O3 -Wall -DMD32_REG_T=int::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHUNK RC4_CHAR BF_PTR2 DES_INT DES_UNROLL:asm/x86_64-gcc.o:::::::::dlfcn:linux-shared:-fPIC:-m64:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + "NetBSD-sparc", "gcc:-DTERMIOS -O3 -fomit-frame-pointer -mv8 -Wall -DB_ENDIAN::(unknown):::BN_LLONG MD2_CHAR RC4_INDEX DES_UNROLL::::::::::dlfcn:bsd-gcc-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", diff --git a/dev-libs/openssl/files/openssl-0.9.8-hppa-fix-detection.patch b/dev-libs/openssl/files/openssl-0.9.8-hppa-fix-detection.patch new file mode 100644 index 000000000000..5ec141f945d3 --- /dev/null +++ b/dev-libs/openssl/files/openssl-0.9.8-hppa-fix-detection.patch @@ -0,0 +1,13 @@ +--- config.orig 2005-10-12 01:05:03.000000000 -0400 ++++ config 2005-10-12 01:05:16.000000000 -0400 +@@ -564,8 +564,8 @@ + parisc*-*-linux2) + # 64-bit builds under parisc64 linux are not supported and + # compiler is expected to generate 32-bit objects... +- CPUARCH=`awk '/cpu family/{print substr($5,1,3); exit(0);}' /proc/cpuinfo` +- CPUSCHEDULE=`awk '/^cpu.[ ]*: PA/{print substr($3,3); exit(0);}' /proc/cpuinfo` ++ CPUARCH=`awk '/cpu family/{print substr($5,1,3); exit(0);}' /proc/cpuinfo | head -n 1` ++ CPUSCHEDULE=`awk '/^cpu.[ ]*: PA/{print substr($3,3); exit(0);}' /proc/cpuinfo | head -n 1` + + # ??TODO ?? Model transformations + # 0. CPU Architecture for the 1.1 processor has letter suffixes. We strip that off |