You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

65 lines
2.5 KiB

Index: Configurations/unix-Makefile.tmpl
--- Configurations/unix-Makefile.tmpl.orig 2018-03-27 15:50:37.000000000 +0200
+++ Configurations/unix-Makefile.tmpl 2018-04-15 20:19:36.895516000 +0200
@@ -154,14 +154,14 @@
our $libdir = $config{libdir} || "lib$multilib";
$libdir -}
ENGINESDIR={- use File::Spec::Functions;
- catdir($prefix,$libdir,"engines-$sover") -}
+ catdir($prefix,$libdir,"openssl/engines") -}
# Convenience variable for those who want to set the rpath in shared
# libraries and applications
LIBRPATH=$(INSTALLTOP)/$(LIBDIR)
-MANDIR=$(INSTALLTOP)/share/man
-DOCDIR=$(INSTALLTOP)/share/doc/$(BASENAME)
+MANDIR=$(INSTALLTOP)/man
+DOCDIR=$(INSTALLTOP)/share/openssl/doc/$(BASENAME)
HTMLDIR=$(DOCDIR)/html
# MANSUFFIX is for the benefit of anyone who may want to have a suffix
@@ -327,7 +327,7 @@
uninstall_sw: uninstall_runtime uninstall_engines uninstall_dev
-install_docs: install_man_docs install_html_docs
+install_docs: install_man_docs
uninstall_docs: uninstall_man_docs uninstall_html_docs
$(RM) -r -v $(DESTDIR)$(DOCDIR)
@@ -703,7 +703,7 @@
echo 'exec_prefix=$${prefix}'; \
echo 'libdir=$${exec_prefix}/$(LIBDIR)'; \
echo 'includedir=$${prefix}/include'; \
- echo 'enginesdir=$${libdir}/engines-{- $sover -}'; \
+ echo 'enginesdir=$${libdir}/openssl/engines'; \
echo ''; \
echo 'Name: OpenSSL-libcrypto'; \
echo 'Description: OpenSSL cryptography library'; \
Index: util/process_docs.pl
--- util/process_docs.pl.orig 2018-03-27 15:50:41.000000000 +0200
+++ util/process_docs.pl 2018-04-15 20:24:07.725939000 +0200
@@ -81,7 +81,7 @@
if defined $options{"dry-run"};
}
-my $symlink_exists = eval { symlink("",""); 1 };
+my $link_exists = eval { link("",""); 1 };
foreach my $subdir (keys %{$options{subdir}}) {
my $section = $options{subdir}->{$subdir};
@@ -147,11 +147,11 @@
my $link_file = $_ . $suffix;
my $link_path = catfile($output_dir, $link_file);
if (! $options{remove}) {
- if ($symlink_exists) {
+ if ($link_exists) {
print STDERR "DEBUG: Linking $link_path -> $output_file\n"
if $options{debug};
unless ($options{"dry-run"}) {
- symlink $output_file, $link_path;
+ link $output_file, $link_path;
}
} else {
print STDERR "DEBUG: Copying $output_path to link_path\n"