Skip to content

Commit 9dfdc6f

Browse files
committed
cmake: allow pkg-config in more envs
Before this patch, `pkg-config` was used for `UNIX` builds only (with a few exceptions like wolfSSL, libssh, gsasl, libuv). This patch extends `pkg-config` use to all envs except: `MSVC` without vcpkg. Meaning MSVC with vcpkg will now use it. Also mingw on Windows. Also apply the new condition to options where `pkg-config` was used unconditionally (= for all targets). These are: `-DCURL_USE_WOLFSSL=ON`, `-DCURL_USE_LIBSSH=ON`, `-DCURL_USE_GSASL=ON` and `-DCURL_USE_LIBUV=ON` This patch may still cause regressions for cross-builds (e.g. mingw cross-build from Unix) and potentially other cases. If that happens, we recommend using some of these methods to explicitly disable `pkg-config` when using CMake: - CMake option: `-DPKG_CONFIG_EXECUTABLE=` (or `-DPKG_CONFIG_EXECUTABLE=nonexistent` or similar) This is similar to the (curl-specific) `PKG_CONFIG` env for autotools. - export env: `PKG_CONFIG_LIBDIR=` (or `PKG_CONFIG_PATH`, `PKG_CONFIG_SYSROOT_DIR`, or the CMake-specific `PKG_CONFIG`) We may improve control over this in a future patch, also allowing opting in MSVC (without vcpkg). Ref: #14405 Ref: #14408 Ref: #14140 Closes #14483
1 parent d222dbe commit 9dfdc6f

10 files changed

+31
-20
lines changed

CMake/FindGSS.cmake

+3-2
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,12 @@ set(_gss_root_hints
5353

5454
# Try to find library using system pkg-config if user did not specify root dir
5555
if(NOT GSS_ROOT_DIR AND NOT "$ENV{GSS_ROOT_DIR}")
56-
if(UNIX)
56+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
5757
find_package(PkgConfig QUIET)
5858
pkg_search_module(_GSS ${_mit_modname} ${_heimdal_modname})
5959
list(APPEND _gss_root_hints "${_GSS_PREFIX}")
60-
elseif(WIN32)
60+
endif()
61+
if(WIN32)
6162
list(APPEND _gss_root_hints "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos;InstallDir]")
6263
endif()
6364
endif()

CMake/FindMSH3.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# MSH3_INCLUDE_DIRS The msh3 include directories
3030
# MSH3_LIBRARIES The libraries needed to use msh3
3131

32-
if(UNIX)
32+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
3333
find_package(PkgConfig QUIET)
3434
pkg_search_module(PC_MSH3 "libmsh3")
3535
endif()

CMake/FindNGHTTP2.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# NGHTTP2_LIBRARIES The libraries needed to use nghttp2
3131
# NGHTTP2_VERSION Version of nghttp2
3232

33-
if(UNIX)
33+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
3434
find_package(PkgConfig QUIET)
3535
pkg_search_module(PC_NGHTTP2 "libnghttp2")
3636
endif()

CMake/FindNGHTTP3.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# NGHTTP3_LIBRARIES The libraries needed to use nghttp3
3131
# NGHTTP3_VERSION Version of nghttp3
3232

33-
if(UNIX)
33+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
3434
find_package(PkgConfig QUIET)
3535
pkg_search_module(PC_NGHTTP3 "libnghttp3")
3636
endif()

CMake/FindNGTCP2.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# NGTCP2_LIBRARIES The libraries needed to use ngtcp2
3939
# NGTCP2_VERSION Version of ngtcp2
4040

41-
if(UNIX)
41+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
4242
find_package(PkgConfig QUIET)
4343
pkg_search_module(PC_NGTCP2 "libngtcp2")
4444
endif()
@@ -72,7 +72,7 @@ if(NGTCP2_FIND_COMPONENTS)
7272

7373
if(NGTCP2_CRYPTO_BACKEND)
7474
string(TOLOWER "ngtcp2_crypto_${NGTCP2_CRYPTO_BACKEND}" _crypto_library)
75-
if(UNIX)
75+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
7676
pkg_search_module(PC_${_crypto_library} "lib${_crypto_library}")
7777
endif()
7878
find_library(${_crypto_library}_LIBRARY

CMake/FindNettle.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# NETTLE_LIBRARIES The nettle library names
3131
# NETTLE_VERSION Version of nettle
3232

33-
if(UNIX)
33+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
3434
find_package(PkgConfig QUIET)
3535
pkg_search_module(NETTLE "nettle")
3636
endif()

CMake/FindQUICHE.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# QUICHE_INCLUDE_DIRS The quiche include directories
3030
# QUICHE_LIBRARIES The libraries needed to use quiche
3131

32-
if(UNIX)
32+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
3333
find_package(PkgConfig QUIET)
3434
pkg_search_module(PC_QUICHE "quiche")
3535
endif()

CMake/FindWolfSSL.cmake

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,10 @@
3030
# WolfSSL_LIBRARIES The wolfssl library names
3131
# WolfSSL_VERSION Version of wolfssl
3232

33-
find_package(PkgConfig QUIET)
34-
pkg_search_module(PC_WOLFSSL QUIET "wolfssl")
33+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
34+
find_package(PkgConfig QUIET)
35+
pkg_search_module(PC_WOLFSSL QUIET "wolfssl")
36+
endif()
3537

3638
find_path(WolfSSL_INCLUDE_DIR
3739
NAMES "wolfssl/ssl.h"

CMake/FindZstd.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# Zstd_LIBRARIES The libraries needed to use zstd
3131
# Zstd_VERSION Version of zstd
3232

33-
if(UNIX)
33+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
3434
find_package(PkgConfig QUIET)
3535
pkg_search_module(PC_Zstd "libzstd")
3636
endif()

CMakeLists.txt

+16-8
Original file line numberDiff line numberDiff line change
@@ -959,7 +959,7 @@ if(USE_LIBIDN2)
959959
check_include_file_concat("idn2.h" HAVE_IDN2_H)
960960
endif()
961961
if(NOT HAVE_LIBIDN2 OR NOT HAVE_IDN2_H)
962-
if(UNIX)
962+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
963963
find_package(PkgConfig QUIET)
964964
pkg_search_module(LIBIDN2 "libidn2")
965965
endif()
@@ -1038,7 +1038,7 @@ if(NOT USE_LIBSSH2 AND CURL_USE_LIBSSH)
10381038
find_package(libssh CONFIG QUIET)
10391039
if(libssh_FOUND)
10401040
message(STATUS "Found libssh ${libssh_VERSION}")
1041-
else()
1041+
elseif(NOT MSVC OR VCPKG_TOOLCHAIN)
10421042
find_package(PkgConfig QUIET)
10431043
pkg_search_module(LIBSSH "libssh")
10441044
if(LIBSSH_FOUND)
@@ -1058,10 +1058,16 @@ endif()
10581058
option(CURL_USE_GSASL "Use GSASL implementation" OFF)
10591059
mark_as_advanced(CURL_USE_GSASL)
10601060
if(CURL_USE_GSASL)
1061-
find_package(PkgConfig REQUIRED)
1062-
pkg_search_module(GSASL REQUIRED "libgsasl")
1063-
list(APPEND CURL_LIBS ${GSASL_LINK_LIBRARIES})
1064-
set(USE_GSASL ON)
1061+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
1062+
find_package(PkgConfig REQUIRED)
1063+
pkg_search_module(GSASL REQUIRED "libgsasl")
1064+
else()
1065+
message(WARNING "GSASL has been requested but requires a platform with pkg-config support. Skipping.")
1066+
endif()
1067+
if(GSASL_FOUND)
1068+
list(APPEND CURL_LIBS ${GSASL_LINK_LIBRARIES})
1069+
set(USE_GSASL ON)
1070+
endif()
10651071
endif()
10661072

10671073
option(CURL_USE_GSSAPI "Use GSSAPI implementation (right now only Heimdal is supported with CMake build)" OFF)
@@ -1133,8 +1139,10 @@ if(CURL_USE_LIBUV)
11331139
if(NOT ENABLE_DEBUG)
11341140
message(FATAL_ERROR "Using libuv without debug support enabled is useless")
11351141
endif()
1136-
find_package(PkgConfig QUIET)
1137-
pkg_check_modules(LIBUV "libuv")
1142+
if(NOT MSVC OR VCPKG_TOOLCHAIN)
1143+
find_package(PkgConfig QUIET)
1144+
pkg_check_modules(LIBUV "libuv")
1145+
endif()
11381146
if(LIBUV_FOUND)
11391147
list(APPEND CURL_LIBS ${LIBUV_LINK_LIBRARIES})
11401148
list(APPEND LIBCURL_PC_REQUIRES_PRIVATE "libuv")

0 commit comments

Comments
 (0)