vcpkg/ports/curl/0012-fix-dependency-idn2.patch
Kai Pastor 3b537144f7
[curl] Update to 7.84.0 (#25515)
* Update to 7.84.0

* Update versions

* Ignore libpsl system lib

* ENABLE_DEBUG only affects debug build

* Remove obsolete variables

* Update versions

* Remove obsolete CURL_STATICLIB variable

* Drop obsolete Perl option

* Update versions
2022-07-05 14:57:47 -07:00

15 lines
423 B
Diff

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9f6de81..6702845 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -632,6 +632,7 @@ endif()
# Check for idn2
option(USE_LIBIDN2 "Use libidn2 for IDN support" ON)
if(USE_LIBIDN2)
- check_library_exists_concat("idn2" idn2_lookup_ul HAVE_LIBIDN2)
+ set(HAVE_LIBIDN2 TRUE)
+ list(INSERT CURL_LIBS 0 ${LIBIDN2_LINK_LIBRARIES})
else()
set(HAVE_LIBIDN2 OFF)
endif()