8000 GEODE-10416: Bump to boost 1.80.0 by ebluo · Pull Request #983 · apache/geode-native · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

GEODE-10416: Bump to boost 1.80.0 #983

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

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
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
1 change: 1 addition & 0 deletions cppcache/test/statistics/HostStatSamplerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include <gmock/gmock.h>

#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>
#include <boost/process/environment.hpp>

#include <gtest/gtest.h>
Expand Down
9 changes: 6 additions & 3 deletions dependencies/boost/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.

project(boost VERSION 1.76.0 LANGUAGES NONE)
project(boost VERSION 1.80.0 LANGUAGES NONE)

set(SHA256 7bd7ddceec1a1dfdcbdb3e609b60d01739c38390a5f956385a12f3122049f0ca)
set(SHA256 4b2136f98bdd1f5857f1c3dea9ac2018effe65286cf251534b6ae20cc45e1847)

if (WIN32)
set(BOOTSTRAP_COMMAND bootstrap.bat)
Expand Down Expand Up @@ -164,7 +164,10 @@ target_compile_definitions(boost_asio INTERFACE
if(WIN32)
target_compile_definitions(boost INTERFACE
# Required for Boost.WinAPI
_WIN32_WINNT=0x06020000
# Since boost 1.78.0, set value >= 0x0602 will cause linker errors
_WIN32_WINNT=0x0602
# Set this as 0x0601 to fix linking error independent of target Windows version like above
BOOST_USE_WINAPI_VERSION=0x0601
)
endif()

Expand Down
0