mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-28 21:20:28 +08:00
4064388226
Fixes #38305, the upstream issue https://github.com/apache/arrow/issues/41340 and PR https://github.com/apache/arrow/pull/41341. - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] ~~SHA512s are updated for each updated download.~~ - [ ] ~~The "supports" clause reflects platforms that may be fixed by this new version.~~ - [ ] ~~Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file.~~ - [ ] ~~Any patches that are no longer applied are deleted from the port's directory.~~ - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file. --------- Co-authored-by: Lily Wang <v-lilywang@microsoft.com>
40 lines
1.4 KiB
Diff
40 lines
1.4 KiB
Diff
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
|
|
index 941f5db..473e380 100644
|
|
--- a/cpp/CMakeLists.txt
|
|
+++ b/cpp/CMakeLists.txt
|
|
@@ -711,7 +711,7 @@ list(APPEND ARROW_TEST_LINK_LIBS ${ARROW_GTEST_GMOCK} ${ARROW_GTEST_GTEST_MAIN})
|
|
if(ARROW_BUILD_BENCHMARKS)
|
|
set(ARROW_BENCHMARK_LINK_LIBS benchmark::benchmark_main ${ARROW_TEST_LINK_LIBS})
|
|
if(WIN32)
|
|
- list(APPEND ARROW_BENCHMARK_LINK_LIBS Shlwapi.dll)
|
|
+ list(APPEND ARROW_BENCHMARK_LINK_LIBS Shlwapi)
|
|
endif()
|
|
endif()
|
|
|
|
diff --git a/cpp/src/arrow/CMakeLists.txt b/cpp/src/arrow/CMakeLists.txt
|
|
index 5c1b5e3..f16ee55 100644
|
|
--- a/cpp/src/arrow/CMakeLists.txt
|
|
+++ b/cpp/src/arrow/CMakeLists.txt
|
|
@@ -163,7 +163,7 @@ if(CMAKE_THREAD_LIBS_INIT)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
- list(APPEND ARROW_SYSTEM_LINK_LIBS "ws2_32.dll")
|
|
+ list(APPEND ARROW_SYSTEM_LINK_LIBS "ws2_32")
|
|
endif()
|
|
|
|
if(NOT WIN32 AND NOT APPLE AND NOT ANDROID)
|
|
@@ -628,9 +628,9 @@ else()
|
|
list(APPEND ARROW_TESTING_STATIC_INSTALL_INTERFACE_LIBS ArrowTesting::gtest)
|
|
endif()
|
|
if(WIN32)
|
|
- list(APPEND ARROW_TESTING_SHARED_LINK_LIBS "ws2_32.dll")
|
|
- list(APPEND ARROW_TESTING_STATIC_LINK_LIBS "ws2_32.dll")
|
|
- list(APPEND ARROW_TESTING_STATIC_INSTALL_INTERFACE_LIBS "ws2_32.dll")
|
|
+ list(APPEND ARROW_TESTING_SHARED_LINK_LIBS "ws2_32")
|
|
+ list(APPEND ARROW_TESTING_STATIC_LINK_LIBS "ws2_32")
|
|
+ list(APPEND ARROW_TESTING_STATIC_INSTALL_INTERFACE_LIBS "ws2_32")
|
|
endif()
|
|
|
|
set(ARROW_TESTING_SRCS
|