mirror of
https://github.com/curl/curl
synced 2026-08-25 12:32:35 -04:00
`pccritic` is available on the latest macOS runner revision (not every job runs get it yet), Cygwin, MSYS2/mingw-w64 (one job, others will follow on the next msys2/setup-msys2 Action bump). It will be automatically used on BSDs, once they start offering it. Missing from Linux jobs. Also: - GHA/windows: convert `libcurl.pc` to Unix newlines to bump score 96 to 100 in mingw-w64 jobs. CMake-specific fix pending in: #22556 - GHA: verify with minimum `pccritic` score 94 to 100 (depending on CI job). - build: fill `Maintainer:` `libcurl.pc` property when run curl CI. Issues remaining: macOS: ``` [info ] Cflags adds an include path already on the default search path (pkgconf strips it): -I/usr/local/include (cflags/PC031) [info ] Libs adds a library path already on the default search path (pkgconf strips it): -L/usr/local/lib (libs/PC040) [minor ] Libs.private contains an unexpected flag: /Applications/Xcode_26.6.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/GSS.framework (libs/PC041) ``` Windows: ``` [minor ] file uses CRLF line endings (style/PC061) ``` Ref: #22556 Follow-up tob9254da617#22548 Follow-up to852f5d34da#22553 Follow-up to4d9ba9fef4#22545 Follow-up to6c7993d4d9#22536 Follow-up to3f1c033afe#22519 Closes #22543
45 lines
1.7 KiB
PkgConfig
45 lines
1.7 KiB
PkgConfig
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
supported_protocols="@SUPPORT_PROTOCOLS@"
|
|
supported_features="@SUPPORT_FEATURES@"
|
|
|
|
Name: libcurl
|
|
URL: https://curl.se/
|
|
Description: Library to transfer files with HTTP, FTP, etc.
|
|
License: curl
|
|
Maintainer: @CURL_PACKAGE_MAINTAINER@
|
|
Version: @CURLVERSION@
|
|
Source: https://curl.se/download/curl-@CURLVERSION@.tar.gz
|
|
Requires: @LIBCURL_PC_REQUIRES@
|
|
Requires.private: @LIBCURL_PC_REQUIRES_PRIVATE@
|
|
Libs: -L${libdir} -lcurl @LIBCURL_PC_LIBS@
|
|
Libs.private: @LIBCURL_PC_LDFLAGS_PRIVATE@ @LIBCURL_PC_LIBS_PRIVATE@
|
|
Cflags: -I${includedir} @LIBCURL_PC_CFLAGS@
|
|
Cflags.private: @LIBCURL_PC_CFLAGS_PRIVATE@
|
|
Link.ABI: c
|