summaryrefslogtreecommitdiff
path: root/security/openssl-devel/files
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2020-07-19 08:10:52 +0000
committerBernard Spil <brnrd@FreeBSD.org>2020-07-19 08:10:52 +0000
commit908b9c959091abf9d70271bb6c312492f0a5d3a6 (patch)
tree1b8bf74bf8212fc8d5e61e46f8dea3e7e36c8c80 /security/openssl-devel/files
parentwww/qutebrowser: update to 1.13.1 (diff)
security/openssl-devel: Update to 3.0.0-alpha5
* target now determined in util/perl/OpenSSL/config.pm * Stop modifying Makefile twice
Diffstat (limited to 'security/openssl-devel/files')
-rw-r--r--security/openssl-devel/files/patch-config19
1 files changed, 0 insertions, 19 deletions
diff --git a/security/openssl-devel/files/patch-config b/security/openssl-devel/files/patch-config
deleted file mode 100644
index 753e22c6d62d..000000000000
--- a/security/openssl-devel/files/patch-config
+++ /dev/null
@@ -1,19 +0,0 @@
---- config.orig 2018-01-13 13:57:15 UTC
-+++ config
-@@ -694,14 +694,8 @@ 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
-+ *86*-*-*bsd*)
-+ case "`(file -L /bin/sh) 2>/dev/null`" in
- *ELF*) OUT="BSD-x86-elf" ;;
- *) OUT="BSD-x86"; options="$options no-sse2" ;;
- esac ;;