-
-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* openssl: Support wasm * fix find linux/version.h * openssl: revert all * openssl3: only wasm static config readonly * fix configure
- Loading branch information
1 parent
6b8cbc6
commit 5a47b59
Showing
2 changed files
with
33 additions
and
4 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
packages/o/openssl3/patches/3.3.2/command-line-length.patch
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl | ||
index 8ddb128..52b9ad6 100644 | ||
--- a/Configurations/unix-Makefile.tmpl | ||
+++ b/Configurations/unix-Makefile.tmpl | ||
@@ -1961,7 +1961,7 @@ EOF | ||
my @objs = map { platform->obj($_) } @{$args{objs}}; | ||
my $deps = join(" \\\n" . ' ' x (length($lib) + 2), | ||
fill_lines(' ', $COLUMNS - length($lib) - 2, @objs)); | ||
- my $max_per_call = 500; | ||
+ my $max_per_call = ($^O eq 'msys') ? 80 : 500; | ||
my @objs_grouped; | ||
push @objs_grouped, join(" ", splice @objs, 0, $max_per_call) while @objs; | ||
my $fill_lib = | ||
|
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