aboutsummaryrefslogtreecommitdiff
path: root/ports/chromium-base
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2020-09-24 15:15:06 -0700
committerGitHub <noreply@github.com>2020-09-24 15:15:06 -0700
commit4cbbcbddfd42d94d6d8ee6c8b6ad00ef6a0927d3 (patch)
tree371509cc59c45895c85e5e049aaa2cd9c39cc7b0 /ports/chromium-base
parentc1acea1f044d3300b0c3791c2ce74d53e5a15548 (diff)
downloadvcpkg-4cbbcbddfd42d94d6d8ee6c8b6ad00ef6a0927d3.tar.gz
vcpkg-4cbbcbddfd42d94d6d8ee6c8b6ad00ef6a0927d3.zip
[vcpkg macos ci] Switch to using our own base boxes, to fix bringing up mac machines (#13619)
* [vcpkg ci:osx] Remove brew install * add instructions for creating a new vagrant box * fix the vagrant scripts for the new box * finish fixing the setup * [mecab jxrlib] fix ports for CI mecab needed to use an actual ref that wasn't master, and jxrlib needed a patch for xcode 12 CLTs. Additionally, this fixes the mecab version to be a date, the date of the last commit, since `1.0` is not the correct version (mecab doesn't have released versions) * [many ports] fix compile with Xcode 12 CLTs This mostly means fixing errors on implicit-function-declaration, and removing some Werrors * alac-decoder * apr * argtable2 * arrow * hyperscan * mcpp * minizip * mosquitto * stormlib * [many ports] even more Xcode 12 CLT fixes * [jxrlib darknet] fix the last ports! (hopefully) * CRs, plus minor wip changes to osx scripts
Diffstat (limited to 'ports/chromium-base')
-rw-r--r--ports/chromium-base/CONTROL3
-rw-r--r--ports/chromium-base/portfile.cmake5
2 files changed, 5 insertions, 3 deletions
diff --git a/ports/chromium-base/CONTROL b/ports/chromium-base/CONTROL
index 91b059018..589f60a26 100644
--- a/ports/chromium-base/CONTROL
+++ b/ports/chromium-base/CONTROL
@@ -1,5 +1,6 @@
Source: chromium-base
Version: 86.0.4199.1
+Port-Version: 1
Homepage: https://chromium.googlesource.com/chromium/src
Description: Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web.
-Supports: x64 & (osx|windows|linux) & !uwp \ No newline at end of file
+Supports: x64 & (osx|windows|linux) & !uwp
diff --git a/ports/chromium-base/portfile.cmake b/ports/chromium-base/portfile.cmake
index 409c2d589..6f6d9728c 100644
--- a/ports/chromium-base/portfile.cmake
+++ b/ports/chromium-base/portfile.cmake
@@ -68,7 +68,8 @@ file(COPY "${RES}/test_fonts" DESTINATION "${SOURCE_PATH}/third_party")
set(OPTIONS "\
use_custom_libcxx=false \
clang_use_chrome_plugins=false \
- forbid_non_component_debug_builds=false")
+ forbid_non_component_debug_builds=false \
+ treat_warnings_as_errors=false")
set(DEFINITIONS "")
if(WIN32)
@@ -76,7 +77,7 @@ if(WIN32)
# https://developer.microsoft.com/en-us/windows/downloads/windows-10-sdk
SET(VCPKG_POLICY_SKIP_ARCHITECTURE_CHECK enabled)
set(ENV{DEPOT_TOOLS_WIN_TOOLCHAIN} 0)
- set(OPTIONS "${OPTIONS} treat_warnings_as_errors=false use_lld=false")
+ set(OPTIONS "${OPTIONS} use_lld=false")
endif()
if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL Linux)