-
-
Notifications
You must be signed in to change notification settings - Fork 351
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
Changes from all commits
656a58c
0247458
ce44e00
037d224
e677be7
9e051c8
e1a14bb
53f7cde
6b52000
f7ca621
9a681a9
09b89a3
e952f1c
5ef4623
93a3590
2f31226
e7a88f1
08388c0
7688a55
022fdb2
a06cc32
64f7a35
d1b1949
fff2484
559a290
890ff47
54001ab
1be353f
76025b9
6bbb3c9
f8b0c2c
94644d3
3a17cec
34910d1
d902e70
af75ffa
6cf4c40
372760e
b3c4502
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -361,6 +361,9 @@ | |
| "source": "libargon2", | ||
| "static-libs-unix": [ | ||
| "libargon2.a" | ||
| ], | ||
| "lib-suggests": [ | ||
| "libsodium" | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why it depends on libsodium?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't depend on libsodium, but because they implement a lot of the same symbols, this orders them correctly. I got rid of the patch in password_argon2.php instead as it failed with -lsodium -largon2. Because this now suggests libsodium, meaning libsodium may contain symbols this library "relies on", SPC makes sure that libsodium comes after libargon2 everywhere. Because libargon2 implements all symbols of libsodium, no further symbols will be needed during linking and libsodium is ignored. |
||
| ] | ||
| }, | ||
| "libavif": { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -161,6 +161,18 @@ | |
| "path": "LICENSE" | ||
| } | ||
| }, | ||
| "ext-grpc": { | ||
| "type": "url", | ||
| "url": "https://pecl.php.net/get/grpc", | ||
| "path": "php-src/ext/grpc", | ||
| "filename": "grpc.tgz", | ||
| "license": { | ||
| "type": "file", | ||
| "path": [ | ||
| "LICENSE" | ||
| ] | ||
| } | ||
| }, | ||
| "ext-imagick": { | ||
| "type": "url", | ||
| "url": "https://pecl.php.net/get/imagick", | ||
|
|
@@ -680,19 +692,20 @@ | |
| } | ||
| }, | ||
| "libpng": { | ||
| "type": "git", | ||
| "url": "https://github.com/glennrp/libpng.git", | ||
| "rev": "libpng16", | ||
| "type": "ghtagtar", | ||
| "repo": "pnggroup/libpng", | ||
| "match": "v1\\.6\\.\\d+", | ||
| "query": "?per_page=150", | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this necessary, or is it only libpng that needs this?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Only libpng needs this. They released a lot of v1.7 betas, so the latest 1.6 version is only on page 3. |
||
| "provide-pre-built": true, | ||
| "license": { | ||
| "type": "file", | ||
| "path": "LICENSE" | ||
| } | ||
| }, | ||
| "librabbitmq": { | ||
| "type": "git", | ||
| "url": "https://github.com/alanxz/rabbitmq-c.git", | ||
| "rev": "master", | ||
| "type": "ghtar", | ||
| "repo": "alanxz/rabbitmq-c", | ||
| "prefer-stable": true, | ||
| "license": { | ||
| "type": "file", | ||
| "path": "LICENSE" | ||
|
|
@@ -709,7 +722,7 @@ | |
| "libsodium": { | ||
| "type": "ghrel", | ||
| "repo": "jedisct1/libsodium", | ||
| "match": "libsodium-\\d+(\\.\\d+)*\\.tar\\.gz", | ||
| "match": "libsodium-(?!1\\.0\\.21)\\d+(\\.\\d+)*\\.tar\\.gz", | ||
| "prefer-stable": true, | ||
| "provide-pre-built": true, | ||
| "license": { | ||
|
|
@@ -881,6 +894,24 @@ | |
| "path": "LICENSE" | ||
| } | ||
| }, | ||
| "mysqlnd_ed25519": { | ||
| "type": "pie", | ||
| "repo": "mariadb/mysqlnd_ed25519", | ||
| "path": "php-src/ext/mysqlnd_ed25519", | ||
| "license": { | ||
| "type": "file", | ||
| "path": "LICENSE" | ||
| } | ||
| }, | ||
| "mysqlnd_parsec": { | ||
| "type": "pie", | ||
| "repo": "mariadb/mysqlnd_parsec", | ||
| "path": "php-src/ext/mysqlnd_parsec", | ||
| "license": { | ||
| "type": "file", | ||
| "path": "LICENSE" | ||
| } | ||
| }, | ||
| "ncurses": { | ||
| "type": "filelist", | ||
| "url": "https://ftp.gnu.org/pub/gnu/ncurses/", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.