diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-06 16:46:56 +0200 |
---|---|---|
committer | Todd Short <todd.short@me.com> | 2023-08-04 19:34:21 +0200 |
commit | 7c729851d169f30d9e0c0ad6e7c1cf6cefb37935 (patch) | |
tree | 07d5cd7931ba41c1a0a437142a010cd610e321ec /util | |
parent | asn1: add ASN1_STRING_set() check result (diff) | |
download | openssl-7c729851d169f30d9e0c0ad6e7c1cf6cefb37935.tar.xz openssl-7c729851d169f30d9e0c0ad6e7c1cf6cefb37935.zip |
Add hurd-x86_64 support
This also upgrades flags similarly to the Linux configuration.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
Reviewed-by: Todd Short <todd.short@me.com>
(Merged from https://github.com/openssl/openssl/pull/20896)
Diffstat (limited to 'util')
-rwxr-xr-x | util/perl/OpenSSL/config.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/perl/OpenSSL/config.pm b/util/perl/OpenSSL/config.pm index fef32c9323..6b2cd9b9fb 100755 --- a/util/perl/OpenSSL/config.pm +++ b/util/perl/OpenSSL/config.pm @@ -92,7 +92,8 @@ my $guess_patterns = [ [ 'IRIX64:.*', 'mips4-sgi-irix64' ], [ 'Linux:[2-9]\..*', '${MACHINE}-whatever-linux2' ], [ 'Linux:1\..*', '${MACHINE}-whatever-linux1' ], - [ 'GNU.*', 'hurd-x86' ], + [ 'GNU:.*86-AT386', 'hurd-x86' ], + [ 'GNU:.*86_64-AT386', 'hurd-x86_64' ], [ 'LynxOS:.*', '${MACHINE}-lynx-lynxos' ], # BSD/OS always says 386 [ 'BSD\/OS:4\..*', 'i486-whatever-bsdi4' ], |