aboutsummaryrefslogtreecommitdiff
path: root/security/openssl/files/patch-config
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2022-06-22 08:56:18 +0000
committerBernard Spil <brnrd@FreeBSD.org>2022-06-25 10:36:40 +0000
commit0e06657ad406eb220a356e8f49cb5cccd025225e (patch)
treea80b749de23b162af6465e2e2cc0851b96ed28c3 /security/openssl/files/patch-config
parentdf2a077922c4ccc5608525ded94263a484bce1a8 (diff)
downloadports-0e06657ad406eb220a356e8f49cb5cccd025225e.tar.gz
ports-0e06657ad406eb220a356e8f49cb5cccd025225e.zip
security/openssl: Security update to 1.1.1p
* Adds bungled commit da7e737639a077e954426e5400c3ce15754f54d parts related to security/openssl Security: 4eeb93bf-f204-11ec-8fbd-d4c9ef517024 (cherry picked from commit f8942926a8cb9a03b0ffab32565479d97fa5be05)
Diffstat (limited to 'security/openssl/files/patch-config')
-rw-r--r--security/openssl/files/patch-config20
1 files changed, 0 insertions, 20 deletions
diff --git a/security/openssl/files/patch-config b/security/openssl/files/patch-config
deleted file mode 100644
index d83edae81ff7..000000000000
--- a/security/openssl/files/patch-config
+++ /dev/null
@@ -1,20 +0,0 @@
---- config.orig 2021-08-24 13:38:47 UTC
-+++ config
-@@ -708,14 +708,9 @@ case "$GUESSOS" in
- ia64-*-*bsd*) OUT="BSD-ia64" ;;
- x86_64-*-dragonfly*) OUT="BSD-x86_64" ;;
- amd64-*-*bsd*) OUT="BSD-x86_64" ;;
-- *86*-*-*bsd*) # mimic ld behaviour when it's looking for libc...
-- if [ -L /usr/lib/libc.so ]; then # [Free|Net]BSD
-- libc=/usr/lib/libc.so
-- else # OpenBSD
-- # ld searches for highest libc.so.* and so do we
-- libc=`(ls /usr/lib/libc.so.* /lib/libc.so.* | tail -1) 2>/dev/null`
-- fi
-- case "`(file -L $libc) 2>/dev/null`" in
-+ arm64-*-*bsd*) OUT="BSD-aarch64" ;;
-+ *86*-*-*bsd*)
-+ case "`(file -L /bin/sh) 2>/dev/null`" in
- *ELF*) OUT="BSD-x86-elf" ;;
- *) OUT="BSD-x86"; options="$options no-sse2" ;;
- esac ;;