summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-03-02 10:50:24 +0100
committerRichard Levitte <levitte@openssl.org>2020-03-04 17:12:52 +0100
commitb16654a2810c91384d60f30683d83416866e72d2 (patch)
tree927856f8edcc69434d26dbee938a6c60bf4a431a /config
parent6caf63ec4871a578f6f99c668b67e495ccc2bbf6 (diff)
downloadopenssl-new-b16654a2810c91384d60f30683d83416866e72d2.tar.gz
config, Configure: move the check of removed crypto/ sub-systems
The 'config' script checked for a bunch of crypto/ sub-system directories, and added 'no-' options if they weren't there. We move it to 'Configure' in an effort to simplify 'config' for further work. Note: this is pretty much a historical thing. In modern OpenSSL, it's much simpler to edit the SUBDIRS statement in crypto/build.info. However, it's been claimed the there are those who still remove some of these sub-system sources. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11217)
Diffstat (limited to 'config')
-rwxr-xr-xconfig8
1 files changed, 0 insertions, 8 deletions
diff --git a/config b/config
index e39481ca2a..7dfea22802 100755
--- a/config
+++ b/config
@@ -847,14 +847,6 @@ case "$GUESSOS" in
i386-*) options="$options 386" ;;
esac
-for i in aes aria bf camellia cast des dh dsa ec hmac idea md2 md5 mdc2 rc2 rc4 rc5 ripemd rsa seed sha sm2 sm3 sm4
-do
- if [ ! -d $THERE/crypto/$i ]
- then
- options="$options no-$i"
- fi
-done
-
if [ -z "$OUT" ]; then
OUT="$CC"
fi