2017-08-11 03:43:50 +08:00
|
|
|
vcpkg_from_github(
|
|
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
|
|
REPO curl/curl
|
2020-07-07 04:23:44 +08:00
|
|
|
REF 5a1fc8d33808d7b22f57bdf9403cda7ff07b0670 #curl-7_71_1
|
|
|
|
SHA512 a58d2f23c4fb82610b8d68181fd29a4007983f88950b3eb3362170f3187d86116628151c5e09c713f047aca77cad7b9900bb58e368bbddca31599b4fde0dfa22
|
2017-08-11 03:43:50 +08:00
|
|
|
HEAD_REF master
|
2016-12-07 16:04:49 +08:00
|
|
|
PATCHES
|
2018-12-01 08:37:54 +08:00
|
|
|
0002_fix_uwp.patch
|
|
|
|
0004_nghttp2_staticlib.patch
|
2019-06-27 02:49:39 +08:00
|
|
|
0005_remove_imp_suffix.patch
|
2019-10-26 05:28:11 +08:00
|
|
|
0006_fix_tool_depends.patch
|
2020-01-07 07:09:13 +08:00
|
|
|
0007_disable_tool_export_curl_target.patch
|
2020-02-05 06:40:19 +08:00
|
|
|
0008_fix_tools_path.patch
|
|
|
|
0009_fix_openssl_config.patch
|
2020-04-17 04:31:08 +08:00
|
|
|
0010_fix_othertests_cmake.patch
|
2016-12-07 16:04:49 +08:00
|
|
|
)
|
|
|
|
|
2018-02-28 04:15:37 +08:00
|
|
|
string(COMPARE EQUAL "${VCPKG_LIBRARY_LINKAGE}" "static" CURL_STATICLIB)
|
|
|
|
|
2020-02-05 06:40:19 +08:00
|
|
|
# winssl will enable sspi, but sspi do not support uwp
|
|
|
|
if(("winssl" IN_LIST FEATURES OR "sspi" IN_LIST FEATURES OR "tool" IN_LIST FEATURES) AND (NOT VCPKG_TARGET_IS_WINDOWS OR VCPKG_TARGET_IS_UWP))
|
|
|
|
message(FATAL_ERROR "winssl,sspi,tool are not supported on non-Windows and uwp platforms")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if("sectransp" IN_LIST FEATURES AND NOT VCPKG_TARGET_IS_OSX)
|
|
|
|
message(FATAL_ERROR "sectransp is not supported on non-Apple platforms")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
|
|
FEATURES
|
|
|
|
# Support HTTP2 TLS Download https://curl.haxx.se/ca/cacert.pem rename to curl-ca-bundle.crt, copy it to libcurl.dll location.
|
|
|
|
http2 USE_NGHTTP2
|
|
|
|
openssl CMAKE_USE_OPENSSL
|
|
|
|
mbedtls CMAKE_USE_MBEDTLS
|
|
|
|
ssh CMAKE_USE_LIBSSH2
|
|
|
|
tool BUILD_CURL_EXE
|
|
|
|
c-ares ENABLE_ARES
|
|
|
|
sspi CURL_WINDOWS_SSPI
|
|
|
|
brotli CURL_BROTLI
|
|
|
|
winssl CMAKE_USE_WINSSL
|
|
|
|
sectransp CMAKE_USE_SECTRANSP
|
|
|
|
|
|
|
|
INVERTED_FEATURES
|
|
|
|
non-http HTTP_ONLY
|
|
|
|
)
|
2018-01-24 04:11:15 +08:00
|
|
|
|
2019-05-27 07:53:41 +08:00
|
|
|
set(SECTRANSP_OPTIONS)
|
|
|
|
if("sectransp" IN_LIST FEATURES)
|
2020-02-05 06:40:19 +08:00
|
|
|
set(SECTRANSP_OPTIONS -DCURL_CA_PATH=none)
|
2019-07-08 14:11:01 +08:00
|
|
|
endif()
|
|
|
|
|
2018-02-28 04:15:37 +08:00
|
|
|
# UWP targets
|
2017-08-11 03:43:50 +08:00
|
|
|
set(UWP_OPTIONS)
|
2020-02-05 06:40:19 +08:00
|
|
|
if(VCPKG_TARGET_IS_UWP)
|
2017-08-11 03:43:50 +08:00
|
|
|
set(UWP_OPTIONS
|
|
|
|
-DUSE_WIN32_LDAP=OFF
|
|
|
|
-DCURL_DISABLE_TELNET=ON
|
|
|
|
-DENABLE_IPV6=OFF
|
|
|
|
-DENABLE_UNIX_SOCKETS=OFF
|
2017-01-12 02:59:45 +08:00
|
|
|
)
|
|
|
|
endif()
|
2016-09-19 11:50:08 +08:00
|
|
|
|
2017-08-11 03:43:50 +08:00
|
|
|
vcpkg_configure_cmake(
|
|
|
|
SOURCE_PATH ${SOURCE_PATH}
|
|
|
|
PREFER_NINJA
|
2020-02-05 06:40:19 +08:00
|
|
|
OPTIONS ${FEATURE_OPTIONS}
|
2017-08-11 03:43:50 +08:00
|
|
|
${UWP_OPTIONS}
|
2019-05-27 07:53:41 +08:00
|
|
|
${SECTRANSP_OPTIONS}
|
2017-08-11 03:43:50 +08:00
|
|
|
-DBUILD_TESTING=OFF
|
|
|
|
-DENABLE_MANUAL=OFF
|
|
|
|
-DCURL_STATICLIB=${CURL_STATICLIB}
|
2019-05-27 07:53:41 +08:00
|
|
|
-DCMAKE_DISABLE_FIND_PACKAGE_Perl=ON
|
2017-08-11 03:43:50 +08:00
|
|
|
-DENABLE_DEBUG=ON
|
|
|
|
)
|
|
|
|
|
2016-09-19 11:50:08 +08:00
|
|
|
vcpkg_install_cmake()
|
|
|
|
|
2020-02-05 06:40:19 +08:00
|
|
|
vcpkg_copy_pdbs()
|
2019-04-09 14:53:10 +08:00
|
|
|
|
2020-02-05 06:40:19 +08:00
|
|
|
if ("tool" IN_LIST FEATURES)
|
2018-02-28 04:15:37 +08:00
|
|
|
vcpkg_copy_tool_dependencies(${CURRENT_PACKAGES_DIR}/tools/curl)
|
|
|
|
endif()
|
|
|
|
|
2020-02-05 06:40:19 +08:00
|
|
|
vcpkg_fixup_cmake_targets(CONFIG_PATH lib/cmake/CURL)
|
2019-06-27 02:49:39 +08:00
|
|
|
|
2020-02-05 06:40:19 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include)
|
2019-05-13 23:57:55 +08:00
|
|
|
|
2019-06-27 02:49:39 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
2016-11-27 08:05:46 +08:00
|
|
|
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/bin ${CURRENT_PACKAGES_DIR}/debug/bin)
|
2017-08-11 03:43:50 +08:00
|
|
|
else()
|
2020-02-05 06:40:19 +08:00
|
|
|
file(INSTALL ${CURRENT_PACKAGES_DIR}/bin/curl-config DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
2017-08-11 03:43:50 +08:00
|
|
|
file(REMOVE ${CURRENT_PACKAGES_DIR}/bin/curl-config ${CURRENT_PACKAGES_DIR}/debug/bin/curl-config)
|
2020-02-05 06:40:19 +08:00
|
|
|
#Fix install path
|
|
|
|
file(READ ${CURRENT_PACKAGES_DIR}/share/${PORT}/curl-config CURL_CONFIG)
|
|
|
|
string(REPLACE "${CURRENT_PACKAGES_DIR}" "${CURRENT_INSTALLED_DIR}" CURL_CONFIG "${CURL_CONFIG}")
|
|
|
|
file(WRITE ${CURRENT_PACKAGES_DIR}/share/${PORT}/curl-config "${CURL_CONFIG}")
|
2017-08-11 03:43:50 +08:00
|
|
|
endif()
|
|
|
|
|
2019-06-27 02:49:39 +08:00
|
|
|
if(VCPKG_LIBRARY_LINKAGE STREQUAL "static")
|
2020-07-07 04:23:44 +08:00
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/curl/curl.h
|
|
|
|
"#ifdef CURL_STATICLIB"
|
|
|
|
"#if 1"
|
|
|
|
)
|
2017-08-11 03:43:50 +08:00
|
|
|
else()
|
2020-07-07 04:23:44 +08:00
|
|
|
vcpkg_replace_string(${CURRENT_PACKAGES_DIR}/include/curl/curl.h
|
|
|
|
"#ifdef CURL_STATICLIB"
|
|
|
|
"#if 0"
|
|
|
|
)
|
2016-11-27 08:05:46 +08:00
|
|
|
endif()
|
|
|
|
|
2020-02-05 06:40:19 +08:00
|
|
|
file(INSTALL ${CURRENT_PORT_DIR}/vcpkg-cmake-wrapper.cmake DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT})
|
2020-07-07 04:23:44 +08:00
|
|
|
file(INSTALL ${SOURCE_PATH}/COPYING DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|