Skip to content
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

[pcre] Fix android NDK r26 #38505

Merged
merged 1 commit into from
May 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ index 2c3a309..cdd480f 100644
-CHECK_FUNCTION_EXISTS(strtoq HAVE_STRTOQ)
-CHECK_FUNCTION_EXISTS(_strtoi64 HAVE__STRTOI64)
+CHECK_SYMBOL_EXISTS(bcopy strings.h HAVE_BCOPY)
+CHECK_SYMBOL_EXISTS(memmove strings.h HAVE_MEMMOVE)
+CHECK_SYMBOL_EXISTS(strerror strings.h HAVE_STRERROR)
+CHECK_SYMBOL_EXISTS(memmove string.h HAVE_MEMMOVE)
+CHECK_SYMBOL_EXISTS(strerror string.h HAVE_STRERROR)
+CHECK_SYMBOL_EXISTS(strtoll stdlib.h HAVE_STRTOLL)
+CHECK_SYMBOL_EXISTS(strtoq stdlib.h HAVE_STRTOQ)
+CHECK_SYMBOL_EXISTS(_strtoi64 stdlib.h HAVE__STRTOI64)
Expand Down
2 changes: 1 addition & 1 deletion ports/pcre/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pcre",
"version": "8.45",
"port-version": 5,
"port-version": 6,
"description": "Perl Compatible Regular Expressions",
"homepage": "https://www.pcre.org/",
"license": null,
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -6698,7 +6698,7 @@
},
"pcre": {
"baseline": "8.45",
"port-version": 5
"port-version": 6
},
"pcre2": {
"baseline": "10.43",
Expand Down
5 changes: 5 additions & 0 deletions versions/p-/pcre.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "50cd82cb1c716b4c31687b01c009a751f4259c8e",
"version": "8.45",
"port-version": 6
},
{
"git-tree": "7c8089ce40f585844a2ae5b9c80ba095b172d53d",
"version": "8.45",
Expand Down