-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[openssl] Change repo to github and update to 3.0.4 (#25451)
* [openssl] Change repo to github and update to 3.0.4 * version
- Loading branch information
Showing
8 changed files
with
56 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,35 @@ | ||
diff --git a/Configure b/Configure | ||
index faf57b1..690a9b8 100644 | ||
--- a/Configure | ||
+++ b/Configure | ||
@@ -556,7 +556,7 @@ my $list_separator_re = | ||
# (we supported those before the change to "make variable" support. | ||
my %user = ( | ||
AR => env('AR'), | ||
- ARFLAGS => [], | ||
+ ARFLAGS => [ env('ARFLAGS') || () ], | ||
AS => undef, | ||
ASFLAGS => [], | ||
CC => env('CC'), | ||
@@ -569,7 +569,7 @@ my %user = ( | ||
CPPINCLUDES => [], # Alternative for -I | ||
CROSS_COMPILE => env('CROSS_COMPILE'), | ||
HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'), | ||
- LD => undef, | ||
+ LD => env('LD'), | ||
LDFLAGS => [ env('LDFLAGS') || () ], # -L, -Wl, | ||
LDLIBS => [ env('LDLIBS') || () ], # -l | ||
MT => undef, | ||
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf | ||
index 66bc81d..2364633 100644 | ||
--- a/Configurations/10-main.conf | ||
+++ b/Configurations/10-main.conf | ||
@@ -1302,7 +1302,7 @@ my %targets = ( | ||
inherit_from => [ "BASE_Windows" ], | ||
template => 1, | ||
CC => "cl", | ||
- CPP => '"$(CC)" /EP /C', | ||
+ CPP => '$(CC) /EP /C', | ||
CFLAGS => "/W3 /wd4090 /nologo", | ||
coutflag => "/Fo", | ||
LD => "link", | ||
diff --git a/Configure b/Configure | ||
index 8b234f6..e031768 100644 | ||
--- a/Configure | ||
+++ b/Configure | ||
@@ -680,7 +680,7 @@ my $list_separator_re = | ||
# (we supported those before the change to "make variable" support. | ||
my %user = ( | ||
AR => env('AR'), | ||
- ARFLAGS => [], | ||
+ ARFLAGS => [ env('ARFLAGS') || () ], | ||
AS => undef, | ||
ASFLAGS => [], | ||
CC => env('CC'), | ||
@@ -693,7 +693,7 @@ my %user = ( | ||
CPPINCLUDES => [], # Alternative for -I | ||
CROSS_COMPILE => env('CROSS_COMPILE'), | ||
HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'), | ||
- LD => undef, | ||
+ LD => env('LD'), | ||
LDFLAGS => [ env('LDFLAGS') || () ], # -L, -Wl, | ||
LDLIBS => [ env('LDLIBS') || () ], # -l | ||
MT => undef, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters