如何在ubuntu上安装旧版本的openssl



我下载了OpenSSL 1.0.1版本我试着用以下命令安装它:

$ ./config --prefix=/old-openssl-version-1.0.0g --openssldir=/old-openssl-version-1.0.1
$ make
$ make test

但当我进入make测试时,我只收到这个错误:

POD文档在/usr/bin/pod2man第69行出现语法错误。
make:***[Makefile:595:install_docs]错误255

这是/usr/bin/pod2man:

use strict;
use warnings;
use Getopt::Long qw(GetOptions);
use Pod::Man ();
use Pod::Usage qw(pod2usage);
use strict;
# Clean up $0 for error reporting.
$0 =~ s%.*/%%;
# Insert -- into @ARGV before any single dash argument to hide it from
# Getopt::Long; we want to interpret it as meaning stdin.
my $stdin;
@ARGV = map { $_ eq '-' && !$stdin++ ? ('--', $_) : $_ } @ARGV;

我在第69行my $stdin;上有错误

有人能帮我解决这个问题吗?如果您对安装OpenSSL 1.0.1版本有更好的想法,它也会有所帮助。

试试这个:

sudo apt安装libssl1.0-dev

相关内容

  • 没有找到相关文章

最新更新