-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* arrow: add version 18.0.0 * Conan v2 refactor * arrow: fewer versions --------- Co-authored-by: PerseoGI <[email protected]> Co-authored-by: Luis Caro Campos <[email protected]>
- Loading branch information
1 parent
990f70c
commit 008313c
Showing
13 changed files
with
81 additions
and
1,492 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
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
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,59 @@ | ||
diff --git a/cpp/cmake_modules/FindThriftAlt.cmake b/cpp/cmake_modules/FindThriftAlt.cmake | ||
index 98a706d..edf195e 100644 | ||
--- a/cpp/cmake_modules/FindThriftAlt.cmake | ||
+++ b/cpp/cmake_modules/FindThriftAlt.cmake | ||
@@ -45,22 +45,20 @@ endif() | ||
# * https://github.com/apache/thrift/pull/2725 | ||
# * https://github.com/apache/thrift/pull/2726 | ||
# * https://github.com/conda-forge/thrift-cpp-feedstock/issues/68 | ||
-if(NOT WIN32) | ||
- set(find_package_args "") | ||
- if(ThriftAlt_FIND_VERSION) | ||
- list(APPEND find_package_args ${ThriftAlt_FIND_VERSION}) | ||
- endif() | ||
- if(ThriftAlt_FIND_QUIETLY) | ||
- list(APPEND find_package_args QUIET) | ||
- endif() | ||
- find_package(Thrift ${find_package_args}) | ||
- if(Thrift_FOUND) | ||
- set(ThriftAlt_FOUND TRUE) | ||
- add_executable(thrift::compiler IMPORTED) | ||
- set_target_properties(thrift::compiler PROPERTIES IMPORTED_LOCATION | ||
- "${THRIFT_COMPILER}") | ||
- return() | ||
- endif() | ||
+set(find_package_args "") | ||
+if(ThriftAlt_FIND_VERSION) | ||
+ list(APPEND find_package_args ${ThriftAlt_FIND_VERSION}) | ||
+endif() | ||
+if(ThriftAlt_FIND_QUIETLY) | ||
+ list(APPEND find_package_args QUIET) | ||
+endif() | ||
+find_package(Thrift ${find_package_args}) | ||
+if(Thrift_FOUND) | ||
+ set(ThriftAlt_FOUND TRUE) | ||
+ add_executable(thrift::compiler IMPORTED) | ||
+ set_target_properties(thrift::compiler PROPERTIES IMPORTED_LOCATION | ||
+ "${THRIFT_COMPILER}") | ||
+ return() | ||
endif() | ||
|
||
function(extract_thrift_version) | ||
diff --git a/cpp/src/parquet/CMakeLists.txt b/cpp/src/parquet/CMakeLists.txt | ||
index b984ef7..429fc6d 100644 | ||
--- a/cpp/src/parquet/CMakeLists.txt | ||
+++ b/cpp/src/parquet/CMakeLists.txt | ||
@@ -263,11 +263,11 @@ if(NOT PARQUET_MINIMAL_DEPENDENCY) | ||
|
||
# These are libraries that we will link privately with parquet_shared (as they | ||
# do not need to be linked transitively by other linkers) | ||
- list(APPEND PARQUET_SHARED_PRIVATE_LINK_LIBS thrift::thrift) | ||
+ list(APPEND PARQUET_SHARED_PRIVATE_LINK_LIBS Boost::headers thrift::thrift) | ||
|
||
# Link publicly with parquet_static (because internal users need to | ||
# transitively link all dependencies) | ||
- list(APPEND PARQUET_STATIC_LINK_LIBS thrift::thrift) | ||
+ list(APPEND PARQUET_STATIC_LINK_LIBS Boost::headers thrift::thrift) | ||
if(NOT THRIFT_VENDORED) | ||
list(APPEND PARQUET_STATIC_INSTALL_INTERFACE_LIBS thrift::thrift) | ||
endif() |
17 changes: 0 additions & 17 deletions
17
recipes/arrow/all/patches/7.0.0-0001-static-analyzers.patch
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.