Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BOOST_VERSION を 1.87.0 に上げる #148

Merged
merged 6 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@
- @voluntas
- [UPDATE] CMake を 3.30.5 にあげる
- @voluntas
- [UPDATE] Boost を 1.86.0 にあげる
- @voluntas
- [UPDATE] Boost を 1.87.0 にあげる
- boost::asio::deadline_timer が間接的にインクルードされなくなったので、websocket.h に boost/asio/deadline_timer.hpp のインクルードを追加して利用可能にする
- boost::json::error_code が削除されたので boost::system::error_code に置き換える
- @voluntas @torikizi @melpon
- [UPDATE] libwebrtc を m131.6778.4.0 にあげる
- H.265 Patch の修正に伴い、C++ SDK の H.265 に関する設定を変更
- examples と test に `rtc::CreateRandomString` のヘッダを追加
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SORA_CPP_SDK_VERSION=2024.8.0-canary.31
WEBRTC_BUILD_VERSION=m131.6778.4.0
BOOST_VERSION=1.86.0
BOOST_VERSION=1.87.0
CMAKE_VERSION=3.30.5
CUDA_VERSION=11.8.0-1
ANDROID_NDK_VERSION=r26b
Expand Down
2 changes: 1 addition & 1 deletion examples/VERSION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SORA_CPP_SDK_VERSION=2024.8.0-canary.31
WEBRTC_BUILD_VERSION=m131.6778.4.0
BOOST_VERSION=1.86.0
BOOST_VERSION=1.87.0
CMAKE_VERSION=3.30.5
SDL2_VERSION=2.30.10
CLI11_VERSION=v2.4.2
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ int main(int argc, char* argv[]) {

auto is_json = CLI::Validator(
[](std::string input) -> std::string {
boost::json::error_code ec;
boost::system::error_code ec;
boost::json::parse(input);
if (ec) {
return "Value " + input + " is not JSON Value";
Expand Down
2 changes: 1 addition & 1 deletion examples/sdl_sample/src/sdl_sample.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ int main(int argc, char* argv[]) {

auto is_json = CLI::Validator(
[](std::string input) -> std::string {
boost::json::error_code ec;
boost::system::error_code ec;
boost::json::parse(input, ec);
if (ec) {
return "Value " + input + " is not JSON Value";
Expand Down
2 changes: 1 addition & 1 deletion examples/sumomo/src/sumomo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ int main(int argc, char* argv[]) {

auto is_json = CLI::Validator(
[](std::string input) -> std::string {
boost::json::error_code ec;
boost::system::error_code ec;
boost::json::parse(input, ec);
if (ec) {
return "Value " + input + " is not JSON Value";
Expand Down
1 change: 1 addition & 0 deletions include/sora/websocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <optional>

// Boost
#include <boost/asio/deadline_timer.hpp>
#include <boost/asio/io_context.hpp>
#include <boost/asio/ip/tcp.hpp>
#include <boost/asio/ssl/context.hpp>
Expand Down