-
Notifications
You must be signed in to change notification settings - Fork 3
feat: Update to hiredis 1.3 #485
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
Changes from all commits
fc2a847
dc786f9
3969070
02969b8
622ffcf
f044798
a19fd8b
1b1f0f6
802c1fc
1b2488c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,9 +5,10 @@ include(FetchContent) | |
|
|
||
| FetchContent_Declare(hiredis | ||
| GIT_REPOSITORY https://github.com/redis/hiredis.git | ||
| GIT_TAG 60e5075d4ac77424809f855ba3e398df7aacefe8 | ||
| # 1.3.0 | ||
| GIT_TAG ccad7ebaf99310957004661d1c5f82d2a33ebd10 | ||
| GIT_SHALLOW TRUE | ||
| SOURCE_DIR _deps/hiredis | ||
| SOURCE_DIR ${CMAKE_BINARY_DIR}/_deps/hiredis | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: CMake Path Mismatch Causes Compilation FailuresThe |
||
| OVERRIDE_FIND_PACKAGE | ||
| ) | ||
|
|
||
|
|
@@ -22,7 +23,8 @@ set(REDIS_PLUS_PLUS_BUILD_TEST OFF CACHE BOOL "" FORCE) | |
| # when it tries to do feature detection on hiredis. | ||
| FetchContent_Declare(redis-plus-plus | ||
| GIT_REPOSITORY https://github.com/sewenew/redis-plus-plus.git | ||
| GIT_TAG 1.3.7 | ||
| # Post 1.3.15. Required to support FetchContent post 1.3.7 where it was broken. | ||
| GIT_TAG 84f37e95d9112193fd433f65402d3d183f0b9cf7 | ||
| GIT_SHALLOW TRUE | ||
| ) | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Boost_DIR Missing in Linux/MacOS Build
The "Simulate Release (Linux/MacOS)" step is missing the
Boost_DIRenvironment variable. This variable was added to other build steps, creating an inconsistency that may cause build failures for the Linux/MacOS release simulation.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On those platforms it is automatically discovered.