Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tor-browser-build
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Georg Koppen
tor-browser-build
Commits
52916591
Commit
52916591
authored
4 years ago
by
Matthew Finkel
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'boklmtpo/bug_33805_v2'
parents
36364170
31c29ff8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
projects/openssl/build
+0
-1
0 additions, 1 deletion
projects/openssl/build
projects/openssl/config
+0
-2
0 additions, 2 deletions
projects/openssl/config
projects/openssl/escape-openssldir.patch
+0
-28
0 additions, 28 deletions
projects/openssl/escape-openssldir.patch
with
0 additions
and
31 deletions
projects/openssl/build
+
0
−
1
View file @
52916591
...
...
@@ -14,7 +14,6 @@ export CC='gcc -m32'
export
CC
=
"
cc [% c(
"
var
/
FLAGS
"
) %]
"
[
%
END
-%
]
[
%
IF
c
(
"
var/windows
"
)
-%
]
patch
-
p1
<
$
rootdir
/
escape
-
openssldir
.
patch
patch
-
p1
<
$
rootdir
/
use
-
SOURCE_DATE_EPOCH
.
patch
[
%
END
-%
]
# OpenSSL expects the NDK home to include the pre-assembled architecture directory
...
...
This diff is collapsed.
Click to expand it.
projects/openssl/config
+
0
−
2
View file @
52916591
...
...
@@ -32,7 +32,5 @@ input_files:
project
:
'
[%
c("var/compiler")
%]'
-
URL
:
'
https://www.openssl.org/source/openssl-[%
c("version")
%].tar.gz'
sha256sum
:
186c6bfe6ecfba7a5b48c47f8a1673d0f3b0e5ba2e25602dd23b629975da3f35
-
filename
:
escape-openssldir.patch
enable
:
'
[%
c("var/windows")
%]'
-
filename
:
use-SOURCE_DATE_EPOCH.patch
enable
:
'
[%
c("var/windows")
%]'
This diff is collapsed.
Click to expand it.
projects/openssl/escape-openssldir.patch
deleted
100644 → 0
+
0
−
28
View file @
36364170
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl
index 7db7578a4b..e5ba20b589 100644
--- a/Configurations/unix-Makefile.tmpl
+++ b/Configurations/unix-Makefile.tmpl
@@ -215,6 +215,7 @@
INSTALLTOP_dev={- # $prefix is used in the OPENSSLDIR perl snippet
$prefix_dev -}
INSTALLTOP_dir={- my $x = File::Spec::Win32->canonpath($prefix_dir);
$x =~ s|\\|/|g;
+ $x =~ s/([ \(\)])/\\$1/g;
$x -}
OPENSSLDIR_dev={- #
# The logic here is that if no --openssldir was given,
@@ -239,6 +240,7 @@
OPENSSLDIR_dev={- #
$openssldir_dev -}
OPENSSLDIR_dir={- my $x = File::Spec::Win32->canonpath($openssldir_dir);
$x =~ s|\\|/|g;
+ $x =~ s/([ \(\)])/\\$1/g;
$x -}
LIBDIR={- our $libdir = $config{libdir} || "lib";
File::Spec::Win32->file_name_is_absolute($libdir) ? "" : $libdir -}
@@ -253,6 +255,7 @@
ENGINESDIR_dev={- use File::Spec::Win32;
$enginesdir_dev -}
ENGINESDIR_dir={- my $x = File::Spec::Win32->canonpath($enginesdir_dir);
$x =~ s|\\|/|g;
+ $x =~ s/([ \(\)])/\\$1/g;
$x -}
# In a Windows environment, $(DESTDIR) is harder to contatenate with other
# directory variables, because both may contain devices. What we do here is
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment