41 lines
1.8 KiB
Diff
41 lines
1.8 KiB
Diff
diff -up openssl-1.1.1f/Configurations/10-main.conf.build openssl-1.1.1f/Configurations/10-main.conf
|
|
--- openssl-1.1.1f/Configurations/10-main.conf.build 2020-03-31 14:17:45.000000000 +0200
|
|
+++ openssl-1.1.1f/Configurations/10-main.conf 2020-04-07 16:42:10.920546387 +0200
|
|
@@ -678,6 +678,7 @@ my %targets = (
|
|
cxxflags => add("-m64"),
|
|
lib_cppflags => add("-DL_ENDIAN"),
|
|
perlasm_scheme => "linux64le",
|
|
+ multilib => "64",
|
|
},
|
|
|
|
"linux-armv4" => {
|
|
@@ -718,6 +719,7 @@ my %targets = (
|
|
"linux-aarch64" => {
|
|
inherit_from => [ "linux-generic64", asm("aarch64_asm") ],
|
|
perlasm_scheme => "linux64",
|
|
+ multilib => "64",
|
|
},
|
|
"linux-arm64ilp32" => { # https://wiki.linaro.org/Platform/arm64-ilp32
|
|
inherit_from => [ "linux-generic32", asm("aarch64_asm") ],
|
|
diff -up openssl-1.1.1f/Configurations/unix-Makefile.tmpl.build openssl-1.1.1f/Configurations/unix-Makefile.tmpl
|
|
--- openssl-1.1.1f/Configurations/unix-Makefile.tmpl.build 2020-04-07 16:42:10.920546387 +0200
|
|
+++ openssl-1.1.1f/Configurations/unix-Makefile.tmpl 2020-04-07 16:44:23.539142108 +0200
|
|
@@ -823,7 +823,7 @@ uninstall_runtime_libs:
|
|
install_man_docs:
|
|
@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
|
|
@$(ECHO) "*** Installing manpages"
|
|
- $(PERL) $(SRCDIR)/util/process_docs.pl \
|
|
+ TZ=UTC $(PERL) $(SRCDIR)/util/process_docs.pl \
|
|
"--destdir=$(DESTDIR)$(MANDIR)" --type=man --suffix=$(MANSUFFIX)
|
|
|
|
uninstall_man_docs:
|
|
@@ -835,7 +835,7 @@ uninstall_man_docs:
|
|
install_html_docs:
|
|
@[ -n "$(INSTALLTOP)" ] || (echo INSTALLTOP should not be empty; exit 1)
|
|
@$(ECHO) "*** Installing HTML manpages"
|
|
- $(PERL) $(SRCDIR)/util/process_docs.pl \
|
|
+ TZ=UTC $(PERL) $(SRCDIR)/util/process_docs.pl \
|
|
"--destdir=$(DESTDIR)$(HTMLDIR)" --type=html
|
|
|
|
uninstall_html_docs:
|