diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index adbf34fe..07b458a7 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -630,7 +630,7 @@ install_man_docs: @\ OUTSUFFIX='.$${SEC}$(MANSUFFIX)'; \ OUTTOP="$(DESTDIR)$(MANDIR)"; \ - GENERATE='pod2man --name=$$NAME --section=$$SEC --center=OpenSSL --release=$(VERSION)'; \ + GENERATE='pod2man --utf8 --name=$$NAME --section=$$SEC --center=OpenSSL --release=$(VERSION)'; \ $(PROCESS_PODS) uninstall_man_docs: diff --git a/crypto/err/err.c b/crypto/err/err.c index 1a0ba825..1ce6b57a 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -74,7 +74,7 @@ static ERR_STRING_DATA ERR_str_libraries[] = { {ERR_PACK(ERR_LIB_SKF, 0, 0), "SKF routines"}, {ERR_PACK(ERR_LIB_SOF, 0, 0), "SOF routines"}, #ifndef OPENSSL_NO_BASE58 - {ERR_PACK(ERR_LIB_BASE58, 0, 0), "BASE58 routines"}, + {ERR_PACK(ERR_LIB_BASE58, 0, 0), "BASE58 routines"}, #endif {0, NULL}, }; diff --git a/util/process_docs.pl b/util/process_docs.pl index 9834dbe3..368ecb6b 100644 --- a/util/process_docs.pl +++ b/util/process_docs.pl @@ -92,7 +92,7 @@ foreach my $subdir (keys %{$options{subdir}}) { my $name = uc $podname; my $suffix = { man => ".$podinfo{section}", html => ".html" } -> {$options{type}}; - my $generate = { man => "pod2man --name=$name --section=$podinfo{section} --center=OpenSSL --release=$config{version} \"$podpath\"", + my $generate = { man => "pod2man --utf8 --name=$name --section=$podinfo{section} --center=OpenSSL --release=$config{version} \"$podpath\"", html => "pod2html \"--podroot=$options{sourcedir}\" --htmldir=$updir --podpath=apps:crypto:ssl \"--infile=$podpath\" \"--title=$podname\"" } -> {$options{type}}; my $output_dir = catdir($options{destdir}, "man$podinfo{section}");