-
-
Notifications
You must be signed in to change notification settings - Fork 344
bunch of fixes/changes to make packages build #1006
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
henderkes
wants to merge
21
commits into
main
Choose a base branch
from
henderkes-patch-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
656a58c
remove source dir after successful build in CI environment
henderkes 0247458
we were installing to wrong dir if source name != lib name
henderkes ce44e00
@crazywhalecc how to use patch points to delete source dirs?
henderkes 037d224
why does phpstan think this is necessary?
henderkes e677be7
remove
henderkes 9e051c8
fix: check for link first before checking for is_dir
henderkes e1a14bb
fix implicit include
henderkes 53f7cde
fix swoole compilation with php 8.5.1
henderkes 6b52000
fix downloader selecting drafts
henderkes f7ca621
Test
crazywhalecc 9a681a9
add mariadb mysqlnd plugins
henderkes 09b89a3
WIP: use system libraries for grpc without building our own grpc lib
henderkes e952f1c
we don't even need to build grpc library for grpc extension...
henderkes 5ef4623
grpc will fail for php 8.5, it's not updated yet
henderkes 93a3590
factor grpc extension out to ext-grpc, keep library for now, even tho…
henderkes 2f31226
make grpc php 8.5 compatible
henderkes e7a88f1
enable fat for gmp when next version releases
henderkes 08388c0
force enable tailcall vm with zig
henderkes 7688a55
don't get zig master branch
henderkes 022fdb2
fix no-strip
henderkes a06cc32
pin libpng to released tags, not git
henderkes File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,22 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| namespace SPC\builder\extension; | ||
|
|
||
| use SPC\builder\Extension; | ||
| use SPC\util\CustomExt; | ||
|
|
||
| #[CustomExt('mysqlnd_ed25519')] | ||
| class mysqlnd_ed25519 extends Extension | ||
| { | ||
| public function getConfigureArg(bool $shared = false): string | ||
| { | ||
| return '--with-mysqlnd_ed25519' . ($shared ? '=shared' : ''); | ||
| } | ||
|
|
||
| public function getUnixConfigureArg(bool $shared = false): string | ||
| { | ||
| return $this->getConfigureArg(); | ||
| } | ||
| } |
This file contains hidden or 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,22 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| namespace SPC\builder\extension; | ||
|
|
||
| use SPC\builder\Extension; | ||
| use SPC\util\CustomExt; | ||
|
|
||
| #[CustomExt('mysqlnd_parsec')] | ||
| class mysqlnd_parsec extends Extension | ||
| { | ||
| public function getConfigureArg(bool $shared = false): string | ||
| { | ||
| return '--enable-mysqlnd_parsec' . ($shared ? '=shared' : ''); | ||
| } | ||
|
|
||
| public function getUnixConfigureArg(bool $shared = false): string | ||
| { | ||
| return $this->getConfigureArg(); | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.