Skip to content

Commit 1f49755

Browse files
committed
Merge branch 'testing' into development
2 parents e0d354a + f8a0225 commit 1f49755

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

Release/CMakeLists.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,15 @@ else()
189189
endif()
190190

191191
set(Casablanca_LIBRARY ${LIB}cpprest)
192-
set(Casablanca_LIBRARIES ${Casablanca_LIBRARY} ${Boost_LIBRARIES} ${Boost_FRAMEWORK})
192+
set(Casablanca_LIBRARIES ${Casablanca_LIBRARY}
193+
${Boost_FILESYSTEM_LIBRARY}
194+
${Boost_SYSTEM_LIBRARY}
195+
${Boost_THREAD_LIBRARY}
196+
${Boost_ATOMIC_LIBRARY}
197+
${Boost_CHRONO_LIBRARY}
198+
${Boost_RANDOM_LIBRARY}
199+
${Boost_REGEX_LIBRARY}
200+
${Boost_FRAMEWORK})
193201

194202
# Everything in the project needs access to the casablanca include directories
195203
include_directories(${Casablanca_INCLUDE_DIRS})

Release/src/http/client/http_client_asio.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ class asio_connection
7676
public:
7777
asio_connection(boost::asio::io_service& io_service, bool start_with_ssl, const std::function<void(boost::asio::ssl::context&)>& ssl_context_callback) :
7878
m_socket(io_service),
79+
m_ssl_context_callback(ssl_context_callback),
7980
m_pool_timer(io_service),
8081
m_is_reused(false),
81-
m_keep_alive(true),
82-
m_ssl_context_callback(ssl_context_callback)
82+
m_keep_alive(true)
8383
{
8484
if (start_with_ssl)
8585
{

Release/src/websockets/client/ws_client_wspp.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#pragma GCC diagnostic ignored "-Wconversion"
3636
#pragma GCC diagnostic ignored "-Wunused-parameter"
3737
#pragma GCC diagnostic ignored "-Wignored-qualifiers"
38+
#pragma GCC diagnostic ignored "-Wcast-qual"
3839
#include <websocketpp/config/asio_client.hpp>
3940
#include <websocketpp/config/asio_no_tls_client.hpp>
4041
#include <websocketpp/client.hpp>
@@ -774,4 +775,4 @@ websocket_callback_client::websocket_callback_client(websocket_client_config con
774775

775776
}}}
776777

777-
#endif
778+
#endif

Release/tests/functional/http/client/proxy_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ TEST_FIXTURE(uri_address, no_proxy_options_on_winrt)
9090

9191
#ifndef __cplusplus_winrt
9292
// Can't specify a proxy with WinRT implementation.
93-
TEST_FIXTURE(uri_address, http_proxy_with_credentials)
93+
TEST_FIXTURE(uri_address, http_proxy_with_credentials, "Ignore:Linux", "Github 53", "Ignore:Apple", "Github 53", "Ignore:Android", "Github 53", "Ignore:IOS", "Github 53")
9494
{
9595
uri u(U("http://netproxy.redmond.corp.microsoft.com"));
9696

@@ -169,4 +169,4 @@ TEST_FIXTURE(uri_address, https_proxy, "Ignore", "Manual")
169169

170170
} // SUITE(proxy_tests)
171171

172-
}}}}
172+
}}}}

0 commit comments

Comments
 (0)