forked from conan-io/conan-center-index
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(conan-io#22550) cppkafka: add version 0.4.1, update dependencies
* cppkafka: add version 0.4.1 * make boost transitive_headers
- Loading branch information
Showing
7 changed files
with
45 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
sources: | ||
"0.4.1": | ||
url: "https://github.com/mfontanini/cppkafka/archive/refs/tags/v0.4.1.tar.gz" | ||
sha256: "45770ae0404cb9ba73d659618c51cd55b574c66ed3c7b148360222fb524b0ff7" | ||
"0.4.0": | ||
url: "https://github.com/mfontanini/cppkafka/archive/refs/tags/0.4.0.tar.gz" | ||
sha256: "f4f05eb7a180a856663b02ec0b777283275ef88e5523f3013fd51c6c4ab63b5a" | ||
patches: | ||
"0.4.1": | ||
- patch_file: "patches/0.4.0-0001-no-template-export.patch" | ||
- patch_file: "patches/0.4.1-0003-clean-rpath.patch" | ||
"0.4.0": | ||
- patch_file: "patches/0001-no-template-export.patch" | ||
- patch_file: "patches/0002-cppstd.patch" | ||
- patch_file: "patches/0003-clean-rpath.patch" | ||
- patch_file: "patches/0.4.0-0001-no-template-export.patch" | ||
- patch_file: "patches/0.4.0-0002-cppstd.patch" | ||
- patch_file: "patches/0.4.0-0003-clean-rpath.patch" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
diff --git a/CMakeLists.txt b/CMakeLists.txt | ||
index 6c667df..46c5590 100644 | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -28,7 +28,7 @@ if (NOT CMAKE_CXX_FLAGS) | ||
add_definitions("-DNOGDI=1") | ||
add_definitions("-DNOMINMAX=1") | ||
else() | ||
- set(CMAKE_CXX_FLAGS "-Wall") | ||
+# set(CMAKE_CXX_FLAGS "-Wall") | ||
endif() | ||
endif() | ||
|
||
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt | ||
index 214ccd4..d2667ce 100644 | ||
--- a/src/CMakeLists.txt | ||
+++ b/src/CMakeLists.txt | ||
@@ -46,8 +46,8 @@ set_target_properties(${TARGET_NAME} PROPERTIES | ||
ARCHIVE_OUTPUT_NAME "${TARGET_NAME}" | ||
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_INSTALL_LIBDIR}" | ||
LIBRARY_OUTPUT_NAME "${TARGET_NAME}" | ||
- INSTALL_RPATH "${CMAKE_INSTALL_LIBDIR}" | ||
- INSTALL_RPATH_USE_LINK_PATH TRUE | ||
+ # INSTALL_RPATH "${CMAKE_INSTALL_LIBDIR}" | ||
+ # INSTALL_RPATH_USE_LINK_PATH TRUE | ||
VERSION ${CPPKAFKA_VERSION} | ||
SOVERSION ${CPPKAFKA_VERSION}) | ||
# In CMake >= 3.15 Boost::boost == Boost::headers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
versions: | ||
"0.4.1": | ||
folder: "all" | ||
"0.4.0": | ||
folder: "all" |