diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-cpp/websocketpp/files | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-cpp/websocketpp/files')
6 files changed, 0 insertions, 270 deletions
diff --git a/dev-cpp/websocketpp/files/websocketpp-0.7.0-cmake-install.patch b/dev-cpp/websocketpp/files/websocketpp-0.7.0-cmake-install.patch deleted file mode 100644 index 4548c650759d..000000000000 --- a/dev-cpp/websocketpp/files/websocketpp-0.7.0-cmake-install.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index f60caa1..9ff2211 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -15,13 +15,20 @@ set (WEBSOCKETPP_VERSION ${WEBSOCKETPP_MAJOR_VERSION}.${WEBSOCKETPP_MINOR_VERSIO - - set_property(GLOBAL PROPERTY USE_FOLDERS ON) - -+get_property(LIB64 GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS) -+if ("${LIB64}" STREQUAL "TRUE") -+ set(LIBSUFFIX 64) -+else() -+ set(LIBSUFFIX "") -+endif() -+ - set(INSTALL_INCLUDE_DIR include CACHE PATH "Installation directory for header files") -+set(LIB_INSTALL_DIR "lib${LIB_SUFFIX}") - if (WIN32 AND NOT CYGWIN) -- set (DEF_INSTALL_CMAKE_DIR cmake) -+ set (INSTALL_CMAKE_DIR cmake) - else () -- set (DEF_INSTALL_CMAKE_DIR lib/cmake/websocketpp) -+ set (INSTALL_CMAKE_DIR ${LIB_INSTALL_DIR}/cmake/websocketpp) - endif () --set (INSTALL_CMAKE_DIR ${DEF_INSTALL_CMAKE_DIR} CACHE PATH "Installation directory for CMake files") - - # Make relative paths absolute (needed later on) - foreach (p INCLUDE CMAKE) diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.1-disable-test_transport-test_transport_asio_timers.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.1-disable-test_transport-test_transport_asio_timers.patch deleted file mode 100644 index 8d6c93fcec30..000000000000 --- a/dev-cpp/websocketpp/files/websocketpp-0.8.1-disable-test_transport-test_transport_asio_timers.patch +++ /dev/null @@ -1,46 +0,0 @@ ---- a/test/transport/CMakeLists.txt -+++ b/test/transport/CMakeLists.txt -@@ -1,24 +1,24 @@ - if (OPENSSL_FOUND) - --# Test transport integration --file (GLOB SOURCE integration.cpp) -- --init_target (test_transport) --build_test (${TARGET_NAME} ${SOURCE}) --link_boost () --link_openssl() --final_target () --set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "test") -- --# Test transport asio timers --file (GLOB SOURCE asio/timers.cpp) -- --init_target (test_transport_asio_timers) --build_test (${TARGET_NAME} ${SOURCE}) --link_boost () --link_openssl() --final_target () --set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "test") -+## Test transport integration -+#file (GLOB SOURCE integration.cpp) -+# -+#init_target (test_transport) -+#build_test (${TARGET_NAME} ${SOURCE}) -+#link_boost () -+#link_openssl() -+#final_target () -+#set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "test") -+# -+## Test transport asio timers -+#file (GLOB SOURCE asio/timers.cpp) -+# -+#init_target (test_transport_asio_timers) -+#build_test (${TARGET_NAME} ${SOURCE}) -+#link_boost () -+#link_openssl() -+#final_target () -+#set_target_properties(${TARGET_NAME} PROPERTIES FOLDER "test") - - # Test transport asio security - file (GLOB SOURCE asio/security.cpp) diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.2-c++20-compat.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.2-c++20-compat.patch deleted file mode 100644 index 2989acd4a0bd..000000000000 --- a/dev-cpp/websocketpp/files/websocketpp-0.8.2-c++20-compat.patch +++ /dev/null @@ -1,94 +0,0 @@ -From 3197a520eb4c1e4754860441918a5930160373eb Mon Sep 17 00:00:00 2001 -From: Peter Thorson <git@zaphoyd.com> -Date: Tue, 29 Jun 2021 09:13:12 -0500 -Subject: [PATCH] [core] Remove the use of simple template ids as they have - been removed in c++20. - https://timsong-cpp.github.io/cppwp/n4861/diff.cpp17.class#2 references #991 - ---- a/websocketpp/endpoint.hpp -+++ b/websocketpp/endpoint.hpp -@@ -111,7 +111,7 @@ class endpoint : public config::transport_type, public config::endpoint_base { - - - /// Destructor -- ~endpoint<connection,config>() {} -+ ~endpoint() {} - - #ifdef _WEBSOCKETPP_DEFAULT_DELETE_FUNCTIONS_ - // no copy constructor because endpoints are not copyable ---- a/websocketpp/logger/basic.hpp -+++ b/websocketpp/logger/basic.hpp -@@ -58,33 +58,33 @@ namespace log { - template <typename concurrency, typename names> - class basic { - public: -- basic<concurrency,names>(channel_type_hint::value h = -+ basic(channel_type_hint::value h = - channel_type_hint::access) - : m_static_channels(0xffffffff) - , m_dynamic_channels(0) - , m_out(h == channel_type_hint::error ? &std::cerr : &std::cout) {} - -- basic<concurrency,names>(std::ostream * out) -+ basic(std::ostream * out) - : m_static_channels(0xffffffff) - , m_dynamic_channels(0) - , m_out(out) {} - -- basic<concurrency,names>(level c, channel_type_hint::value h = -+ basic(level c, channel_type_hint::value h = - channel_type_hint::access) - : m_static_channels(c) - , m_dynamic_channels(0) - , m_out(h == channel_type_hint::error ? &std::cerr : &std::cout) {} - -- basic<concurrency,names>(level c, std::ostream * out) -+ basic(level c, std::ostream * out) - : m_static_channels(c) - , m_dynamic_channels(0) - , m_out(out) {} - - /// Destructor -- ~basic<concurrency,names>() {} -+ ~basic() {} - - /// Copy constructor -- basic<concurrency,names>(basic<concurrency,names> const & other) -+ basic(basic<concurrency,names> const & other) - : m_static_channels(other.m_static_channels) - , m_dynamic_channels(other.m_dynamic_channels) - , m_out(other.m_out) -@@ -97,7 +97,7 @@ class basic { - - #ifdef _WEBSOCKETPP_MOVE_SEMANTICS_ - /// Move constructor -- basic<concurrency,names>(basic<concurrency,names> && other) -+ basic(basic<concurrency,names> && other) - : m_static_channels(other.m_static_channels) - , m_dynamic_channels(other.m_dynamic_channels) - , m_out(other.m_out) ---- a/websocketpp/roles/server_endpoint.hpp -+++ b/websocketpp/roles/server_endpoint.hpp -@@ -75,11 +75,11 @@ class server : public endpoint<connection<config>,config> { - } - - /// Destructor -- ~server<config>() {} -+ ~server() {} - - #ifdef _WEBSOCKETPP_DEFAULT_DELETE_FUNCTIONS_ - // no copy constructor because endpoints are not copyable -- server<config>(server<config> &) = delete; -+ server(server<config> &) = delete; - - // no copy assignment operator because endpoints are not copyable - server<config> & operator=(server<config> const &) = delete; -@@ -87,7 +87,7 @@ class server : public endpoint<connection<config>,config> { - - #ifdef _WEBSOCKETPP_MOVE_SEMANTICS_ - /// Move constructor -- server<config>(server<config> && o) : endpoint<connection<config>,config>(std::move(o)) {} -+ server(server<config> && o) : endpoint<connection<config>,config>(std::move(o)) {} - - #ifdef _WEBSOCKETPP_DEFAULT_DELETE_FUNCTIONS_ - // no move assignment operator because of const member variables diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.2-cmake4.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.2-cmake4.patch deleted file mode 100644 index 9badaeb2105d..000000000000 --- a/dev-cpp/websocketpp/files/websocketpp-0.8.2-cmake4.patch +++ /dev/null @@ -1,23 +0,0 @@ -From deb0a334471362608958ce59a6b0bcd3e5b73c24 Mon Sep 17 00:00:00 2001 -From: Alexander Bock <mail@alexanderbock.eu> -Date: Mon, 31 Mar 2025 22:04:07 +0200 -Subject: [PATCH] Update minimum required CMake version to comply with CMake - 4.0 - ---- - CMakeLists.txt | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4f93e243a..92990c7dc 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -2,7 +2,7 @@ - ############ Setup project and cmake - # Minimum cmake requirement. We should require a quite recent - # cmake for the dependency find macros etc. to be up to date. --cmake_minimum_required (VERSION 2.8.8) -+cmake_minimum_required (VERSION 3.10) - - ############ Paths - diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch deleted file mode 100644 index 62c1aa8e250f..000000000000 --- a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch +++ /dev/null @@ -1,54 +0,0 @@ -See PR pending https://github.com/zaphoyd/websocketpp/pull/1189.patch -fix boost_1.89 bug #969568 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -112,7 +112,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES) - - # Visual studio - if (MSVC) -- set (WEBSOCKETPP_BOOST_LIBS system thread) -+ set (WEBSOCKETPP_BOOST_LIBS thread) - set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /GL /Gy /GF /Ox /Ob2 /Ot /Oi /MP /arch:SSE2 /fp:fast") - set (CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} /LTCG /INCREMENTAL:NO /OPT:REF /OPT:ICF") - add_definitions (/W3 /wd4996 /wd4995 /wd4355) -@@ -129,7 +129,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES) - set (WEBSOCKETPP_PLATFORM_LIBS pthread) - endif() - set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto) -- set (WEBSOCKETPP_BOOST_LIBS system thread) -+ set (WEBSOCKETPP_BOOST_LIBS thread) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") - if (NOT APPLE) - add_definitions (-DNDEBUG -Wall -Wcast-align) # todo: should we use CMAKE_C_FLAGS for these? -@@ -139,7 +139,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES) - execute_process (COMMAND ${CMAKE_CXX_COMPILER} "-dumpversion" OUTPUT_VARIABLE GCC_VERSION) - if ("${GCC_VERSION}" STRGREATER "4.4.0") - message("* C++11 support partially enabled due to GCC version ${GCC_VERSION}") -- set (WEBSOCKETPP_BOOST_LIBS system thread) -+ set (WEBSOCKETPP_BOOST_LIBS thread) - endif () - endif () - -@@ -151,7 +151,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES) - set (WEBSOCKETPP_PLATFORM_LIBS pthread) - endif() - set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto) -- set (WEBSOCKETPP_BOOST_LIBS system thread) -+ set (WEBSOCKETPP_BOOST_LIBS thread) - set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") - if (NOT APPLE) - add_definitions (-DNDEBUG -Wall -Wno-padded) # todo: should we use CMAKE_C_FLAGS for these? -@@ -213,9 +213,8 @@ if (BUILD_TESTS OR BUILD_EXAMPLES) - set (Boost_FIND_QUIETLY TRUE) - set (Boost_DEBUG FALSE) - set (Boost_USE_MULTITHREADED TRUE) -- set (Boost_ADDITIONAL_VERSIONS "1.39.0" "1.40.0" "1.41.0" "1.42.0" "1.43.0" "1.44.0" "1.46.1") # todo: someone who knows better spesify these! - -- find_package (Boost 1.39.0 COMPONENTS "${WEBSOCKETPP_BOOST_LIBS}") -+ find_package (Boost 1.69.0 COMPONENTS ${WEBSOCKETPP_BOOST_LIBS}) - - if (Boost_FOUND) - # Boost is a project wide global dependency. --- -2.52.0 - diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-clang.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-clang.patch deleted file mode 100644 index 2937ba71aced..000000000000 --- a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-clang.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 2c355d9ef0f3ed73fa96d0c6c31293086df36d74 Mon Sep 17 00:00:00 2001 -From: Peter Thorson <git@zaphoyd.com> -Date: Sun, 19 Apr 2020 22:33:24 -0500 -Subject: [PATCH] Fix typo in CMakeLists.txt that caused CXX_FLAGS to be - improperly quoted. Removed unnecessary hardcoded dependency on libc++ for - clang. fixes #859 - ---- - CMakeLists.txt | 2 +- - changelog.md | 3 +++ - 2 files changed, 4 insertions(+), 1 deletion(-) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index dcf90d1c8..3e9c80e84 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -152,7 +152,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES) - endif() - set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto) - set (WEBSOCKETPP_BOOST_LIBS system thread) -- set (CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} "-std=c++0x -stdlib=libc++") # todo: is libc++ really needed here? -+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") - if (NOT APPLE) - add_definitions (-DNDEBUG -Wall -Wno-padded) # todo: should we use CMAKE_C_FLAGS for these? - endif () |
