Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
AWS_SDK_CPP_MAJOR: 1
AWS_SDK_CPP_MINOR: 11
AWS_SDK_CPP_PATCH: 570
AWS_SDK_CPP_PATCH: 774
BOOST_MAJOR: 1
BOOST_MINOR: 90
BOOST_PATCH: 0
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ find_package(Boost 1.90.0 EXACT REQUIRED COMPONENTS url json)
find_package(MySQL REQUIRED)

find_package(ZLIB REQUIRED)
find_package(AWSSDK 1.11.570 EXACT REQUIRED COMPONENTS s3-crt)
find_package(AWSSDK 1.11.774 EXACT REQUIRED COMPONENTS s3-crt)

set(source_files
# main application files
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Currently prebuilt binaries are not available.
- [Boost libraries](https://www.boost.org/) 1.90.0 (git version, not the source tarball)
- [MySQL client library](https://dev.mysql.com/doc/c-api/8.0/en/) 8.0.x (`libmysqlclient`)
- [CURL library](https://curl.se/libcurl/) (`libcurl`) 8.6.0+
- [AWS SDK for C++](https://aws.amazon.com/sdk-for-cpp/) 1.11.570
- [AWS SDK for C++](https://aws.amazon.com/sdk-for-cpp/) 1.11.774

#### Instructions

Expand Down Expand Up @@ -90,7 +90,7 @@ cmake --install ./boost-build-${BUILD_PRESET}
###### Getting AWS SDK CPP Libraries source

```bash
git clone --recurse-submodules -b 1.11.570 --jobs=8 https://github.com/aws/aws-sdk-cpp
git clone --recurse-submodules -b 1.11.774 --jobs=8 https://github.com/aws/aws-sdk-cpp
cd aws-sdk-cpp
git switch -c required_release
```
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export CODENAME := $(shell . /etc/os-release && echo $$VERSION_CODENAME)
# Versions
export DEB_VERSION=0.1.0
export BOOST_VERSION=1.90.0
export AWS_VERSION=1.11.570
export AWS_VERSION=1.11.774

# CMake presets
export BUILD_PRESET_DEBUG=debug_gcc14
Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/binlog-server.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global BUILD_PRESET_DEBUG debug_gcc14
%global BUILD_PRESET_RELEASE release_gcc14
%global BOOST_VERSION 1.90.0
%global AWS_VERSION 1.11.570
%global AWS_VERSION 1.11.774
%global release %{rpm_release}%{?dist}
%global optflags %(echo %{optflags} | sed 's/-specs=[^ ]*annobin[^ ]*//g')

Expand Down
Loading