[openssl] OpenSSL_1_1_1-stable update
Richard Levitte
levitte at openssl.org
Mon May 27 17:45:54 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 87f533c9f622d5f44170fc2aed0d341187d10878 (commit)
from aa085f8c10f8d79f80a3bae02936492604b0492d (commit)
- Log -----------------------------------------------------------------
commit 87f533c9f622d5f44170fc2aed0d341187d10878
Author: Richard Levitte <levitte at openssl.org>
Date: Mon May 27 19:16:14 2019 +0200
Configure: make 'enable-buildtest-c++' work (not be a regexp)
OpenSSL 1.1.1's Configure treats the strings in @disablables as regexps,
which means that the 'buildtest-c++' option needs a bit of escaping to
be interpreted as intended.
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9016)
-----------------------------------------------------------------------
Summary of changes:
Configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Configure b/Configure
index b220337..254b04c 100755
--- a/Configure
+++ b/Configure
@@ -332,7 +332,7 @@ my @disablables = (
"autoload-config",
"bf",
"blake2",
- "buildtest-c++",
+ "buildtest-c\\+\\+",
"camellia",
"capieng",
"cast",
More information about the openssl-commits
mailing list