Skip to content

Commit

Permalink
[boost-process] Disable on android and uwp
Browse files Browse the repository at this point in the history
It uses 'wordexp.h' which is not available on Android.
It uses parts of WinAPI that are not available on UWP.
  • Loading branch information
Osyotr committed Aug 20, 2024
1 parent e9acea1 commit d096080
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions ports/boost-process/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ vcpkg_from_github(
HEAD_REF master
PATCHES
opt-filesystem.patch

)

set(FEATURE_OPTIONS "")
Expand Down
2 changes: 1 addition & 1 deletion ports/boost-process/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Boost process module",
"homepage": "https://www.boost.org/libs/process",
"license": "BSL-1.0",
"supports": "!emscripten",
"supports": "!uwp & !emscripten & !android",
"dependencies": [
{
"name": "boost-algorithm",
Expand Down
2 changes: 1 addition & 1 deletion ports/boost/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
},
{
"name": "boost-process",
"platform": "!emscripten",
"platform": "!uwp & !emscripten & !android",
"version>=": "1.86.0"
},
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/boost/generate-ports.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ $portData = @{
}
}
};
"boost-process" = @{ "supports" = "!emscripten" };
"boost-process" = @{ "supports" = "!uwp & !emscripten & !android" };
"boost-python" = @{ "supports" = "!uwp & !emscripten & !ios & !android"; "dependencies" = @("python3");};
"boost-random" = @{ "supports" = "!uwp" };
"boost-regex" = @{
Expand Down
2 changes: 1 addition & 1 deletion versions/b-/boost-process.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"versions": [
{
"git-tree": "b1410c520b33697ef6648a1606518dd723e6f49a",
"git-tree": "8d093f051607733ee4c54d25ec38604a3bdbe385",
"version": "1.86.0",
"port-version": 0
},
Expand Down
2 changes: 1 addition & 1 deletion versions/b-/boost.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"versions": [
{
"git-tree": "97ae4fbd084d7b1c1a70862579b4d1d8b1c963f0",
"git-tree": "e16c1af1e47c7b94ac02c8f3c9ec0f4d3ea8f8f6",
"version": "1.86.0",
"port-version": 0
},
Expand Down

0 comments on commit d096080

Please sign in to comment.