diff options
author | djm <> | 2010-10-06 22:57:46 +0000 |
---|---|---|
committer | djm <> | 2010-10-06 22:57:46 +0000 |
commit | 9b33e0a4893772bd3689c8403a7754593410469a (patch) | |
tree | 9b04e95e5f06db0c684af0ddf591d406d701cbf2 /src/lib/libcrypto/perlasm | |
parent | d98f5be34ed52ab16dd147ef017c75cafb7bfd35 (diff) | |
download | openbsd-9b33e0a4893772bd3689c8403a7754593410469a.tar.gz openbsd-9b33e0a4893772bd3689c8403a7754593410469a.tar.bz2 openbsd-9b33e0a4893772bd3689c8403a7754593410469a.zip |
More OpenSSL fixes:
- Update local engines for the EVP API change (len u_int => size_t)
- Use hw_cryptodev.c instead of eng_cryptodev.c
- Make x86_64-xlate.pl always write to the output file and not stdout,
fixing "make -j" builds (spotted by naddy@)
ok naddy@
Diffstat (limited to 'src/lib/libcrypto/perlasm')
-rwxr-xr-x | src/lib/libcrypto/perlasm/x86_64-xlate.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/perlasm/x86_64-xlate.pl b/src/lib/libcrypto/perlasm/x86_64-xlate.pl index 8153a92a7b..d66ad24095 100755 --- a/src/lib/libcrypto/perlasm/x86_64-xlate.pl +++ b/src/lib/libcrypto/perlasm/x86_64-xlate.pl | |||
@@ -66,7 +66,7 @@ if ($flavour =~ /\./) { $output = $flavour; undef $flavour; } | |||
66 | my ($outdev,$outino,@junk)=stat($output); | 66 | my ($outdev,$outino,@junk)=stat($output); |
67 | 67 | ||
68 | open STDOUT,">$output" || die "can't open $output: $!" | 68 | open STDOUT,">$output" || die "can't open $output: $!" |
69 | if ($stddev!=$outdev || $stdino!=$outino); | 69 | if (1 || $stddev!=$outdev || $stdino!=$outino); |
70 | } | 70 | } |
71 | 71 | ||
72 | my $gas=1; $gas=0 if ($output =~ /\.asm$/); | 72 | my $gas=1; $gas=0 if ($output =~ /\.asm$/); |