aboutsummaryrefslogtreecommitdiff
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/sentry-native/fix-libcurl.patch19
-rw-r--r--ports/sentry-native/portfile.cmake7
-rw-r--r--ports/sentry-native/vcpkg.json3
3 files changed, 4 insertions, 25 deletions
diff --git a/ports/sentry-native/fix-libcurl.patch b/ports/sentry-native/fix-libcurl.patch
deleted file mode 100644
index 4ecba9666..000000000
--- a/ports/sentry-native/fix-libcurl.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 8a74a93..30c131c 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -249,13 +249,7 @@ target_compile_definitions(sentry PRIVATE SIZEOF_LONG=${CMAKE_SIZEOF_LONG})
-
- if(SENTRY_TRANSPORT_CURL)
- find_package(CURL REQUIRED)
-- target_include_directories(sentry PRIVATE ${CURL_INCLUDE_DIR})
-- # The exported sentry target must not contain any path of the build machine, therefore use generator expressions
-- # FIXME: cmake 3.12 introduced the target CURL::libcurl
-- string(REPLACE ";" "$<SEMICOLON>" GENEX_CURL_LIBRARIES "${CURL_LIBRARIES}")
-- string(REPLACE ";" "$<SEMICOLON>" GENEX_CURL_COMPILE_DEFINITIONS "${CURL_COMPILE_DEFINITIONS}")
-- target_link_libraries(sentry PRIVATE $<BUILD_INTERFACE:${GENEX_CURL_LIBRARIES}>)
-- target_compile_definitions(sentry PRIVATE $<BUILD_INTERFACE:${GENEX_CURL_COMPILE_DEFINITIONS}>)
-+ target_link_libraries(sentry PRIVATE CURL::libcurl)
- endif()
-
- set_property(TARGET sentry PROPERTY C_VISIBILITY_PRESET hidden)
diff --git a/ports/sentry-native/portfile.cmake b/ports/sentry-native/portfile.cmake
index 80f745bb6..e538c1222 100644
--- a/ports/sentry-native/portfile.cmake
+++ b/ports/sentry-native/portfile.cmake
@@ -3,9 +3,9 @@ if(NOT VCPKG_TARGET_IS_OSX)
endif()
vcpkg_download_distfile(ARCHIVE
- URLS "https://github.com/getsentry/sentry-native/releases/download/0.4.11/sentry-native.zip"
- FILENAME "sentry-native-0.4.11.zip"
- SHA512 3d66295526c0cd068a0b7c2180dbeae7594775b3eb3199a74da7efe634cbc19cff6eba8d44b1479037c43c6eb58a9ba4fdaf8da6995767f27c585a0d42582c37
+ URLS "https://github.com/getsentry/sentry-native/releases/download/0.4.12/sentry-native.zip"
+ FILENAME "sentry-native-0.4.12.zip"
+ SHA512 15da4407ed5e2c8d5e56e497ccc6006b29235aef6b3a81e034c93443e20a7cfdf95d55e31b88e552c55e824eb15d6f7fafe988c453a5a6f36fe45136d7268b19
)
vcpkg_extract_source_archive_ex(
@@ -15,7 +15,6 @@ vcpkg_extract_source_archive_ex(
PATCHES
fix-warningC5105.patch
fix-config-cmake.patch
- fix-libcurl.patch
use-zlib-target.patch
)
diff --git a/ports/sentry-native/vcpkg.json b/ports/sentry-native/vcpkg.json
index b60162f8c..84840940e 100644
--- a/ports/sentry-native/vcpkg.json
+++ b/ports/sentry-native/vcpkg.json
@@ -1,7 +1,6 @@
{
"name": "sentry-native",
- "version-semver": "0.4.11",
- "port-version": 1,
+ "version-semver": "0.4.12",
"description": "Sentry SDK for C, C++ and native applications.",
"homepage": "https://sentry.io/",
"supports": "!(arm | (arm64 & !osx) | uwp)",