aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilly O'Neal <bion@microsoft.com>2020-03-20 16:03:16 -0700
committerGitHub <noreply@github.com>2020-03-20 16:03:16 -0700
commit056e9517ec7c461cdfabe8ff73124325708a4723 (patch)
tree1feaef2f4165766455775f9571d188d2e1f9a3a3
parent0a64f3a1f6868f70cfbee038c2646d10085d0caf (diff)
downloadvcpkg-056e9517ec7c461cdfabe8ff73124325708a4723.tar.gz
vcpkg-056e9517ec7c461cdfabe8ff73124325708a4723.zip
[cpprestsdk] Disable websockets by default. (#10478)
* [cpprestsdk] Disable websockets by default. The websockets backend cpprestsdk uses is websocketpp, which was last committed to in late 2018 and appears defunct. Additionally, the websockets feature brings an otherwise unnecessary Boost dependency on Windows which takes a relatively long time to build. Customers who still want the websockets bits can turn on the optional feature. * Add dependency to signalr.
-rw-r--r--ports/cpprestsdk/CONTROL4
-rw-r--r--ports/signalrclient/CONTROL4
2 files changed, 4 insertions, 4 deletions
diff --git a/ports/cpprestsdk/CONTROL b/ports/cpprestsdk/CONTROL
index b0d8d59ed..6e4b6d5a1 100644
--- a/ports/cpprestsdk/CONTROL
+++ b/ports/cpprestsdk/CONTROL
@@ -1,5 +1,5 @@
Source: cpprestsdk
-Version: 2.10.15
+Version: 2.10.15-1
Build-Depends: openssl (!uwp&!windows), boost-system (!uwp&!windows),
boost-date-time (!uwp&!windows), boost-regex (!uwp&!windows), boost-thread (!uwp&!windows),
boost-filesystem (!uwp&!windows), boost-random (!uwp&!windows), boost-chrono (!uwp&!windows),
@@ -10,7 +10,7 @@ Description: C++11 JSON, REST, and OAuth library
Default-Features: default-features
Feature: default-features
-Build-Depends: cpprestsdk[brotli] (windows), cpprestsdk[core,compression,websockets]
+Build-Depends: cpprestsdk[brotli] (windows), cpprestsdk[core,compression]
Description: Features installed by default
Feature: compression
diff --git a/ports/signalrclient/CONTROL b/ports/signalrclient/CONTROL
index 85e4427d5..d8939e177 100644
--- a/ports/signalrclient/CONTROL
+++ b/ports/signalrclient/CONTROL
@@ -1,5 +1,5 @@
Source: signalrclient
-Version: 1.0.0-beta1-7
-Build-Depends: cpprestsdk, openssl
+Version: 1.0.0-beta1-8
+Build-Depends: cpprestsdk[default-features,websockets], openssl
Homepage: https://github.com/aspnet/SignalR-Client-Cpp
Description: C++ client for SignalR.