diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..2d01d71c9
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,13 @@
+# To get started with Dependabot version updates, you'll need to specify which
+# package ecosystems to update and where the package manifests are located.
+# Please see the documentation for all configuration options:
+# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
+
+version: 2
+updates:
+
+ # Maintain dependencies for GitHub Actions
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "monthly"
diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml
new file mode 100644
index 000000000..9c7b7f763
--- /dev/null
+++ b/.github/workflows/CI_build.yml
@@ -0,0 +1,65 @@
+name: CI_build
+
+on: [push, pull_request]
+
+jobs:
+ build:
+
+ runs-on: windows-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ build_platform: [x64, x86, ARM64]
+
+ steps:
+ - name: Checkout repo
+ uses: actions/checkout@v4
+
+ - name: Add msbuild to PATH
+ uses: microsoft/setup-msbuild@v2
+
+ - name: Add nmake
+ if: matrix.build_platform == 'ARM64'
+ uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: amd64_arm64
+
+ - name: Add nmake
+ if: matrix.build_platform == 'x64' || matrix.build_platform == 'x86'
+ uses: ilammy/msvc-dev-cmd@v1
+ with:
+ arch: ${{ matrix.build_platform }}
+
+ - name: nmake libcurl
+ working-directory: curl/winbuild
+ run: |
+ set WINBUILD_ACKNOWLEDGE_DEPRECATED=yes
+ nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static WINBUILD_ACKNOWLEDGE_DEPRECATED=yes MACHINE="${{ matrix.build_platform }}"
+ nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static WINBUILD_ACKNOWLEDGE_DEPRECATED=yes DEBUG=yes MACHINE="${{ matrix.build_platform }}"
+
+ - name: MSBuild of GUP exe
+ working-directory: vcproj
+ run: |
+ msbuild GUP.sln /m /p:configuration="Release" /p:platform="${{ matrix.build_platform }}"
+ msbuild GUP.sln /m /p:configuration="Debug" /p:platform="${{ matrix.build_platform }}"
+
+ - name: Archive artifacts for x64
+ if: matrix.build_platform == 'x64'
+ uses: actions/upload-artifact@v4
+ with:
+ name: gup_exe_x64
+ path: bin64\
+
+ - name: Archive artifacts for x86
+ if: matrix.build_platform == 'x86'
+ uses: actions/upload-artifact@v4
+ with:
+ name: gup_exe_x86
+ path: bin\
+
+ - name: Archive artifacts for ARM64
+ if: matrix.build_platform == 'ARM64'
+ uses: actions/upload-artifact@v4
+ with:
+ name: gup_exe_arm64
+ path: binarm64\
diff --git a/.gitignore b/.gitignore
index 36c54019c..d301ccacf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -24,6 +24,7 @@ ipch/
*.opensdf
*.sdf
*.cachefile
+*.opendb
#-- Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
@@ -51,8 +52,10 @@ UpgradeLog*.htm
*.tmp_proj
.builds
*.pidb
+*.bak
bin/
bin64/
+binarm64/
curl/build
curl/builds
@@ -87,7 +90,6 @@ $RECYCLE.BIN/
*.d
*.o
-vcproj/GUP.sln
curl/winbuild/CURL_OBJS.inc
curl/winbuild/LIBCURL_OBJS.inc
curl/winbuild/vc120.idb
diff --git a/README.md b/README.md
index f074fb5f3..0de274a88 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,24 @@
-What is WinGup?
+What is WinGUp for Notepad++?
+--------------------------
+
+This project is a fork of [WinGUp](https://github.com/gup4win/wingup)
+WinGUp was originally built to meet the need of Notepad++, but its functionality was kept generic so it could be used with any Windows application. With the introduction of the built-in Plugins Admin in Notepad++, a more specific updater for Notepad++ become necessary. Hence this fork was created from the original WinGUp.
+
+**Note:** [the original repository of WinGUp](https://github.com/gup4win/wingup) is no longer maintained. You can integrate ***WinGUp for Notepad++***, which provides the basic updating feature, into your project.
+
+What is WinGUp?
---------------
-WinGup is a Generic Updater running under Windows environment.
-The aim of WinGup is to provide a ready to use and configurable updater
+WinGUp is a Generic Updater running under Windows environment.
+The aim of WinGUp is to provide a ready to use and configurable updater
which downloads a update package then installs it. By using cURL library
-and TinyXml module, WinGup is capable to deal with http protocol and process XML data.
+and TinyXml module, WinGUp is capable to deal with http protocol and process XML data.
-Why WinGup?
+Why WinGUp?
-----------
-Originally WinGup was made for the need of Notepad++ (a generic source code editor under MS Windows).
+Originally WinGUp was made for the need of Notepad++ (a generic source code editor under MS Windows).
During its conception, the idea came up in my mind: if it can fit Notepad++, it can fit for any Windows program.
So here it is, with LGPL license to have no (almost not) restriction for integration in any project.
@@ -19,8 +27,8 @@ So here it is, with LGPL license to have no (almost not) restriction for integra
How does it work?
-----------------
-WinGup can be launched by your program or manually. It reads from a xml configuration file
-for getting the current version of your program and url where WinGup gets update information,
+WinGUp can be launched by your program or manually. It reads from a xml configuration file
+for getting the current version of your program and url where WinGUp gets update information,
checks the url (with given current version) to get the update package location,
downloads the update package, then run the update package (it should be a msi or an exe) in question.
@@ -29,47 +37,50 @@ downloads the update package, then run the update package (it should be a msi or
Who will need it?
-----------------
-Being LGPLed, WinGup can be integrated in both commercial (or close source) and open source project.
+Being LGPLed, WinGUp can be integrated in both commercial (or close source) and open source project.
So if you run a commercial or open a source project under MS Windows and you release your program at
-regular intervals, then you may need WinGup to notice your users the new update.
+regular intervals, then you may need WinGUp to notice your users the new update.
What do you need to use it?
---------------------------
-A url to provide the update information to your WinGup and an another url location
+A url to provide the update information to your WinGUp and an another url location
to store your update package, that's it!
-How is WinGup easy to use?
+How is WinGUp easy to use?
--------------------------
-All you have to do is point WinGup to your url update page (by modifying gup.xml),
+All you have to do is point WinGUp to your url update page (by modifying gup.xml),
then work on your pointed url update page (see getDownLoadUrl.php comes with the release)
-to make sure it responds to your WinGup with the correct xml data.
+to make sure it responds to your WinGUp with the correct xml data.
How to build it?
----------------
- 0. You have to build cURL before building WinGup:
- ```
- a. Open VS2015 Native Tool Command for 32/64 bits
- b. go to curl winbuild directory:
- cd \curl\winbuild
- c. compile cURL by using one of the following commands, according the mode and archetecture of wingup you want to build.
- x64 release: nmake /f Makefile.vc mode=dll vc=14 RTLIBCFG=static MACHINE=x64
- x64 debug: nmake /f Makefile.vc mode=dll vc=14 RTLIBCFG=static DEBUG=yes MACHINE=x64
- x86 release: nmake /f Makefile.vc mode=dll vc=14 RTLIBCFG=static MACHINE=x86
- x86 debug: nmake /f Makefile.vc mode=dll vc=14 RTLIBCFG=static DEBUG=yes MACHINE=x86
-```
- 1. Open [`vcproj\GUP.vcxproj`](https://github.com/gup4win/wingup/blob/master/vcproj/GUP.vcxproj)
+ * Step 1: You have to build cURL before building WinGUp:
+
+ 1. Open VS2022 Native Tool Command for 32/64 bits. If you want to build for ARM, open a cmd, and run the following command:
+ `C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsamd64_arm64.bat`
+ 2. Go to winbuild directory under curl directory:
+ `cd \curl\winbuild\` then run:
+ `set WINBUILD_ACKNOWLEDGE_DEPRECATED=yes`
+ 3. Compile cURL by using one of the following commands, according the mode and architecture of WinGUp you want to build.
+ - x64 release: `nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static MACHINE=x64`
+ - x64 debug: `nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static DEBUG=yes MACHINE=x64`
+ - x86 release: `nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static MACHINE=x86`
+ - x86 debug: `nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static DEBUG=yes MACHINE=x86`
+ - ARM64 release: `nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static MACHINE=ARM64`
+ - ARM64 debug: `nmake /f Makefile.vc mode=dll vc=15 RTLIBCFG=static DEBUG=yes MACHINE=ARM64`
+
+ * Step 2: Open [`vcproj\GUP.sln`](https://github.com/gup4win/wingup/blob/master/vcproj/GUP.sln) with VS2022.
- 2. Build WinGup [like a normal Visual Studio project](https://msdn.microsoft.com/en-us/library/7s88b19e.aspx) with VS2015
-
+ * Step 3: Build WinGUp like a normal Visual Studio project.
To whom should you say "thank you"?
@@ -77,3 +88,4 @@ To whom should you say "thank you"?
Don HO
+
diff --git a/curl/CHANGES b/curl/CHANGES
deleted file mode 100644
index 5043a1f58..000000000
--- a/curl/CHANGES
+++ /dev/null
@@ -1,6806 +0,0 @@
- _ _ ____ _
- ___| | | | _ \| |
- / __| | | | |_) | |
- | (__| |_| | _ <| |___
- \___|\___/|_| \_\_____|
-
- Changelog
-
-Version 7.56.1 (23 Oct 2017)
-
-Daniel Stenberg (23 Oct 2017)
-- RELEASE-NOTES: 7.56.1
-
-- THANKS: update at 7.56.1 release time
-
-- [Jon DeVree brought this change]
-
- mk-ca-bundle: Remove URL for aurora
-
- Aurora is no longer used by Mozilla
- https://hacks.mozilla.org/2017/04/simplifying-firefox-release-channels/
-
-- [Jon DeVree brought this change]
-
- mk-ca-bundle: Fix URL for NSS
-
- The 'tip' is the most recent branch committed to, this should be
- 'default' like the URLs for the browser are.
-
- Closes #1998
-
-- imap: if a FETCH response has no size, don't call write callback
-
- CVE-2017-1000257
-
- Reported-by: Brian Carpenter and 0xd34db347
- Also detected by OSS-Fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3586
-
-- ftp: reject illegal IP/port in PASV 227 response
-
- ... by using range checks. Among other things, this avoids an undefined
- behavior for a left shift that could happen on negative or very large
- values.
-
- Closes #1997
-
- Detected by OSS-fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3694
-
-Patrick Monnerat (20 Oct 2017)
-- test653: check reuse of easy handle after mime data change
-
- See issue #1999
-
-- mime: do not reuse previously computed multipart size
-
- The contents might have changed: size must be recomputed.
-
- Reported-by: moteus on github
- Fixes #1999
-
-- test308: disable if MultiSSL feature enabled
-
- Even if OpenSSL is enabled, it might not be the default backend when
- multi-ssl is enabled, causing the test to fail.
-
-- runtests: support MultiSSL client feature
-
-- vtls: change struct Curl_ssl `close' field name to `close_one'.
-
- On OS/400, `close' is an ASCII system macro that corrupts the code if
- not used in a context not targetting the close() system API.
-
-- os400: add missing symbols in config file.
-
- Also adjust makefile to renamed files and warn about installation dirs mix-up.
-
-- test652: curl_mime_data + base64 encoder with large contents
-
-- mime: limit bas64-encoded lines length to 76 characters
-
-Daniel Stenberg (16 Oct 2017)
-- RELEASE-NOTES: synced with f121575c0
-
-- setopt: range check most long options
-
- ... filter early instead of risking "funny values" having to be dealt
- with elsewhere.
-
-- setopt: avoid integer overflows when setting millsecond values
-
- ... that are multiplied by 1000 when stored.
-
- For 32 bit long systems, the max value accepted (2147483 seconds) is >
- 596 hours which is unlikely to ever be set by a legitimate application -
- and previously it didn't work either, it just caused undefined behavior.
-
- Also updated the man pages for these timeout options to mention the
- return code.
-
- Closes #1938
-
-Viktor Szakats (15 Oct 2017)
-- makefile.m32: allow to override gcc, ar and ranlib
-
- Allow to ovverride certain build tools, making it possible to
- use LLVM/Clang to build curl. The default behavior is unchanged.
- To build with clang (as offered by MSYS2), these settings can
- be used:
-
- CURL_CC=clang
- CURL_AR=llvm-ar
- CURL_RANLIB=llvm-ranlib
-
- Closes https://github.com/curl/curl/pull/1993
-
-- ldap: silence clang warning
-
- Use memset() to initialize a structure to avoid LLVM/Clang warning:
- ldap.c:193:39: warning: missing field 'UserLength' initializer [-Wmissing-field-initializers]
-
- Closes https://github.com/curl/curl/pull/1992
-
-Daniel Stenberg (14 Oct 2017)
-- runtests: use valgrind for torture as well
-
- NOTE: it makes them terribly slow. I recommend only using valgrind for
- specific torture tests or using lots of patience.
-
-- memdebug: trace send, recv and socket
-
- ... to allow them to be included in torture tests too.
-
- closes #1980
-
-- configure: remove the C++ compiler check
-
- ... we used it only for the fuzzer, which we now have in a separate git
- repo.
-
- Closes #1990
-
-Patrick Monnerat (13 Oct 2017)
-- mime: do not call failf() if easy handle is NULL.
-
-Daniel Stenberg (13 Oct 2017)
-- test651: curl_formadd with huge COPYCONTENTS
-
-- mime: fix the content reader to handle >16K data properly
-
- Reported-by: Jeroen Ooms
- Closes #1988
-
-Patrick Monnerat (12 Oct 2017)
-- mime: keep "text/plain" content type if user-specified.
-
- Include test cases in 554, 587, 650.
-
- Fixes https://github.com/curl/curl/issues/1986
-
-- cli tool: use file2memory() to buffer stdin in -F option.
-
- Closes PR https://github.com/curl/curl/pull/1985
-
-- cli tool: reimplement stdin buffering in -F option.
-
- If stdin is not a regular file, its content is memory-buffered to enable
- a possible data "rewind".
- In all cases, stdin data size is determined before real use to avoid
- having an unknown part's size.
-
- --libcurl generated code is left as an unbuffered stdin fread/fseek callback
- part with unknown data size.
-
- Buffering is not supported in deprecated curl_formadd() API.
-
-Daniel Stenberg (12 Oct 2017)
-- winbuild/BUILD.WINDOWS.txt: mention WITH_NGHTTP2
-
-- HELP-US: the label "PR-welcome" is now renamed to "help wanted"
-
- following the new github "standard"
-
-- RELEASE-NOTES: synced with 5505df7d2
-
-Jay Satiro (11 Oct 2017)
-- [Artak Galoyan brought this change]
-
- url: Update current connection SSL verify params in setopt
-
- Now VERIFYHOST, VERIFYPEER and VERIFYSTATUS options change during active
- connection updates the current connection's (i.e.'connectdata'
- structure) appropriate ssl_config (and ssl_proxy_config) structures
- variables, making these options effective for ongoing connection.
-
- This functionality was available before and was broken by the
- following change:
- "proxy: Support HTTPS proxy and SOCKS+HTTP(s)"
- CommitId: cb4e2be7c6d42ca0780f8e0a747cecf9ba45f151.
-
- Bug: https://github.com/curl/curl/issues/1941
-
- Closes https://github.com/curl/curl/pull/1951
-
-Daniel Stenberg (11 Oct 2017)
-- [David Benjamin brought this change]
-
- openssl: don't use old BORINGSSL_YYYYMM macros
-
- Those were temporary things we'd add and remove for our own convenience
- long ago. The last few stayed around for too long as an oversight but
- have since been removed. These days we have a running
- BORINGSSL_API_VERSION counter which is bumped when we find it
- convenient, but 2015-11-19 was quite some time ago, so just check
- OPENSSL_IS_BORINGSSL.
-
- Closes #1979
-
-- test950; verify SMTP with custom request
-
-- ftpserver: support case insensitive commands
-
-- smtp_done: free data before returning (on send failure)
-
- ... as otherwise it could leak that memory.
-
- Detected by OSS-fuzz:
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3600
-
- Assisted-by: Max Dymond
- Closes #1977
-
-- FTP: URL decode path for dir listing in nocwd mode
-
- Reported-by: Zenju on github
-
- Test 244 added to verify
- Fixes #1974
- Closes #1976
-
-- test298: verify --ftp-method nowcwd with URL encoded path
-
- Ref: #1974
-
-- CURLOPT_XFERINFODATA.3: fix duplicate see also
-
-- CURLOPT_NOPROGRESS.3: also refer to xferinfofunction
-
-- FAQ: s/CURLOPT_PROGRESSFUNCTION/CURLOPT_XFERINFOFUNCTION
-
-- openssl: enable PKCS12 support for !BoringSSL
-
- Enable PKCS12 for all non-boringssl builds without relying on configure
- or cmake checks.
-
- Bug: https://curl.haxx.se/mail/lib-2017-10/0007.html
- Reported-by: Christian Schmitz
- Closes #1948
-
-- [Kristiyan Tsaklev brought this change]
-
- curl: don't pass semicolons when parsing Content-Disposition
-
- Test 1422 updated to verify.
-
- Closes #1964
-
-Patrick Monnerat (9 Oct 2017)
-- mime: properly unbind mime structure in curl_mime_free().
-
- This allows freeing a mime structure bound to the easy handle before
- curl_easy_cleanup().
-
- Fixes #1970.
-
-Daniel Stenberg (9 Oct 2017)
-- RTSP: avoid integer overflow on funny RTSP response
-
- ... like a very large non-existing RTSP version number.
-
- Added test 577 to verify.
-
- Detected by OSS-fuzz.
- Closes #1969
-
-Patrick Monnerat (8 Oct 2017)
-- ftpserver: properly reset $ftptargetdir.
-
-- test643: verify curl_mime_subparts() rejects cyclic additions.
-
-- mime: refuse to add subparts to one of their own descendants.
-
- Reported-by: Alexey Melnichuk
- Fixes #1962
-
-- mime: avoid resetting a part's encoder when part's contents change.
-
-- mime: improve unbinding top multipart from easy handle.
-
- Also avoid dangling pointers in referencing parts.
-
-Daniel Stenberg (8 Oct 2017)
-- RELEASE-NOTES: synced with a4c1c75da30af1
-
-- curlver.h: next expected release is 7.57.0
-
-Patrick Monnerat (8 Oct 2017)
-- mime: be tolerant about setting twice the same header list in a part.
-
-- docs: clarify form/mime usage of non-regular data files.
-
-Daniel Stenberg (8 Oct 2017)
-- Revert "multi_done: wait for name resolve to finish if still ongoing"
-
- This reverts commit f3e03f6c0ac52a1bf396e03f7d7e9b5b3b7165fe.
-
- Caused memory leaks in the fuzzer, needs to be done differently.
-
- Disable test 1553 for now too, as it causes memory leaks without this
- commit!
-
-- remove_handle: call multi_done() first, then clear dns cache pointer
-
- Closes #1960
-
-- multi_done: wait for name resolve to finish if still ongoing
-
- ... as we must clean up memory.
-
-- pingpong: return error when trying to send without connection
-
- When imap_done() got called before a connection is setup, it would try
- to "finish up" and dereffed a NULL pointer.
-
- Test case 1553 managed to reproduce. I had to actually use a host name
- to try to resolve to slow it down, as using the normal local server IP
- will make libcurl get a connection in the first curl_multi_perform()
- loop and then the bug doesn't trigger.
-
- Fixes #1953
- Assisted-by: Max Dymond
-
-Dan Fandrich (6 Oct 2017)
-- tests: added flaky keyword to tests 587 and 644
-
- These are around 5% flaky in my Linux x86 autobuilds.
-
-Marcel Raad (6 Oct 2017)
-- vtls: fix warnings with --disable-crypto-auth
-
- When CURL_DISABLE_CRYPTO_AUTH is defined, Curl_none_md5sum's parameters
- are not used.
-
-Daniel Stenberg (6 Oct 2017)
-- multi_cleanup: call DONE on handles that never got that
-
- ... fixes a memory leak with at least IMAP when remove_handle is never
- called and the transfer is abruptly just abandoned early.
-
- Test 1552 added to verify
-
- Detected by OSS-fuzz
- Assisted-by: Max Dymond
- Closes #1954
-
-- [Benbuck Nason brought this change]
-
- strtoofft: Remove extraneous null check
-
- Fixes #1950: curlx_strtoofft() doesn't fully protect against null 'str'
- argument.
-
- Closes #1952
-
-- openssl: fix build without HAVE_OPAQUE_EVP_PKEY
-
- Reported-by: Javier Sixto
- Fixes #1955
- Closes #1956
-
-Viktor Szakats (6 Oct 2017)
-- lib/config-win32.h: let SMB/SMBS be enabled with OpenSSL/NSS
-
- The source code is now prepared to handle the case when both
- Win32 Crypto and OpenSSL/NSS crypto backends are enabled
- at the same time, making it now possible to enable `USE_WIN32_CRYPTO`
- whenever the targeted Windows version supports it. Since this
- matches the minimum Windows version supported by curl
- (Windows 2000), enable it unconditionally for the Win32 platform.
-
- This in turn enables SMB (and SMBS) protocol support whenever
- Win32 Crypto is available, regardless of what other crypto backends
- are enabled.
-
- Ref: https://github.com/curl/curl/pull/1840#issuecomment-325682052
-
- Closes https://github.com/curl/curl/pull/1943
-
-Daniel Stenberg (5 Oct 2017)
-- build: fix --disable-crypto-auth
-
- Reported-by: Wyatt O'Day
- Fixes #1945
- Closes #1947
-
-Jay Satiro (5 Oct 2017)
-- [Nick Zitzmann brought this change]
-
- darwinssl: add support for TLSv1.3
-
- Closes https://github.com/curl/curl/pull/1794
-
-Daniel Stenberg (4 Oct 2017)
-- [Felix Kaiser brought this change]
-
- docs: fix typo in curl_mime_data_cb man page
-
- Closes #1946
-
-Viktor Szakats (4 Oct 2017)
-- lib/Makefile.m32: allow customizing dll suffixes
-
- - New `CURL_DLL_SUFFIX` envvar will add a suffix to the generated
- libcurl dll name. Useful to add `-x64` to 64-bit builds so that
- it can live in the same directory as the 32-bit one. By default
- this is empty.
-
- - New `CURL_DLL_A_SUFFIX` envvar to customize the suffix of the
- generated import library (implib) for libcurl .dll. It defaults
- to `dll`, and it's useful to modify that to `.dll` to have the
- standard naming scheme for mingw-built .dlls, i.e. `libcurl.dll.a`.
-
- Closes https://github.com/curl/curl/pull/1942
-
-Daniel Stenberg (4 Oct 2017)
-- [Max Dymond brought this change]
-
- fuzzer: move to using external curl-fuzzer
-
- Use the external curl-fuzzer repository for fuzzing.
-
- Closes #1923
-
-- failf: skip the sprintf() if there are no consumers
-
- Closes #1936
-
-- ftp: UBsan fixup 'pointer index expression overflowed'
-
- Closes #1939
-
-- RELEASE-PROCEDURE: update the release schedule
-
-Version 7.56.0 (4 Oct 2017)
-
-Daniel Stenberg (4 Oct 2017)
-- RELEASE-NOTES: curl 7.56.0
-
-- THANKS: added new 7.56.0 contributors
-
-Jay Satiro (4 Oct 2017)
-- build-openssl.bat: Warn OpenSSL 1.1.0 not yet supported
-
- Ref: https://github.com/curl/curl/issues/1002
-
-Michael Kaufmann (3 Oct 2017)
-- idn: fix source code comment
-
-- vtls: compare and clone ssl configs properly
-
- Compare these settings in Curl_ssl_config_matches():
- - verifystatus (CURLOPT_SSL_VERIFYSTATUS)
- - random_file (CURLOPT_RANDOM_FILE)
- - egdsocket (CURLOPT_EGDSOCKET)
-
- Also copy the setting "verifystatus" in Curl_clone_primary_ssl_config(),
- and copy the setting "sessionid" unconditionally.
-
- This means that reusing connections that are secured with a client
- certificate is now possible, and the statement "TLS session resumption
- is disabled when a client certificate is used" in the old advisory at
- https://curl.haxx.se/docs/adv_20170419.html is obsolete.
-
- Reviewed-by: Daniel Stenberg
-
- Closes #1917
-
-- proxy: read the "no_proxy" variable only if necessary
-
- Reviewed-by: Daniel Stenberg
-
- Closes #1919
-
-Patrick Monnerat (3 Oct 2017)
-- libcurl-tutorial: add casts in example to avoid compilation warnings.
-
-Daniel Stenberg (3 Oct 2017)
-- examples: bring back curl_formadd-using examples
-
- ... now with a -formadd suffix. While the new mime API is introduced in
- 7.56.0 we must acknowledge that lots of users can't upgrade their curl
- versions immediately.
-
-- test1153: verify quoted double-qoutes in PWD response
-
-- FTP: zero terminate the entry path even on bad input
-
- ... a single double quote could leave the entry path buffer without a zero
- terminating byte. CVE-2017-1000254
-
- Test 1152 added to verify.
-
- Reported-by: Max Dymond
- Bug: https://curl.haxx.se/docs/adv_20171004.html
-
-Jay Satiro (2 Oct 2017)
-- [Sergei Nikulov brought this change]
-
- cmake: disable tests and man generation if perl/nroff not found
-
- Fixes https://github.com/curl/curl/issues/1500
- Reported-by: Jay Satiro
-
- Fixes https://github.com/curl/curl/pull/1662
- Assisted-by: Tom Seddon
- Assisted-by: dpull@users.noreply.github.com
- Assisted-by: elelel@users.noreply.github.com
-
- Closes https://github.com/curl/curl/pull/1924
-
-Patrick Monnerat (2 Oct 2017)
-- libcurl-tutorial: fix two typos.
-
-- TODO: remove deprecated form API items.
-
-- libcurl-tutorial: describe MIME API and deprecate form API.
-
- Include a guide to form/mime API conversion.
-
-Daniel Stenberg (30 Sep 2017)
-- cookie: fix memory leak if path was set twice in header
-
- ... this will let the second occurance override the first.
-
- Added test 1161 to verify.
-
- Reported-by: Max Dymond
- Fixes #1932
- Closes #1933
-
-Dan Fandrich (30 Sep 2017)
-- test650: Use variable replacement to set the host address and port
-
- Otherwise, the test fails when the -b test option is used to set a
- different test port range.
-
-- Set and use more necessary options when some protocols are disabled
-
- When curl and libcurl are built with some protocols disabled, they stop
- setting and receiving some options that don't make sense with those
- protocols. In particular, when HTTP is disabled many options aren't set
- that are used only by HTTP. However, some options that appear to be
- HTTP-only are actually used by other protocols as well (some despite
- having HTTP in the name) and should be set, but weren't. This change now
- causes some of these options to be set and used for more (or for all)
- protocols. In particular, this fixes tests 646 through 649 in an
- HTTP-disabled build, which use the MIME API in the mail protocols.
-
-Daniel Stenberg (29 Sep 2017)
-- test1160: verifies cookie leak for large cookies
-
- The fix done in 20ea22ff735
-
-- cookie: fix memory leak on oversized rejection
-
- Regression brought by 2bc230de63b
-
- Detected by OSS-fuzz: https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3513
- Assisted-by: Max Dymond
-
- Closes #1930
-
-- [Anders Bakken brought this change]
-
- connect: fix race condition with happy eyeballs timeout
-
- The timer should be started after conn->connecttime is set. Otherwise
- the timer could expire without this condition being true:
-
- /* should we try another protocol family? */
- if(i == 0 && conn->tempaddr[1] == NULL &&
- curlx_tvdiff(now, conn->connecttime) >= HAPPY_EYEBALLS_TIMEOUT) {
-
- Ref: #1928
-
-Michael Kaufmann (28 Sep 2017)
-- docs: link CURLOPT_CONNECTTIMEOUT and CURLOPT_CONNECTTIMEOUT_MS
-
- Closes #1922
-
-- docs: clarify the use of environment variables for proxy
-
- Closes #1921
-
-- http: add custom empty headers to repeated requests
-
- Closes #1920
-
-- reuse_conn: don't copy flags that are known to be equal
-
- A connection can only be reused if the flags "conn_to_host" and
- "conn_to_port" match. Therefore it is not necessary to copy these flags
- in reuse_conn().
-
- Closes #1918
-
-Daniel Stenberg (27 Sep 2017)
-- curl.h: include on cygwin too
-
- When building with -std=c++14 on cygwin, this header won't be
- automatically included as it otherwise is.
-
- The include decision should ideally be reversed and be
- avoided where that header file doesn't exist.
-
- Reported-by: Ian Fette
- Fixes #1925
-
-- RELEASE-NOTES: synced with d8ab5dc50
-
-Michael Kaufmann (24 Sep 2017)
-- tests: adjust .gitignore for new tests
-
-Jay Satiro (23 Sep 2017)
-- ntlm: move NTLM_NEEDS_NSS_INIT define into core NTLM header
-
- .. and include the core NTLM header in all NTLM-related source files.
-
- Follow up to 6f86022. Since then http_ntlm checks NTLM_NEEDS_NSS_INIT
- but did not include vtls.h where it was defined.
-
- Closes https://github.com/curl/curl/pull/1911
-
-Daniel Stenberg (23 Sep 2017)
-- file_range: avoid integer overflow when figuring out byte range
-
- When trying to bump the value with one and the value is already at max,
- it causes an integer overflow.
-
- Closes #1908
- Detected by oss-fuzz:
- https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3465
-
- Assisted-by: Max Dymond
-
-Michael Kaufmann (23 Sep 2017)
-- tests: fix a compiler warning in test 643
-
-Jay Satiro (23 Sep 2017)
-- symbols-in-versions: fix CURLSSLSET_NO_BACKENDS entry
-
- - Use spaces instead of tabs as the delimiter.
-
- Follow up to 7c52b12 which added the entry. The entry had used tabs but
- the symbol-scan parser doesn't recognize tabs and would fail the symbol.
-
-Viktor Szakats (22 Sep 2017)
-- metalink: fix NSS issue in MultiSSL builds
-
- In MultiSSL mode (i.e. when more than one SSL backend is compiled
- in), we cannot use the compile time flag `USE_NSS` as indicator that
- the NSS backend is in use. As far as Metalink is concerned, the SSL
- backend is only used for MD5, SHA-1 and SHA-256 calculations,
- therefore one of the available SSL backends is selected at compile
- time, in a strict order of preference.
-
- Let's introduce a new `HAVE_NSS_CONTEXT` constant that can be used
- to determine whether the SSL backend used for Metalink is the NSS
- backend, and use that to guard the code that wants to de-initialize
- the NSS-specific data structure.
-
- Ref: https://github.com/curl/curl/pull/1848
-
-- ntlm: use strict order for SSL backend #if branches
-
- With the recently introduced MultiSSL support multiple SSL backends
- can be compiled into cURL That means that now the order of the SSL
-
- One option would be to use the same SSL backend as was configured
- via `curl_global_sslset()`, however, NTLMv2 support would appear
- to be available only with some SSL backends. For example, when
- eb88d778e (ntlm: Use Windows Crypt API, 2014-12-02) introduced
- support for NTLMv1 using Windows' Crypt API, it specifically did
- *not* introduce NTLMv2 support using Crypt API at the same time.
-
- So let's select one specific SSL backend for NTLM support when
- compiled with multiple SSL backends, using a priority order such
- that we support NTLMv2 even if only one compiled-in SSL backend can
- be used for that.
-
- Ref: https://github.com/curl/curl/pull/1848
-
-Daniel Stenberg (22 Sep 2017)
-- symbols-in-versions: add CURLSSLSET_NO_BACKENDS
-
- ...fixup from b8e0fe19ec
-
-- imap: quote atoms properly when escaping characters
-
- Updates test 800 to verify
-
- Fixes #1902
- Closes #1903
-
-- tests: make the imap server not verify user+password
-
- ... as the test cases themselves do that and it makes it easier to add
- crazy test cases.
-
- Test 800 updated to use user name + password that need quoting.
-
- Test 856 updated to trigger an auth fail differently.
-
- Ref: #1902
-
-- vtls: provide curl_global_sslset() even in non-SSL builds
-
- ... it just returns error:
-
- Bug: https://github.com/curl/curl/commit/1328f69d53f2f2e937696ea954c480412b018451#commitcomment-24470367
- Reported-by: Marcel Raad
-
- Closes #1906
-
-Patrick Monnerat (22 Sep 2017)
-- form/mime: field names are not allowed to contain zero-valued bytes.
-
- Also suppress length argument of curl_mime_name() (names are always
- zero-terminated).
-
-Daniel Stenberg (21 Sep 2017)
-- [Dirk Feytons brought this change]
-
- openssl: only verify RSA private key if supported
-
- In some cases the RSA key does not support verifying it because it's
- located on a smart card, an engine wants to hide it, ...
- Check the flags on the key before trying to verify it.
- OpenSSL does the same thing internally; see ssl/ssl_rsa.c
-
- Closes #1904
-
-Marcel Raad (21 Sep 2017)
-- examples/post-callback: use long for CURLOPT_POSTFIELDSIZE
-
- Otherwise, typecheck-gcc.h warns on MinGW-w64.
-
-Patrick Monnerat (20 Sep 2017)
-- mime: rephrase the multipart output state machine (#1898) ...
-
- ... in hope coverity will like it much.
-
-- mime: fix an explicit null dereference (#1899)
-
-Daniel Stenberg (20 Sep 2017)
-- curl: check fseek() return code and bail on error
-
- Detected by coverity. CID 1418137.
-
-- smtp: fix memory leak in OOM
-
- Regression since ce0881edee
-
- Coverity CID 1418139 and CID 1418136 found it, but it was also seen in
- torture testing.
-
-- RELEASE-NOTES: synced with 5fe85587c
-
-- [Pavel P brought this change]
-
- cookies: use lock when using CURLINFO_COOKIELIST
-
- Closes #1896
-
-- [Max Dymond brought this change]
-
- ossfuzz: changes before merging the generated corpora
-
- Before merging in the oss-fuzz corpora from Google, there are some changes
- to the fuzzer.
- - Add a read corpus script, to display corpus files nicely.
- - Change the behaviour of the fuzzer so that TLV parse failures all now
- go down the same execution paths, which should reduce the size of the
- corpora.
- - Make unknown TLVs a failure to parse, which should decrease the size
- of the corpora as well.
-
- Closes #1881
-
-- mime:escape_string minor clarification change
-
- ... as it also removes a warning with old gcc versions.
-
- Bug: https://curl.haxx.se/mail/lib-2017-09/0049.html
- Reported-by: Ben Greear
-
-- [Max Dymond brought this change]
-
- ossfuzz: don't write out to stdout
-
- Don't make the fuzzer write out to stdout - instead write some of the
- contents to a memory block so we exercise the data output code but
- quietly.
-
- Closes #1885
-
-- cookies: reject oversized cookies
-
- ... instead of truncating them.
-
- There's no fixed limit for acceptable cookie names in RFC 6265, but the
- entire cookie is said to be less than 4096 bytes (section 6.1). This is
- also what browsers seem to implement.
-
- We now allow max 5000 bytes cookie header. Max 4095 bytes length per
- cookie name and value. Name + value together may not exceed 4096 bytes.
-
- Added test 1151 to verify
-
- Bug: https://curl.haxx.se/mail/lib-2017-09/0062.html
- Reported-by: Kevin Smith
-
- Closes #1894
-
-- travis: on mac, don't install openssl or libidn
-
- - openssl is already installed and causes warnings when trying to
- install again
-
- - libidn isn't used these days, and homebrew doesn't seem to have a
- libidn2 package to replace with easily
-
- Closes #1895
-
-- curl: make str2udouble not return values on error
-
- ... previously it would store a return value even when it returned
- error, which could make the value get used anyway!
-
- Reported-by: Brian Carpenter
- Closes #1893
-
-Jay Satiro (18 Sep 2017)
-- socks: fix incorrect port number in SOCKS4 error message
-
- Prior to this change it appears the SOCKS5 port parsing was erroneously
- used for the SOCKS4 error message, and as a result an incorrect port
- would be shown in the error message.
-
- Bug: https://github.com/curl/curl/issues/1892
- Reported-by: Jackarain@users.noreply.github.com
-
-- [Marc Aldorasi brought this change]
-
- schannel: Support partial send for when data is too large
-
- Schannel can only encrypt a certain amount of data at once. Instead of
- failing when too much data is to be sent at once, send as much data as
- we can and let the caller send the remaining data by calling send again.
-
- Bug: https://curl.haxx.se/mail/lib-2014-07/0033.html
-
- Closes https://github.com/curl/curl/pull/1890
-
-- [David Benjamin brought this change]
-
- openssl: add missing includes
-
- lib/vtls/openssl.c uses OpenSSL APIs from BUF_MEM and BIO APIs. Include
- their headers directly rather than relying on other OpenSSL headers
- including things.
-
- Closes https://github.com/curl/curl/pull/1891
-
-Daniel Stenberg (15 Sep 2017)
-- conversions: fix several compiler warnings
-
-- server/getpart: provide dummy function to build conversion enabled
-
-- non-ascii: use iconv() with 'char **' argument
-
- Bug: https://curl.haxx.se/mail/lib-2017-09/0031.html
-
-- escape.c: error: pointer targets differ in signedness
-
-- docs: clarify the CURLOPT_INTERLEAVE* options behavior
-
-- [Max Dymond brought this change]
-
- rtsp: Segfault in rtsp.c when using WRITEDATA
-
- If the INTERLEAVEFUNCTION is defined, then use that plus the
- INTERLEAVEDATA information when writing RTP. Otherwise, use
- WRITEFUNCTION and WRITEDATA.
-
- Fixes #1880
- Closes #1884
-
-Marcel Raad (15 Sep 2017)
-- [Isaac Boukris brought this change]
-
- tests: enable gssapi in travis-ci linux build
-
- Closes https://github.com/curl/curl/pull/1687
-
-- [Isaac Boukris brought this change]
-
- tests: add initial gssapi test using stub implementation
-
- The stub implementation is pre-loaded using LD_PRELOAD
- and emulates common gssapi uses (only builds if curl is
- initially built with gssapi support).
-
- The initial tests are currently disabled for debug builds
- as LD_PRELOAD is not used then.
-
- Ref: https://github.com/curl/curl/pull/1687
-
-Daniel Stenberg (15 Sep 2017)
-- test1150: verify same host fetch using different ports over proxy
-
- Closes #1889
-
-- URL: on connection re-use, still pick the new remote port
-
- ... as when a proxy connection is being re-used, it can still get a
- different remote port.
-
- Fixes #1887
- Reported-by: Oli Kingshott
-
-- RELEASE-NOTES: synced with 87501e57f
-
-- code style: remove wrong uses of multiple spaces
-
- Closes #1878
-
-- checksrc: detect and warn for multiple spaces
-
-- code style: use space after semicolon
-
-- checksrc: verify space after semicolons
-
-- code style: use spaces around pluses
-
-- checksrc: detect and warn for lack of spaces next to plus signs
-
-- code style: use spaces around equals signs
-
-- checksrc: verify spaces around equals signs
-
- ... as the code style mandates.
-
-- Curl_checkheaders: make it available for IMAP and SMTP too
-
- ... not only HTTP uses this now.
-
- Closes #1875
-
-- travis: add build without HTTP/SMTP/IMAP
-
-Jay Satiro (10 Sep 2017)
-- mbedtls: enable CA path processing
-
- CA path processing was implemented when mbedtls.c was added to libcurl
- in fe7590f, but it was never enabled.
-
- Bug: https://github.com/curl/curl/issues/1877
- Reported-by: SBKarr@users.noreply.github.com
-
-Daniel Stenberg (8 Sep 2017)
-- rtsp: do not call fwrite() with NULL pointer FILE *
-
- If the default write callback is used and no destination has been set, a
- NULL pointer would be passed to fwrite()'s 4th argument.
-
- OSS-fuzz bug https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3327
- (not publicly open yet)
-
- Detected by OSS-fuzz
- Closes #1874
-
-- configure: use -Wno-varargs on clang 3.9[.X] debug builds
-
- ... to avoid a clang bug
-
-- [Max Dymond brought this change]
-
- ossfuzz: add some more handled CURL options
-
- Add support for HEADER, COOKIE, RANGE, CUSTOMREQUEST, MAIL_RECIPIENT,
- MAIL_FROM and uploading data.
-
-- configure: check for C++ compiler after C, to make it non-fatal
-
- The tests for object file/executable file extensions are presumably only
- done for the first of these macros in the configure file.
-
- Bug: https://github.com/curl/curl/pull/1851#issuecomment-327597515
- Reported-by: Marcel Raad
- Closes #1873
-
-Patrick Monnerat (7 Sep 2017)
-- form API: add new test 650.
-
- Now that the form API is deprecated and not used anymore in curl tool,
- a lot of its features left untested. Test 650 attempts to check all these
- features not tested elsewhere.
-
-Jay Satiro (7 Sep 2017)
-- configure: fix curl_off_t check's include order
-
- - Prepend srcdir include path instead of append.
-
- Prior to this change it was possible that during the check for the size
- of curl_off_t the include path of a user's already installed curl could
- come before the include path of the to-be-built curl, resulting in the
- system.h of the former being incorrectly included for that check.
-
- Closes https://github.com/curl/curl/pull/1870
-
-Daniel Stenberg (7 Sep 2017)
-- [Jakub Zakrzewski brought this change]
-
- KNOWN_BUGS: Remove CMake symbol hiding issue
-
- It has already been fixed in 6140dfc
-
-- http-proxy: when not doing CONNECT, that phase is done immediately
-
- `conn->connect_state` is NULL when doing a regular non-CONNECT request
- over the proxy and should therefor be considered complete at once.
-
- Fixes #1853
- Closes #1862
- Reported-by: Lawrence Wagerfield
-
-- [Johannes Schindelin brought this change]
-
- OpenSSL: fix yet another mistake while encapsulating SSL backend data
-
- Another mistake in my manual fixups of the largely mechanical
- search-and-replace ("connssl->" -> "BACKEND->"), just like the previous
- commit concerning HTTPS proxies (and hence not caught during my
- earlier testing).
-
- Fixes #1855
- Closes #1871
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- OpenSSL: fix erroneous SSL backend encapsulation
-
- In d65e6cc4f (vtls: prepare the SSL backends for encapsulated private
- data, 2017-06-21), this developer prepared for a separation of the
- private data of the SSL backends from the general connection data.
-
- This conversion was partially automated (search-and-replace) and
- partially manual (e.g. proxy_ssl's backend data).
-
- Sadly, there was a crucial error in the manual part, where the wrong
- handle was used: rather than connecting ssl[sockindex]' BIO to the
- proxy_ssl[sockindex]', we reconnected proxy_ssl[sockindex]. The reason
- was an incorrect location to paste "BACKEND->"... d'oh.
-
- Reported by Jay Satiro in https://github.com/curl/curl/issues/1855.
-
- Signed-off-by: Johannes Schindelin
-
-- [Jay Satiro brought this change]
-
- vtls: fix memory corruption
-
- Ever since 70f1db321 (vtls: encapsulate SSL backend-specific data,
- 2017-07-28), the code handling HTTPS proxies was broken because the
- pointer to the SSL backend data was not swapped between
- conn->ssl[sockindex] and conn->proxy_ssl[sockindex] as intended, but
- instead set to NULL (causing segmentation faults).
-
- [jes: provided the commit message, tested and verified the patch]
-
- Signed-off-by: Johannes Schindelin
-
-- vtls: switch to CURL_SHA256_DIGEST_LENGTH define
-
- ... instead of the prefix-less version since WolfSSL 3.12 now uses an
- enum with that name that causes build failures for us.
-
- Fixes #1865
- Closes #1867
- Reported-by: Gisle Vanem
-
-- travis: add c-ares enabled builds linux + osx
-
- Closes #1868
-
-- HISTORY: added some recent items
-
-Jay Satiro (6 Sep 2017)
-- SSL: fix unused parameter warnings
-
-Patrick Monnerat (6 Sep 2017)
-- mime: drop internal FILE * support.
-
- - The part kind MIMEKIND_FILE and associated code are suppressed.
- - Seek data origin offset not used anymore: suppressed.
- - MIMEKIND_NAMEDFILE renamed MIMEKIND_FILE; associated fields/functions
- renamed accordingly.
- - Curl_getformdata() processes stdin via a callback.
-
-Daniel Stenberg (6 Sep 2017)
-- configure: remove --enable-soname-bump and SONAME_BUMP
-
- Back in 2008, (and commit 3f3d6ebe665f3) we changed the logic in how we
- determine the native type for `curl_off_t`. To really make sure we
- didn't break ABI without bumping SONAME, we introduced logic that
- attempted to detect that it would use a different size and thus not be
- compatible. We also provided a manual switch that allowed users to tell
- configure to bump SONAME by force.
-
- Today, we know of no one who ever got a SONAME bump auto-detected and we
- don't know of anyone who's using the manual bump feature. The auto-
- detection is also no longer working since we introduced defining
- curl_off_t in system.h (7.55.0).
-
- Finally, this bumping logic is not present in the cmake build.
-
- Closes #1861
-
-Jay Satiro (6 Sep 2017)
-- [Gisle Vanem brought this change]
-
- vtls: select ssl backend case-insensitive (follow-up)
-
- - Do a case-insensitive comparison of CURL_SSL_BACKEND env as well.
-
- - Change Curl_strcasecompare calls to strcasecompare
- (maps to the former but shorter).
-
- Follow-up to c290b8f.
-
- Bug: https://github.com/curl/curl/commit/c290b8f#commitcomment-24094313
-
- Co-authored-by: Jay Satiro
-
-- openssl: Integrate Peter Wu's SSLKEYLOGFILE implementation
-
- This is an adaptation of 2 of Peter Wu's SSLKEYLOGFILE implementations.
-
- The first one, written for old OpenSSL versions:
- https://git.lekensteyn.nl/peter/wireshark-notes/tree/src/sslkeylog.c
-
- The second one, written for BoringSSL and new OpenSSL versions:
- https://github.com/curl/curl/pull/1346
-
- Note the first one is GPL licensed but the author gave permission to
- waive that license for libcurl.
-
- As of right now this feature is disabled by default, and does not have
- a configure option to enable it. To enable this feature define
- ENABLE_SSLKEYLOGFILE when building libcurl and set environment
- variable SSLKEYLOGFILE to a pathname that will receive the keys.
-
- And in Wireshark change your preferences to point to that key file:
- Edit > Preferences > Protocols > SSL > Master-Secret
-
- Co-authored-by: Peter Wu
-
- Ref: https://github.com/curl/curl/pull/1030
- Ref: https://github.com/curl/curl/pull/1346
-
- Closes https://github.com/curl/curl/pull/1866
-
-Patrick Monnerat (5 Sep 2017)
-- mime: fix a trivial warning.
-
-- mime: replace 'struct Curl_mimepart' by 'curl_mimepart' in encoder code.
-
- mime_state is now a typedef.
-
-- mime: implement encoders.
-
- curl_mime_encoder() is operational and documented.
- curl tool -F option is extended with ";encoder=".
- curl tool --libcurl option generates calls to curl_mime_encoder().
- New encoder tests 648 & 649.
- Test 1404 extended with an encoder specification.
-
-- runtests.pl: support attribute "nonewline" in part verify/upload.
-
-- [Daniel Stenberg brought this change]
-
- fixup data/test1135
-
-- [Daniel Stenberg brought this change]
-
- mime: unified to use the typedef'd mime structs everywhere
-
- ... and slightly edited to follow our code style better.
-
-- [Daniel Stenberg brought this change]
-
- curl.h: use lower case curl_mime* as for all public symbols
-
-- [Daniel Stenberg brought this change]
-
- docs/curl_mime_*.3: use correct variable types in examples
-
-Kamil Dudka (5 Sep 2017)
-- openssl: use OpenSSL's default ciphers by default
-
- Up2date versions of OpenSSL maintain the default reasonably secure
- without breaking compatibility, so it is better not to override the
- default by curl. Suggested at https://bugzilla.redhat.com/1483972
-
- Closes #1846
-
-Viktor Szakats (5 Sep 2017)
-- examples/mime: minor example code fixes
-
-Daniel Stenberg (5 Sep 2017)
-- docs/curl_mime_*.3: added examples
-
-- configure: add MultiSSL to FEATURES when enabled
-
- ...for curl-config and its corresponding test 1014
-
-- http-proxy: treat all 2xx as CONNECT success
-
- Added test 1904 to verify.
-
- Reported-by: Lawrence Wagerfield
- Fixes #1859
- Closes #1860
-
-- MAIL-ETIQUETTE: added "1.9 Your emails are public"
-
-- curl.h: fix "unused checksrc ignore", remove dangling reference
-
- ... to a README file that doesn't exist anymore
-
-Viktor Szakats (4 Sep 2017)
-- docs: Update to secure URL versions
-
-- mime: use CURL_ZERO_TERMINATED in examples
-
- and some minor whitespace fixes
-
-Daniel Stenberg (4 Sep 2017)
-- schannel: return CURLE_SSL_CACERT on failed verification
-
- ... not *CACERT_BADFILE as it isn't really because of a bad file.
-
- Bug: https://curl.haxx.se/mail/lib-2017-09/0002.html
- Closes #1858
-
-- test1135: fixed after bd8070085f9
-
-- examples/post-callback: stop returning one byte at a time
-
- ... since people copy and paste code from this example and thus they get
- an inefficient POST operation without a good reason and sometimes
- without understanding why.
-
- Instead this now returns as much data as possible.
-
-- RELEASE-NOTES: fixed the function counter script
-
-- curl.h: make the curl_strequal() protos use the same style
-
- ... as the other functions. Makes it easier to machine-parse!
-
-- docs: curl_mime_*.3 man page formatting edits
-
-- RELEASE-NOTES: synced with 1ab9e9b50
-
-Patrick Monnerat (4 Sep 2017)
-- lib: bump version info (soname). Adapt and reenable test 1135.
-
-Daniel Stenberg (3 Sep 2017)
-- headers: move the global_sslset() proto from multi.h to curl.h
-
- As it was added to multi.h simply to not break test 1135, which now has
- been disabled due to the mime API addition anyway and su we can now move
- the sslset stuff to where the other curl_global_* prototypes are.
-
-Patrick Monnerat (3 Sep 2017)
-- mime: fix signed/unsigned conversions.
-
- Use and generate CURL_ZERO_TERMINATED in curl tool and tests.
-
-Jay Satiro (3 Sep 2017)
-- tool_formparse: fix some trivial warnings
-
-Patrick Monnerat (3 Sep 2017)
-- mime: use size_t instead of ssize_t in public API interface.
-
- To support telling a string is nul-terminated, symbol CURL_ZERO_TERMINATED
- has been introduced.
-
- Documentation updated accordingly.
-
- symbols in versions updated. Added form API symbols deprecation info.
-
-- mime: remove support "-" stdin pseudo-file name in curl_mime_filedata().
-
- This feature is badly supported in Windows: as a replacement, a caller has
- to use curl_mime_data_cb() with fread, fseek and possibly fclose
- callbacks to process opened files.
-
- The cli tool and documentation are updated accordingly.
-
- The feature is however kept internally for form API compatibility, with
- the known caveats it always had.
-
- As a side effect, stdin size is not determined by the cli tool even if
- possible and this results in a chunked transfer encoding. Test 173 is
- updated accordingly.
-
-- mime: fix some implicit curl_off_t --> size_t conversion warnings.
-
-- mime: tests and examples.
-
- Additional mime-specific tests.
- Existing tests updated to reflect small differences (Expect: 100-continue,
- data size change due to empty lines, etc).
- Option -F headers= keyword added to tests.
- test1135 disabled until the entry point order change is resolved.
- New example smtp-mime.
- Examples postit2 and multi-post converted from form API to mime API.
-
-- mime: use in curl cli tool instead of form API.
-
- Extended -F option syntax to support multipart mail messages.
- -F keyword headers= added to include custom headers in parts.
- Documentation upgraded.
-
-- mime: new MIME API.
-
- Available in HTTP, SMTP and IMAP.
- Deprecates the FORM API.
- See CURLOPT_MIMEPOST.
- Lib code and associated documentation.
-
-- test564: Add a warning comment about shell profile output.
-
- Shell profile output makes the SSH server failing and this problem reason
- is not easy to find when no hint is given.
-
-- checksrc: disable SPACEBEFOREPAREN for case statement.
-
- The case keyword may be followed by a constant expression and thus should
- allow it to start with an open parenthesis.
-
-- runtests.pl: allow tags in client section.
-
- This enables tests to create more than one file on the client side.
-
-- runtests.pl: Apply strippart to upload too.
-
- This will allow substitution of boundaries in mail messages.
-
-- Curl_base64_encode: always call with a real data handle.
-
- Some calls in different modules were setting the data handle to NULL, causing
- segmentation faults when using builds that enable character code conversions.
-
-- non-ascii: allow conversion functions to be called with a NULL data handle.
-
-- http: fix a memory leakage in checkrtspprefix().
-
-Daniel Stenberg (2 Sep 2017)
-- [Max Dymond brought this change]
-
- ossfuzz: Move to C++ for curl_fuzzer.
-
- Automake gets confused if you want to use C++ static libraries with C
- code - basically we need to involve the clang++ linker. The easiest way
- of achieving this is to rename the C code as C++ code. This gets us a
- bit further along the path and ought to be compatible with Google's
- version of clang.
-
-- curl_global_sslset: select backend by name case insensitively
-
- Closes #1849
-
-- [Max Dymond brought this change]
-
- ossfuzz: additional seed corpora
-
- Create simple seed corpora for:
- - FTP
- - telnet
- - dict
- - tftp
- - imap
- - pop3
-
- based off the tests of the same number.
-
- Closes #1842
-
-- [Max Dymond brought this change]
-
- ossfuzz: moving towards the ideal integration
-
- - Start with the basic code from the ossfuzz project.
- - Rewrite fuzz corpora to be binary files full of Type-Length-Value
- data, and write a glue layer in the fuzzing function to convert
- corpora into CURL options.
- - Have supporting functions to generate corpora from existing tests
- - Integrate with Makefile.am
-
-- strcase: corrected comment header for Curl_strcasecompare()
-
-- unit1301: fix error message on first test
-
-- curl_global_sslset.3: show the struct and enum too
-
- ... so that users can actually write code based on the man page alone,
- not having to read the header file.
-
-Jay Satiro (31 Aug 2017)
-- darwinssl: handle long strings in TLS certs (follow-up)
-
- - Fix handling certificate subjects that are already UTF-8 encoded.
-
- Follow-up to b3b75d1 from two days ago. Since then a copy would be
- skipped if the subject was already UTF-8, possibly resulting in a NULL
- deref later on.
-
- Ref: https://github.com/curl/curl/issues/1823
- Ref: https://github.com/curl/curl/pull/1831
-
- Closes https://github.com/curl/curl/pull/1836
-
-Daniel Stenberg (31 Aug 2017)
-- cyassl: call it the "WolfSSL" backend
-
- ... instead of cyassl, as this is the current name for it.
-
- Closes #1844
-
-- polarssl: fix multissl breakage
-
- Reported-by: Dan Fandrich
- Bug: https://curl.haxx.se/mail/lib-2017-08/0121.html
- Closes #1843
-
-- configure: remove the leading comma from the backends list
-
- ... when darwinssl is used.
-
- Reported-by: Viktor Szakats
- Bug: https://github.com/curl/curl/commit/b0989cd3abaff4f9a0717b4875022fa79e33b481#commitcomment-23943493
-
- Closes #1845
-
-Kamil Dudka (30 Aug 2017)
-- examples/sslbackend.c: fix failure of 'make checksrc'
-
- ./sslbackend.c:58:3: warning: else after closing brace on same line (BRACEELSE)
- } else if(isdigit(*name)) {
- ^
- ./sslbackend.c:62:3: warning: else after closing brace on same line (BRACEELSE)
- } else
- ^
-
-Viktor Szakats (30 Aug 2017)
-- makefile.m32: add multissl support
-
- Closes https://github.com/curl/curl/pull/1840
-
-Daniel Stenberg (30 Aug 2017)
-- curl.h: CURLSSLBACKEND_WOLFSSL used wrong value
-
- The CURLSSLBACKEND_WOLFSSL is supposed to be an alias for
- CURLSSLBACKEND_CYASSL, but used an erronous value. To reduce the risk
- for a similar mistake, define the backend aliases to use the enum values
- instead.
-
- Reported-by: Gisle Vanem
- Bug: https://curl.haxx.se/mail/lib-2017-08/0120.html
-
-- curl_global_sslset.3: clarify
-
- it is a one time *set*, not necessarily a one time use... it can be
- called again if the first call failed or just listed the alternatives.
-
- clarify that the available backends are the ones this build supports
-
- plus add some formatting
-
- Reported-by: Rich Gray
- Bug: https://curl.haxx.se/mail/lib-2017-08/0119.html
-
-- curl/multi.h: remove duplicated closing c++ brace
-
- Regression since 1328f69d53f2f2e93
-
- Fixes #1841
- Reported-by: Andrei Karas
-
-- RELEASE-NOTES: synced with 8c33c963a
-
-- HELP-US.md: spelling
-
-- HELP-US.md: "How to get started helping out in the curl project"
-
- Closes #1837
-
-Dan Fandrich (29 Aug 2017)
-- asyn-thread: Fixed cleanup after OOM
-
- destroy_async_data() assumes that if the flag "done" is not set yet, the
- thread itself will clean up once the request is complete. But if an
- error (generally OOM) occurs before the thread even has a chance to
- start, it will never get a chance to clean up and memory will be leaked.
- By clearing "done" only just before starting the thread, the correct
- cleanup sequence will happen in all cases.
-
-Daniel Stenberg (28 Aug 2017)
-- curl_global_init.3: mention curl_global_sslset(3)
-
-Dan Fandrich (28 Aug 2017)
-- unit1606: Fixed shadowed variable warning
-
-- asyn-thread: Improved cleanup after OOM situations
-
-- asyn-thread: Set errno to the proper value ENOMEM in OOM situation
-
- This used to be set in some configurations to EAI_MEMORY which is not a
- valid value for errno and caused Curl_strerror to fail an assertion.
-
-Daniel Stenberg (28 Aug 2017)
-- [Johannes Schindelin brought this change]
-
- configure: Handle "MultiSSL" specially When versioning symbols
-
- There is a mode in which libcurl is compiled with versioned symbols,
- depending on the active SSL backend.
-
- When multiple SSL backends are active, it does not make sense to favor
- one over the others, so let's not: introduce a new prefix for the case
- where multiple SSL backends are compiled into cURL.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- configure: allow setting the default SSL backend
-
- Previously, we used as default SSL backend whatever was first in the
- `available_backends` array.
-
- However, some users may want to override that default without patching
- the source code.
-
- Now they can: with the --with-default-ssl-backend= option of
- the ./configure script.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: use Curl_ssl_multi pseudo backend only when needed
-
- When only one SSL backend is configured, it is totally unnecessary to
- let multissl_init() configure the backend at runtime, we can select the
- correct backend at build time already.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- version: if built with more than one SSL backend, report all of them
-
- To discern the active one from the inactive ones, put the latter into
- parentheses.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- version: add the CURL_VERSION_MULTI_SSL feature flag
-
- This new feature flag reports When cURL was built with multiple SSL
- backends.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- metalink: allow compiling with multiple SSL backends
-
- Previously, the code assumed that at most one of the SSL backends would
- be compiled in, emulating OpenSSL's functions if the configured backend
- was not OpenSSL itself.
-
- However, now we allow building with multiple SSL backends and choosing
- one at runtime. Therefore, metalink needs to be adjusted to handle this
- scenario, too.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- docs/examples: demonstrate how to select SSL backends
-
- The newly-introduced curl_global_sslset() function deserves to be
- show-cased.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- Add a man page for curl_global_sslset()
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: introduce curl_global_sslset()
-
- Let's add a compile time safe API to select an SSL backend. This
- function needs to be called *before* curl_global_init(), and can be
- called only once.
-
- Side note: we do not explicitly test that it is called before
- curl_global_init(), but we do verify that it is not called multiple times
- (even implicitly).
-
- If SSL is used before the function was called, it will use whatever the
- CURL_SSL_BACKEND environment variable says (or default to the first
- available SSL backend), and if a subsequent call to
- curl_global_sslset() disagrees with the previous choice, it will fail
- with CURLSSLSET_TOO_LATE.
-
- The function also accepts an "avail" parameter to point to a (read-only)
- NULL-terminated list of available backends. This comes in real handy if
- an application wants to let the user choose between whatever SSL backends
- the currently available libcurl has to offer: simply call
-
- curl_global_sslset(-1, NULL, &avail);
-
- which will return CURLSSLSET_UNKNOWN_BACKEND and populate the avail
- variable to point to the relevant information to present to the user.
-
- Just like with the HTTP/2 push functions, we have to add the function
- declaration of curl_global_sslset() function to the header file
- *multi.h* because VMS and OS/400 require a stable order of functions
- declared in include/curl/*.h (where the header files are sorted
- alphabetically). This looks a bit funny, but it cannot be helped.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: refactor out essential information about the SSL backends
-
- There is information about the compiled-in SSL backends that is really
- no concern of any code other than the SSL backend itself, such as which
- function (if any) implements SHA-256 summing.
-
- And there is information that is really interesting to the user, such as
- the name, or the curl_sslbackend value.
-
- Let's factor out the latter into a publicly visible struct. This
- information will be used in the upcoming API to set the SSL backend
- globally.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: allow selecting which SSL backend to use at runtime
-
- When building software for the masses, it is sometimes not possible to
- decide for all users which SSL backend is appropriate.
-
- Git for Windows, for example, uses cURL to perform clones, fetches and
- pushes via HTTPS, and some users strongly prefer OpenSSL, while other
- users really need to use Secure Channel because it offers
- enterprise-ready tools to manage credentials via Windows' Credential
- Store.
-
- The current Git for Windows versions use the ugly work-around of
- building libcurl once with OpenSSL support and once with Secure Channel
- support, and switching out the binaries in the installer depending on
- the user's choice.
-
- Needless to say, this is a super ugly workaround that actually only
- works in some cases: Git for Windows also comes in a portable form, and
- in a form intended for third-party applications requiring Git
- functionality, in which cases this "swap out libcurl-4.dll" simply is
- not an option.
-
- Therefore, the Git for Windows project has a vested interest in teaching
- cURL to make the SSL backend a *runtime* option.
-
- This patch makes that possible.
-
- By running ./configure with multiple --with- options, cURL will
- be built with multiple backends.
-
- For the moment, the backend can be configured using the environment
- variable CURL_SSL_BACKEND (valid values are e.g. "openssl" and
- "schannel").
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: fold the backend ID into the Curl_ssl structure
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- curl_ntlm_core: don't complain but #include OpenSSL header if needed
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: encapsulate SSL backend-specific data
-
- So far, all of the SSL backends' private data has been declared as
- part of the ssl_connect_data struct, in one big #if .. #elif .. #endif
- block.
-
- This can only work as long as the SSL backend is a compile-time option,
- something we want to change in the next commits.
-
- Therefore, let's encapsulate the exact data needed by each SSL backend
- into a private struct, and let's avoid bleeding any SSL backend-specific
- information into urldata.h. This is also necessary to allow multiple SSL
- backends to be compiled in at the same time, as e.g. OpenSSL's and
- CyaSSL's headers cannot be included in the same .c file.
-
- To avoid too many malloc() calls, we simply append the private structs
- to the connectdata struct in allocate_conn().
-
- This requires us to take extra care of alignment issues: struct fields
- often need to be aligned on certain boundaries e.g. 32-bit values need to
- be stored at addresses that divide evenly by 4 (= 32 bit / 8
- bit-per-byte).
-
- We do that by assuming that no SSL backend's private data contains any
- fields that need to be aligned on boundaries larger than `long long`
- (typically 64-bit) would need. Under this assumption, we simply add a
- dummy field of type `long long` to the `struct connectdata` struct. This
- field will never be accessed but acts as a placeholder for the four
- instances of ssl_backend_data instead. the size of each ssl_backend_data
- struct is stored in the SSL backend-specific metadata, to allow
- allocate_conn() to know how much extra space to allocate, and how to
- initialize the ssl[sockindex]->backend and proxy_ssl[sockindex]->backend
- pointers.
-
- This would appear to be a little complicated at first, but is really
- necessary to encapsulate the private data of each SSL backend correctly.
- And we need to encapsulate thusly if we ever want to allow selecting
- CyaSSL and OpenSSL at runtime, as their headers cannot be included within
- the same .c file (there are just too many conflicting definitions and
- declarations for that).
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: prepare the SSL backends for encapsulated private data
-
- At the moment, cURL's SSL backend needs to be configured at build time.
- As such, it is totally okay for them to hard-code their backend-specific
- data in the ssl_connect_data struct.
-
- In preparation for making the SSL backend a runtime option, let's make
- the access of said private data a bit more abstract so that it can be
- adjusted later in an easy manner.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- urldata.h: move SSPI-specific #include to correct location
-
- In 86b889485 (sasl_gssapi: Added GSS-API based Kerberos V5 variables,
- 2014-12-03), an SSPI-specific field was added to the kerberos5data
- struct without moving the #include "curl_sspi.h" later in the same file.
-
- This broke the build when SSPI was enabled, unless Secure Channel was
- used as SSL backend, because it just so happens that Secure Channel also
- requires "curl_sspi.h" to be #included.
-
- In f4739f639 (urldata: include curl_sspi.h when Windows SSPI is enabled,
- 2017-02-21), this bug was fixed incorrectly: Instead of moving the
- appropriate conditional #include, the Secure Channel-conditional part
- was now also SSPI-conditional.
-
- Fix this problem by moving the correct #include instead.
-
- This is also required for an upcoming patch that moves all the Secure
- Channel-specific stuff out of urldata.h and encapsulates it properly in
- vtls/schannel.c instead.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- urldata.h: remove support for obsolete PolarSSL version
-
- Since 5017d5ada (polarssl: now require 1.3.0+, 2014-03-17), we require
- a newer PolarSSL version. No need to keep code trying to support any
- older version.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- getinfo: access SSL internals via Curl_ssl
-
- In the ongoing endeavor to abstract out all SSL backend-specific
- functionality, this is the next step: Instead of hard-coding how the
- different SSL backends access their internal data in getinfo.c, let's
- implement backend-specific functions to do that task.
-
- This will also allow for switching SSL backends as a runtime option.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: move SSL backends' private constants out of their header files
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- axtls: use Curl_none_* versions of init() and cleanup()
-
- There are convenient no-op versions of the init/cleanup functions now,
- no need to define private ones for axTLS.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: remove obsolete declarations of SSL backend functionality
-
- These functions are all available via the Curl_ssl struct now, no need
- to declare them separately anymore.
-
- As the global declarations are removed, the corresponding function
- definitions are marked as file-local. The only two exceptions here are
- Curl_mbedtls_shutdown() and Curl_polarssl_shutdown(): only the
- declarations were removed, there are no function definitions to mark
- file-local.
-
- Please note that Curl_nss_force_init() is *still* declared globally, as
- the only SSL backend-specific function, because it was introduced
- specifically for the use case where cURL was compiled with
- `--without-ssl --with-nss`. For details, see f3b77e561 (http_ntlm: add
- support for NSS, 2010-06-27).
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- schannel: reorder functions topologically
-
- The _shutdown() function calls the _session_free() function; While this
- is not a problem now (because schannel.h declares both functions), a
- patch looming in the immediate future with make all of these functions
- file-local.
-
- So let's just move the _session_free() function's definition before it
- is called.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- axtls: reorder functions topologically
-
- The connect_finish() function (like many other functions after it) calls
- the Curl_axtls_close() function; While this is not a problem now
- (because axtls.h declares the latter function), a patch looming in the
- immediate future with make all of these functions file-local.
-
- So let's just move the Curl_axtls_close() function's definition before
- it is called.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: move the SUPPORT_HTTPS_PROXY flag into the Curl_ssl struct
-
- That will allow us to choose the SSL backend at runtime.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: convert the have_curlssl_* constants to runtime flags
-
- The entire idea of introducing the Curl_ssl struct to describe SSL
- backends is to prepare for choosing the SSL backend at runtime.
-
- To that end, convert all the #ifdef have_curlssl_* style conditionals
- to use bit flags instead.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: move sha256sum into the Curl_ssl struct
-
- The SHA-256 checksumming is also an SSL backend-specific function.
- Let's include it in the struct declaring the functionality of SSL
- backends.
-
- In contrast to MD5, there is no fall-back code. To indicate this, the
- respective entries are NULL for those backends that offer no support for
- SHA-256 checksumming.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: move md5sum into the Curl_ssl struct
-
- The MD5 summing is also an SSL backend-specific function. So let's
- include it, offering the previous fall-back code as a separate function
- now: Curl_none_md5sum(). To allow for that, the signature had to be
- changed so that an error could be returned from the implementation
- (Curl_none_md5sum() can run out of memory).
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: use the Curl_ssl struct to access all SSL backends' functionality
-
- This is the first step to unify the SSL backend handling. Now all the
- SSL backend-specific functionality is accessed via a global instance of
- the Curl_ssl struct.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: declare Curl_ssl structs for every SSL backend
-
- The idea of introducing the Curl_ssl struct was to unify how the SSL
- backends are declared and called. To this end, we now provide an
- instance of the Curl_ssl struct for each and every SSL backend.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: introduce a new struct for SSL backends
-
- This new struct is similar in nature to Curl_handler: it will define the
- functions and capabilities of all the SSL backends (where Curl_handler
- defines the functions and capabilities of protocol handlers).
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: make sure every _sha256sum()'s first arg is const
-
- This patch makes the signature of the _sha256sum() functions consistent
- among the SSL backends, in preparation for unifying the way all SSL
- backends are accessed.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: make sure all _data_pending() functions return bool
-
- This patch makes the signature of the _data_pending() functions
- consistent among the SSL backends, in preparation for unifying the way
- all SSL backends are accessed.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: make sure all _cleanup() functions return void
-
- This patch makes the signature of the _cleanup() functions consistent
- among the SSL backends, in preparation for unifying the way all SSL
- backends are accessed.
-
- Signed-off-by: Johannes Schindelin
-
-- [Johannes Schindelin brought this change]
-
- vtls: use consistent signature for _random() implementations
-
- This will make the upcoming multissl backend much easier to implement.
-
- Signed-off-by: Johannes Schindelin
-
-- strtooff: fix build for systems with long long but no strtoll option
-
- Closes #1829
-
- Reported-by: Dan Fandrich
- Bug: https://github.com/curl/curl/pull/1758#issuecomment-324861615
-
-- darwinssl: handle long strings in TLS certs
-
- ... as the previous fixed length 128 bytes buffer was sometimes too
- small.
-
- Fixes #1823
- Closes #1831
-
- Reported-by: Benjamin Sergeant
- Assisted-by: Bill Pyne, Ray Satiro, Nick Zitzmann
-
-- system.h: include sys/poll.h for AIX
-
- ... to get the event/revent defines that might be used for the poll
- struct.
-
- Reported-by: Michael Smith
- Fixes #1828
- Closes #1833
-
-Dan Fandrich (26 Aug 2017)
-- tests: Make sure libtests & unittests call curl_global_cleanup()
-
- These were missed in commit c468c27b.
-
-Jay Satiro (26 Aug 2017)
-- [theantigod brought this change]
-
- winbuild: fix embedded manifest option
-
- Embedded manifest option didn't work due to incorrect path.
-
- Fixes https://github.com/curl/curl/issues/1832
-
-Daniel Stenberg (25 Aug 2017)
-- fuzz/Makefile.am: remove curlbuild.h leftovers
-
-- examples/threaded-ssl: mention that this is for openssl before 1.1
-
-- imap: use defined names for response codes
-
- When working on this code I found the previous setup a bit weird while
- using proper defines increases readability.
-
- Closes #1824
-
-- CURLOPT_USERPWD.3: see also CURLOPT_PROXYUSERPWD
-
-- imap: support PREAUTH
-
- It is a defined possible greeting at server startup that means the
- connection is already authenticated. See
- https://tools.ietf.org/html/rfc3501#section-7.1.4
-
- Test 846 added to verify.
-
- Fixes #1818
- Closes #1820
-
-Jay Satiro (23 Aug 2017)
-- config-tpf: define SIZEOF_LONG
-
- Recent changes that replaced CURL_SIZEOF_LONG in the source with
- SIZEOF_LONG broke builds that use the premade configuration files and
- don't have SIZEOF_LONG defined.
-
- Bug: https://github.com/curl/curl/issues/1816
-
-Dan Fandrich (23 Aug 2017)
-- test1453: Fixed
-
-Daniel Stenberg (22 Aug 2017)
-- [Gisle Vanem brought this change]
-
- config-dos: add missing defines, SIZEOF_* and two others
-
- Bug: #1816
-
-- curl: shorten and clean up CA cert verification error message
-
- The previous message was just too long for ordinary people and it was
- encouraging users to use `--insecure` a little too easy.
-
- Based-on-work-by: Frank Denis
-
- Closes #1810
- Closes #1817
-
-- request-target.d: mention added in 7.55.0
-
-Marcel Raad (22 Aug 2017)
-- tool_main: turn off MinGW CRT's globbing
-
- By default, the MinGW CRT globs command-line arguments. This prevents
- getting a single asterisk into an argument as test 1299 does. Turn off
- globbing by setting the global variable _CRT_glob to 0 for MinGW.
-
- Fixes https://github.com/curl/curl/issues/1751
- Closes https://github.com/curl/curl/pull/1813
-
-Viktor Szakats (22 Aug 2017)
-- makefile.m32: add support for libidn2
-
- libidn was replaced with libidn2 last year in configure.
- Caveat: libidn2 may depend on a list of further libs.
- These can be manually specified via CURL_LDFLAG_EXTRAS.
-
- Closes https://github.com/curl/curl/pull/1815
-
-Jay Satiro (22 Aug 2017)
-- [Viktor Szakats brought this change]
-
- config-win32: define SIZEOF_LONG
-
- Recent changes that replaced CURL_SIZEOF_LONG in the source with
- SIZEOF_LONG broke builds that use the premade configuration files and
- don't have SIZEOF_LONG defined.
-
- Closes https://github.com/curl/curl/pull/1814
-
-Daniel Stenberg (20 Aug 2017)
-- cmake: enable picky compiler options with clang and gcc
-
- closes #1799
-
-- curl/system.h: fix build for hppa
-
- Reported-by: John David Anglin
- Bug: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=872502#10
-
-- [Even Rouault brought this change]
-
- tftp: fix memory leak on too long filename
-
- Fixes
-
- $ valgrind --leak-check=full ~/install-curl-git/bin/curl tftp://localhost/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaz
-
- ==9752== Memcheck, a memory error detector
- ==9752== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
- ==9752== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
- ==9752== Command: /home/even/install-curl-git/bin/curl tftp://localhost/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaz
- ==9752==
- curl: (71) TFTP file name too long
-
- ==9752==
- ==9752== HEAP SUMMARY:
- ==9752== 505 bytes in 1 blocks are definitely lost in loss record 11 of 11
- ==9752== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
- ==9752== by 0x4E61CED: Curl_urldecode (in /home/even/install-curl-git/lib/libcurl.so.4.4.0)
- ==9752== by 0x4E75868: tftp_state_machine (in /home/even/install-curl-git/lib/libcurl.so.4.4.0)
- ==9752== by 0x4E761B6: tftp_do (in /home/even/install-curl-git/lib/libcurl.so.4.4.0)
- ==9752== by 0x4E711B6: multi_runsingle (in /home/even/install-curl-git/lib/libcurl.so.4.4.0)
- ==9752== by 0x4E71D00: curl_multi_perform (in /home/even/install-curl-git/lib/libcurl.so.4.4.0)
- ==9752== by 0x4E6950D: curl_easy_perform (in /home/even/install-curl-git/lib/libcurl.so.4.4.0)
- ==9752== by 0x40E0B7: operate_do (in /home/even/install-curl-git/bin/curl)
- ==9752== by 0x40E849: operate (in /home/even/install-curl-git/bin/curl)
- ==9752== by 0x402693: main (in /home/even/install-curl-git/bin/curl)
-
- Fixes https://oss-fuzz.com/v2/testcase-detail/5232311106797568
- Credit to OSS Fuzz
-
- Closes #1808
-
-Dan Fandrich (19 Aug 2017)
-- runtests: fixed case insensitive matching of keywords
-
- Commit 5c2aac71 didn't work in the case of mixed-case keywords given on
- the command-line.
-
-- tests: Make sure libtests call curl_global_cleanup()
-
- This ensures that global data allocations are freed so Valgrind stays
- happy. This was a problem with at least PolarSSL and mbedTLS.
-
-Daniel Stenberg (18 Aug 2017)
-- RELEASE-NOTES: synced with 8baead425
-
-- scripts/contri*sh: use "git log --use-mailmap"
-
-- mailmap: de-duplify some git authors
-
-- http2_recv: return error better on fatal h2 errors
-
- Ref #1012
- Figured-out-by: Tatsuhiro Tsujikawa
-
-- KNOWN_BUGS: HTTP test server 'connection-monitor' problems
-
- Closes #868
-
-- curl/system.h: check for __ppc__ as well
-
- ... regression since issue #1774 (commit 10b3df10596a) since obviously
- some older gcc doesn't know __powerpc__ while some newer doesn't know
- __ppc__ ...
-
- Fixes #1797
- Closes #1798
- Reported-by: Ryan Schmidt
-
-- [Jan Alexander Steffens (heftig) brought this change]
-
- http: Don't wait on CONNECT when there is no proxy
-
- Since curl 7.55.0, NetworkManager almost always failed its connectivity
- check by timeout. I bisected this to 5113ad04 (http-proxy: do the HTTP
- CONNECT process entirely non-blocking).
-
- This patch replaces !Curl_connect_complete with Curl_connect_ongoing,
- which returns false if the CONNECT state was left uninitialized and lets
- the connection continue.
-
- Closes #1803
- Fixes #1804
-
- Also-fixed-by: Gergely Nagy
-
-- [Johannes Schindelin brought this change]
-
- metalink: adjust source code style
-
- Signed-off-by: Johannes Schindelin
-
-- CURL_SIZEOF_LONG: removed, use only SIZEOF_LONG
-
-- lib557: no longer use CURL_SIZEOF_* defines
-
-- config-win32: define SIZEOF_CURL_OFF_T
-
-- cmake: sizeof curl_off_t, remove unused detections
-
-- system.h: remove all CURL_SIZEOF_* defines
-
- ... as they're not used externally and internally we check for the sizes
- already in configure etc.
-
- Closes #1767
-
-- ftp: fix CWD when doing multicwd then nocwd on same connection
-
- Fixes #1782
- Closes #1787
- Reported-by: Peter Lamare
-
-- CURLOPT_SSH_COMPRESSION.3: enable with 1L
-
- (leaves other values reserved for the future)
-
-- compressed-ssh.d: "Added: 7.56.0"
-
-- curl/system.h: checksrc compliance
-
-Jay Satiro (17 Aug 2017)
-- [Viktor Szakats brought this change]
-
- ssh: add the ability to enable compression (for SCP/SFTP)
-
- The required low-level logic was already available as part of
- `libssh2` (via `LIBSSH2_FLAG_COMPRESS` `libssh2_session_flag()`[1]
- option.)
-
- This patch adds the new `libcurl` option `CURLOPT_SSH_COMPRESSION`
- (boolean) and the new `curl` command-line option `--compressed-ssh`
- to request this `libssh2` feature. To have compression enabled, it
- is required that the SSH server supports a (zlib) compatible
- compression method and that `libssh2` was built with `zlib` support
- enabled.
-
- [1] https://www.libssh2.org/libssh2_session_flag.html
-
- Ref: https://github.com/curl/curl/issues/1732
- Closes https://github.com/curl/curl/pull/1735
-
-- examples/ftpuploadresume: checksrc compliance
-
-- [Maksim Stsepanenka brought this change]
-
- http_proxy: fix build error for CURL_DOES_CONVERSIONS
-
- Closes https://github.com/curl/curl/pull/1793
-
-GitHub (16 Aug 2017)
-- [Nick Zitzmann brought this change]
-
- configure: check for __builtin_available() availability (#1788)
-
- This change does two things:
- 1. It un-breaks the build in Xcode 9.0. (Xcode 9.0 is currently
- failing trying to compile connectx() in lib/connect.c.)
- 2. It finally weak-links the connectx() function, and falls back on
- connect() when run on older operating systems.
-
-Daniel Stenberg (16 Aug 2017)
-- travis: add metalink to some osx builds
-
- Closes #1790
-
-- [Max Dymond brought this change]
-
- coverage: Use two coveralls commands to get lib/vtls results
-
- closes #1747
-
-- darwinssi: fix error: variable length array used
-
-- m4/curl-compilers.m4: use proper quotes around string, not backticks
-
- ... when setting clang version to assume 3.7
-
- Caused a lot of "integer expression expected" warnings by configure.
-
-- [Benbuck Nason brought this change]
-
- cmake: remove dead code for DISABLED_THREADSAFE
-
- Closes #1786
-
-Jay Satiro (15 Aug 2017)
-- [Jakub Zakrzewski brought this change]
-
- curl-confopts.m4: fix --disable-threaded-resolver
-
- Closes https://github.com/curl/curl/issues/1784
-
-Daniel Stenberg (15 Aug 2017)
-- [Ryan Winograd brought this change]
-
- progress: Track total times following redirects
-
- Update the progress timers `t_nslookup`, `t_connect`, `t_appconnect`,
- `t_pretransfer`, and `t_starttransfer` to track the total times for
- these activities when a redirect is followed. Previously, only the times
- for the most recent request would be tracked.
-
- Related changes:
-
- - Rename `Curl_pgrsResetTimesSizes` to `Curl_pgrsResetTransferSizes`
- now that the function only resets transfer sizes and no longer
- modifies any of the progress timers.
-
- - Add a bool to the `Progress` struct that is used to prevent
- double-counting `t_starttransfer` times.
-
- Added test case 1399.
-
- Fixes #522 and Known Bug 1.8
- Closes #1602
- Reported-by: joshhe on github
-
-- [Benbuck Nason brought this change]
-
- cmake: remove dead code for CURL_DISABLE_RTMP
-
- Closes #1785
-
-Kamil Dudka (15 Aug 2017)
-- zsh.pl: produce a working completion script again
-
- Commit curl-7_54_0-118-g8b2f22e changed the output format of curl --help
- to use and instead of FILE and DIR, which caused zsh.pl to
- produce a broken completion script:
-
- % curl --
- _curl:10: no such file or directory: seconds
-
- Closes #1779
-
-Daniel Stenberg (15 Aug 2017)
-- curlver: toward 7.56.0?
-
-- RELEASE-NOTES: synced with 91c46dc44
-
-- test1449: FTP download range with an too large size
-
-- strtoofft: reduce integer overflow risks globally
-
- ... make sure we bail out on overflows.
-
- Reported-by: Brian Carpenter
- Closes #1758
-
-- travis: build the examples too
-
- to make sure they keep building warning-free
-
- Closes #1777
-
-- runtests: match keywords case insensitively
-
-- examples/ftpuploadresume.c: use portable code
-
- ... converted from the MS specific _snscanf()
-
-Version 7.55.1 (13 Aug 2017)
-
-Daniel Stenberg (13 Aug 2017)
-- RELEASE-NOTES/THANKS: curl 7.55.1 release time
-
-- gitignore: ignore .xz now instead of .lzma
-
-- [Sergei Nikulov brought this change]
-
- cmake: Threads detection update. ref: #1702
-
- Closes #1719
-
-- ipv6_scope: support unique local addresses
-
- Fixes #1764
- Closes #1773
- Reported-by: James Slaughter
-
-- [Alex Potapenko brought this change]
-
- curl/system.h: GCC doesn't define __ppc__ on PowerPC, uses __powerpc__
-
- Closes #1774
-
-- test1448: verify redirect to IDN using URL
-
- Closes #1772
-
-- [Salah-Eddin Shaban brought this change]
-
- redirect: skip URL encoding for host names
-
- This fixes redirects to IDN URLs
-
- Fixes #1441
- Closes #1762
- Reported by: David Lord
-
-- test2032: mark as flaky (again)
-
-- travis: test cmake build on tarball too
-
- Could've prevented #1755
-
-- [Simon Warta brought this change]
-
- cmake: allow user to override CMAKE_DEBUG_POSTFIX
-
- Closes #1763
-
-- connect-to.d: better language
-
-- connect-to.d: clarified
-
-- bagder/Curl_tvdiff_us: fix the math
-
- Regression since adef394ac5 (released in 7.55.0)
-
- Reported-by: Han Qiao
- Fixes #1769
- Closes #1771
-
-- curl/system.h: add Oracle Solaris Studio
-
- Fixes #1752
-
-- [Alessandro Ghedini brought this change]
-
- docs: fix typo funtion -> function
-
- Closes #1770
-
-Alessandro Ghedini (12 Aug 2017)
-- docs: fix grammar in CURL_SSLVERSION_MAX_DEFAULT description
-
-- docs: fix typo stuct -> struct
-
-Dan Fandrich (12 Aug 2017)
-- test1447: require a curl with http support
-
-Daniel Stenberg (11 Aug 2017)
-- [Thomas Petazzoni brought this change]
-
- curl/system.h: support more architectures
-
- The long list of architectures in include/curl/system.h is annoying to
- maintain, and needs to be extended for each and every architecture to
- support.
-
- Instead, let's rely on the __SIZEOF_LONG__ define of the gcc compiler
- (we are in the GNUC condition anyway), which tells us if long is 4
- bytes or 8 bytes.
-
- This fixes the build of libcurl 7.55.0 on architectures such as
- OpenRISC or ARC.
-
- Closes #1766
-
- Signed-off-by: Thomas Petazzoni
-
-- test2033: this went flaky again
-
- Suspicion: when we enabled the threaded resolver by default.
-
-- test1447: verifies the parse proxy fix in 6e0e152ce5c
-
-- [Even Rouault brought this change]
-
- parse_proxy(): fix memory leak in case of invalid proxy server name
-
- Fixes the below leak:
-
- $ valgrind --leak-check=full ~/install-curl-git/bin/curl --proxy "http://a:b@/x" http://127.0.0.1
- curl: (5) Couldn't resolve proxy name
- ==5048==
- ==5048== HEAP SUMMARY:
- ==5048== in use at exit: 532 bytes in 12 blocks
- ==5048== total heap usage: 5,288 allocs, 5,276 frees, 445,271 bytes allocated
- ==5048==
- ==5048== 2 bytes in 1 blocks are definitely lost in loss record 1 of 12
- ==5048== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
- ==5048== by 0x4E6CB79: parse_login_details (url.c:5614)
- ==5048== by 0x4E6BA82: parse_proxy (url.c:5091)
- ==5048== by 0x4E6C46D: create_conn_helper_init_proxy (url.c:5346)
- ==5048== by 0x4E6EA18: create_conn (url.c:6498)
- ==5048== by 0x4E6F9B4: Curl_connect (url.c:6967)
- ==5048== by 0x4E86D05: multi_runsingle (multi.c:1436)
- ==5048== by 0x4E88432: curl_multi_perform (multi.c:2160)
- ==5048== by 0x4E7C515: easy_transfer (easy.c:708)
- ==5048== by 0x4E7C74A: easy_perform (easy.c:794)
- ==5048== by 0x4E7C7B1: curl_easy_perform (easy.c:813)
- ==5048== by 0x414025: operate_do (tool_operate.c:1563)
- ==5048==
- ==5048== 2 bytes in 1 blocks are definitely lost in loss record 2 of 12
- ==5048== at 0x4C2DB8F: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
- ==5048== by 0x4E6CBB6: parse_login_details (url.c:5621)
- ==5048== by 0x4E6BA82: parse_proxy (url.c:5091)
- ==5048== by 0x4E6C46D: create_conn_helper_init_proxy (url.c:5346)
- ==5048== by 0x4E6EA18: create_conn (url.c:6498)
- ==5048== by 0x4E6F9B4: Curl_connect (url.c:6967)
- ==5048== by 0x4E86D05: multi_runsingle (multi.c:1436)
- ==5048== by 0x4E88432: curl_multi_perform (multi.c:2160)
- ==5048== by 0x4E7C515: easy_transfer (easy.c:708)
- ==5048== by 0x4E7C74A: easy_perform (easy.c:794)
- ==5048== by 0x4E7C7B1: curl_easy_perform (easy.c:813)
- ==5048== by 0x414025: operate_do (tool_operate.c:1563)
-
- Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=2984
- Credit to OSS Fuzz for discovery
-
- Closes #1761
-
-- RELEASE-NOTES: synced with 37f2195a9
-
-- curlver: bump to 7.55.1
-
-- openssl: fix "error: this statement may fall through"
-
- A gcc7 warning.
-
-- [David Benjamin brought this change]
-
- openssl: remove CONST_ASN1_BIT_STRING.
-
- Just making the pointer as const works for the pre-1.1.0 path too.
-
- Closes #1759
-
-- maketgz: remove old *.dist files before making the tarball
-
- To avoid "old crap" unintentionally getting shipped.
-
- Bug: https://curl.haxx.se/mail/lib-2017-08/0050.html
- Reported-by: Christian Weisgerber
-
-Jay Satiro (10 Aug 2017)
-- mkhelp.pl: allow executing this script directly
-
- - Enable execute permission (chmod +x)
-
- - Change interpreter to /usr/bin/env perl
-
- Ref: https://github.com/curl/curl/issues/1743
-
-Daniel Stenberg (10 Aug 2017)
-- configure: use the threaded resolver backend by default if possible
-
- Closes #1647
-
-- cmake: move cmake_uninstall.cmake to CMake/
-
- Closes #1756
-
-- metalink: fix error: ‘*’ in boolean context, suggest ‘&&’ instead
-
-- dist: fix the cmake build by shipping cmake_uninstall.cmake.in too
-
- Fixes #1755
-
-- travis: verify "make install"
-
- Help-by: Jay Satiro
- Closes #1753
-
-Marcel Raad (10 Aug 2017)
-- build: check out *.sln files with Windows line endings
-
- Visual Studio doesn't like LF line endings in solution files and always
- converts them to CRLF when doing changes to the solution. Notably, this
- affects the solutions in the release archive.
-
- Closes https://github.com/curl/curl/pull/1746
-
-- gitignore: ignore top-level .vs folder
-
- This folder is generated when using the CMake build system from within
- Visual Studio.
-
- Closes https://github.com/curl/curl/pull/1746
-
-Jay Satiro (10 Aug 2017)
-- digest_sspi: Don't reuse context if the user/passwd has changed
-
- Bug: https://github.com/curl/curl/issues/1685
- Reported-by: paulharris@users.noreply.github.com
-
- Assisted-by: Isaac Boukris
-
- Closes https://github.com/curl/curl/pull/1742
-
-Daniel Stenberg (9 Aug 2017)
-- [Adam Sampson brought this change]
-
- dist: Add dictserver.py/negtelnetserver.py to EXTRA_DIST
-
- These weren't included in the 7.55.0 release, but are required in order
- to run the full test suite.
-
- Closes #1744
-
-- [Adam Sampson brought this change]
-
- curl: do bounds check using a double comparison
-
- The fix for this in 8661a0aacc01492e0436275ff36a21734f2541bb wasn't
- complete: if the parsed number in num is larger than will fit in a long,
- the conversion is undefined behaviour (causing test1427 to fail for me
- on IA32 with GCC 7.1, although it passes on AMD64 and ARMv7). Getting
- rid of the cast means the comparison will be done using doubles.
-
- It might make more sense for the max argument to also be a double...
-
- Fixes #1750
- Closes #1749
-
-- make install: add 8 missing man pages to the installation
-
-- build: fix 'make install' with configure, install docs/libcurl/* too
-
- Broken since d24838d4da9faa
-
- Reported-by: Bernard Spil
-
-Version 7.55.0 (9 Aug 2017)
-
-Daniel Stenberg (9 Aug 2017)
-- RELEASE-NOTES: curl 7.55.0
-
-- THANKS: 20 new contributors in 7.55.0
-
-- [Viktor Szakats brought this change]
-
- docs/comments: Update to secure URL versions
-
- Closes #1741
-
-- configure: fix recv/send/select detection on Android
-
- ... since they now provide several functions as
- __attribute__((overloadable)), the argument detection logic need
- updates.
-
- Patched-by: destman at github
-
- Fixes #1738
- Closes #1739
-
-Marcel Raad (8 Aug 2017)
-- ax_code_coverage.m4: update to latest version
-
- This updates the script to aad5ad5fedb306b39f901a899b7bd305b66c418d
- from August 01, 2017. Notably, this removes the lconv version whitelist.
-
- Closes https://github.com/curl/curl/pull/1716
-
-Daniel Stenberg (7 Aug 2017)
-- test1427: verify command line parser integer overflow detection
-
-- curl: detect and bail out early on parameter integer overflows
-
- Make the number parser aware of the maximum limit curl accepts for a
- value and return an error immediately if larger, instead of running an
- integer overflow later.
-
- Fixes #1730
- Closes #1736
-
-- glob: do not continue parsing after a strtoul() overflow range
-
- Added test 1289 to verify.
-
- CVE-2017-1000101
-
- Bug: https://curl.haxx.se/docs/adv_20170809A.html
- Reported-by: Brian Carpenter
-
-- tftp: reject file name lengths that don't fit
-
- ... and thereby avoid telling send() to send off more bytes than the
- size of the buffer!
-
- CVE-2017-1000100
-
- Bug: https://curl.haxx.se/docs/adv_20170809B.html
- Reported-by: Even Rouault
-
- Credit to OSS-Fuzz for the discovery
-
-- [Even Rouault brought this change]
-
- file: output the correct buffer to the user
-
- Regression brought by 7c312f84ea930d8 (April 2017)
-
- CVE-2017-1000099
-
- Bug: https://curl.haxx.se/docs/adv_20170809C.html
-
- Credit to OSS-Fuzz for the discovery
-
-- easy_events: make event data static
-
- First: this function is only used in debug-builds and not in
- release/real builds. It is used to drive tests using the event-based
- API.
-
- A pointer to the local struct is passed to CURLMOPT_TIMERDATA, but the
- CURLMOPT_TIMERFUNCTION calback can in fact be called even after this
- funtion returns, namely when curl_multi_remove_handle() is called.
-
- Reported-by: Brian Carpenter
-
-- getparameter: avoid returning uninitialized 'usedarg'
-
- Fixes #1728
-
-Marcel Raad (5 Aug 2017)
-- [Isaac Boukris brought this change]
-
- gssapi: fix memory leak of output token in multi round context
-
- When multiple rounds are needed to establish a security context
- (usually ntlm), we overwrite old token with a new one without free.
- Found by proposed gss tests using stub a gss implementation (by
- valgrind error), though I have confirmed the leak with a real
- gssapi implementation as well.
-
- Closes https://github.com/curl/curl/pull/1733
-
-- darwinssl: fix compiler warning
-
- clang complains:
- vtls/darwinssl.c:40:8: error: extra tokens at end of #endif directive
- [-Werror,-Wextra-tokens]
-
- This breaks the darwinssl build on Travis. Fix it by making this token
- a comment.
-
- Closes https://github.com/curl/curl/pull/1734
-
-- CMake: fix CURL_WERROR for MSVC
-
- When using CURL_WERROR in MSVC builds, the debug flags were overridden
- by the release flags and /WX got added twice in debug mode.
-
- Closes https://github.com/curl/curl/pull/1715
-
-Daniel Stenberg (4 Aug 2017)
-- RELEASE-NOTES: synced with 561e9217c
-
-- test1010: verify that #1718 is fixed
-
- ... by doing two transfers in nocwd mode and check that there's no
- superfluous CWD command.
-
-- FTP: skip unnecessary CWD when in nocwd mode
-
- ... when reusing a connection. If it didn't do any CWD previously.
-
- Fixes #1718
-
-Marcel Raad (4 Aug 2017)
-- travis: explicitly specify dist
-
- This makes the builds more reproducible as travis is currently rolling
- out trusty as default dist [1]. Specifically, this avoids coverage
- check failures when trusty is used as seen in [2] until we figure out
- what's wrong.
-
- [1] https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
- [2] https://github.com/curl/curl/pull/1692
-
- Closes https://github.com/curl/curl/pull/1725
-
-Daniel Stenberg (4 Aug 2017)
-- travis: BUILD_TYPE => T
-
- (to make the full line appear nicer on travis web UI)
-
-- travis: add osx build with darwinssl
-
- Closes #1706
-
-- darwin: silence compiler warnings
-
- With a clang pragma and three type fixes
-
- Fixes #1722
-
-- BUILD.WINDOWS: mention buildconf.bat for builds off git
-
-- darwinssl: fix curlssl_sha256sum() compiler warnings on first argument
-
-- test130: verify comments in .netrc
-
-- [Gisle Vanem brought this change]
-
- netrc: skip lines starting with '#'
-
- Bug: https://curl.haxx.se/mail/lib-2017-08/0008.html
-
-Marcel Raad (3 Aug 2017)
-- CMake: set MSVC warning level to 4
-
- The MSVC warning level defaults to 3 in CMake. Change it to 4, which is
- consistent with the Visual Studio and NMake builds. Disable level 4
- warning C4127 for the library and additionally C4306 for the test
- servers to get a clean CURL_WERROR build as that warning is raised in
- some macros in older Visual Studio versions.
-
- Ref: https://github.com/curl/curl/pull/1667#issuecomment-314082794
- Closes https://github.com/curl/curl/pull/1711
-
-Daniel Stenberg (2 Aug 2017)
-- CURLOPT_NETRC.3: fix typo in 7e48aa386156f9c2
-
- Reported-by: Viktor Szakats
-
-- CURLOPT_NETRC.3: mention the file name on windows
-
- ... and CURLOPT_NETRC_FILE(3).
-
-- travis: build osx with libressl too
-
-- travis: build osx with openssl too
-
-- tests/server/util: fix curltime mistake from 4dee50b9c80f9
-
-Marcel Raad (1 Aug 2017)
-- curl_threads: fix MSVC compiler warning
-
- Use LongToHandle to convert from long to HANDLE in the Win32
- implementation.
- This should fix the following warning when compiling with
- MSVC 11 (2012) in 64-bit mode:
- lib\curl_threads.c(113): warning C4306:
- 'type cast' : conversion from 'long' to 'HANDLE' of greater size
-
- Closes https://github.com/curl/curl/pull/1717
-
-Daniel Stenberg (1 Aug 2017)
-- BUGS: improved phrasing about security bugs
-
- Reported-by: Max Dymond
-
-- BUGS: clarify how to report security related bugs
-
-- [Brad Spencer brought this change]
-
- multi: fix request timer management
-
- There are some bugs in how timers are managed for a single easy handle
- that causes the wrong "next timeout" value to be reported to the
- application when a new minimum needs to be recomputed and that new
- minimum should be an existing timer that isn't currently set for the
- easy handle. When the application drives a set of easy handles via the
- `curl_multi_socket_action()` API (for example), it gets told to wait the
- wrong amount of time before the next call, which causes requests to
- linger for a long time (or, it is my guess, possibly forever).
-
- Bug: https://curl.haxx.se/mail/lib-2017-07/0033.html
-
-Jay Satiro (1 Aug 2017)
-- curl_setup: Define CURL_NO_OLDIES for building libcurl
-
- .. to catch accidental use of deprecated error codes.
-
- Ref: https://github.com/curl/curl/issues/1688#issuecomment-316764237
-
-Daniel Stenberg (1 Aug 2017)
-- [Jeremy Tan brought this change]
-
- configure: fix the check for IdnToUnicode
-
- Fixes #1669
- Closes #1713
-
-- http: fix response code parser to avoid integer overflow
-
- test 1429 and 1433 were updated to work with the stricter HTTP status line
- parser.
-
- Closes #1714
- Reported-by: Brian Carpenter
-
-Jay Satiro (31 Jul 2017)
-- [Dwarakanath Yadavalli brought this change]
-
- libcurl: Stop using error codes defined under CURL_NO_OLDIES
-
- Fixes https://github.com/curl/curl/issues/1688
- Closes https://github.com/curl/curl/pull/1712
-
-- include.d: clarify --include is only for response headers
-
- Follow-up to 171f8de and de6de94.
-
- Bug: https://github.com/curl/curl/commit/de6de94#commitcomment-23370851
- Reported-by: Daniel Stenberg
-
-Daniel Stenberg (30 Jul 2017)
-- [jasjuang brought this change]
-
- cmake: support make uninstall
-
- Closes #1674
-
-- RELEASE-NOTES: synced with 001701c47
-
-Marcel Raad (29 Jul 2017)
-- AppVeyor: now really use CURL_WERROR
-
- It was misspelled as CURL_ERROR in commit
- 2d86e8d1286e0fbe3d811e2e87fa0b5e53722db4.
-
- Closes https://github.com/curl/curl/pull/1686
-
-Jay Satiro (29 Jul 2017)
-- tool_help: clarify --include is only for response headers
-
- Follow-up to 171f8de.
-
- Ref: https://github.com/curl/curl/issues/1704
-
-- splay: fix signed/unsigned mismatch warning
-
- Follow-up to 4dee50b.
-
- Ref: https://github.com/curl/curl/pull/1693
-
-Daniel Stenberg (28 Jul 2017)
-- include.d: clarify that it concerns the response headers
-
- Reported-by: olesteban at github
- Fixes #1704
-
-- [Johannes Schindelin brought this change]
-
- curl_rtmp: fix a compiler warning
-
- The headers of librtmp declare the socket as `int`, and on Windows, that
- disagrees with curl_socket_t.
-
- Bug: #1652
-
- Signed-off-by: Johannes Schindelin
-
-- test1323: verify curlx_tvdiff
-
-- timeval: struct curltime is a struct timeval replacement
-
- ... to make all libcurl internals able to use the same data types for
- the struct members. The timeval struct differs subtly on several
- platforms so it makes it cumbersome to use everywhere.
-
- Ref: #1652
- Closes #1693
-
-- darwinssl: fix variable type mistake (regression)
-
- ... which made --tlsv1.2 not work because it would blank the max tls
- version variable.
-
- Reported-by: Nick Miyake
- Bug: #1703
-
-- multi: mention integer overflow risk if using > 500 million sockets
-
- Reported-by: ovidiu-benea@users.noreply.github.com
-
- Closes #1675
- Closes #1683
-
-- checksrc: escape open brace in regex
-
- ... to silence warning.
-
-Kamil Dudka (20 Jul 2017)
-- nss: fix a possible use-after-free in SelectClientCert()
-
- ... causing a SIGSEGV in showit() in case the handle used to initiate
- the connection has already been freed.
-
- This commit fixes a bug introduced in curl-7_19_5-204-g5f0cae803.
-
- Reported-by: Rob Sanders
- Bug: https://bugzilla.redhat.com/1436158
-
-- nss: unify the coding style of nss_send() and nss_recv()
-
- No changes in behavior intended by this commit.
-
-Marcel Raad (18 Jul 2017)
-- tests/server/resolve.c: fix deprecation warning
-
- MSVC warns that gethostbyname is deprecated. Always use getaddrinfo
- instead to fix this when IPv6 is enabled, also for IPv4 resolves. This
- is also consistent with what libcurl does.
-
- Closes https://github.com/curl/curl/pull/1682
-
-Jay Satiro (17 Jul 2017)
-- darwinssl: fix pinnedpubkey build error
-
- - s/SessionHandle/Curl_easy/
-
- Bug: https://github.com/curl/curl/commit/eb16305#commitcomment-23035670
- Reported-by: Gisle Vanem
-
-Marcel Raad (16 Jul 2017)
-- rtspd: fix GCC warning after MSVC warning fix
-
- Older GCC warns:
- /tests/server/rtspd.c:1194:10: warning: missing braces around
- initializer [-Wmissing-braces]
-
- Fix this by using memset instead of an initializer.
-
-- libtest: fix MSVC warning C4706
-
- With warning level 4, MSVC warns about assignments within conditional
- expressions. Change the while loop to a do-while loop to fix this. This
- change is also consistent with CODE_STYLE.md.
-
-- sockfilt: suppress conversion warning with explicit cast
-
- MSVC warns when implicitly casting -1 to unsigned long.
-
-- rtspd: fix MSVC level 4 warning
-
- warning C4701: potentially uninitialized local variable 'req' used
-
-- winbuild: re-enable warning C4127 for curl tool
-
- Disabled in cda19a345f6970e22fe8b7a808aeb8f086a21eac. It only needs to
- be disabled for libcurl.
-
-- winbuild: build with warning level 4
-
- This is consistent with 7bc64561a2e63ca93e4b0b31d350773ba80955c2, which
- changed the warning level from 3 to 4 for the Visual Studio project
- files. But disable the level 4 warning C4127 "conditional expression is
- constant", as that one is issued by older versions of the Windows SDK
- as well as curl itself under some circumstances.
-
- Closes https://github.com/curl/curl/pull/1667
-
-Jay Satiro (12 Jul 2017)
-- [Max Dymond brought this change]
-
- travis: install libidn2
-
- Install libidn2 to increase test coverage (IDN tests)
-
- Closes https://github.com/curl/curl/pull/1673
-
-Marcel Raad (12 Jul 2017)
-- travis: enable warnings also in release mode
-
- ... to get warnings also on Linux/GCC and OSX/clang.
-
- Closes https://github.com/curl/curl/pull/1666
-
-Daniel Stenberg (12 Jul 2017)
-- [Max Dymond brought this change]
-
- travis: install libssh2
-
- Install libssh2 to increase test coverage (SFTP, SCP)
-
-Marcel Raad (12 Jul 2017)
-- system.h: include winsock2.h before windows.h
-
- ... to avoid compiler warnings if the user doesn't want
- WIN32_LEAN_AND_MEAN.
-
-- build: remove WIN32_LEAN_AND_MEAN from individual build systems
-
- It's defined for all build systems in curl_setup.h since commit
- beb08481d01a07a8b10938b1078a5e298b1c2912. This caused macro
- redefinition warnings in the configure builds.
-
- Closes https://github.com/curl/curl/pull/1677
-
-Jay Satiro (11 Jul 2017)
-- ISSUE_TEMPLATE: Add a comment not to file security issues on github
-
-Marcel Raad (11 Jul 2017)
-- curl_setup: always define WIN32_LEAN_AND_MEAN on Windows
-
- Make sure to always define WIN32_LEAN_AND_MEAN before including any
- Windows headers to avoid pulling in unnecessary headers. This avoids
- unnecessary macro clashes and compiler warnings.
-
- Ref: https://github.com/curl/curl/issues/1562
- Closes https://github.com/curl/curl/pull/1672
-
-Jay Satiro (11 Jul 2017)
-- strerror: Preserve Windows error code in some functions
-
- This is a follow-up to af02162 which removed (SET_)ERRNO macros. That
- commit was an earlier draft that I committed by mistake, which was then
- remedied by a5834e5 and e909de6, and now this commit. With this commit
- there is now no difference between the current code and the changes that
- were approved in the final draft.
-
- Thanks-to: Max Dymond, Marcel Raad, Daniel Stenberg, Gisle Vanem
- Ref: https://github.com/curl/curl/pull/1589
-
-Marcel Raad (10 Jul 2017)
-- [Max Dymond brought this change]
-
- tests: Fix up issues with errno in test files
-
- Closes https://github.com/curl/curl/pull/1671
-
-Daniel Stenberg (10 Jul 2017)
-- errno: fix non-windows builds after af0216251b94e7
-
-- [Ryan Winograd brought this change]
-
- make: fix docs build on OpenBSD
-
- Ref: #1591
-
-Marcel Raad (10 Jul 2017)
-- ldap: fix MinGW compiler warning
-
- ldap_bind_s is marked as deprecated in w32api's winldap.h shipping with
- the latest original MinGW, resulting in compiler warnings since commit
- f0fe66f13c93d3d0af45d9fb1231c9164e0f9dc8. Fix this for the non-SSPI
- case by using ldap_simple_bind_s again instead of ldap_bind_s with
- LDAP_AUTH_SIMPLE.
-
- Closes https://github.com/curl/curl/pull/1664
-
-- curl-compilers.m4: disable warning spam with Cygwin's clang
-
- When building with Cygwin or MinGW, libtool uses a wrapper executable
- instead of a wrapper script [1], which is written in C and throws
- missing-variable-declarations warnings. Don't enable these warnings on
- Cygwin and MinGW in order to avoid warnings for every executable built,
- which spams the test suite output when using Cygwin's clang.
-
- [1] https://www.gnu.org/software/libtool/manual/html_node/Wrapper-executables.html
-
- Closes https://github.com/curl/curl/pull/1665
-
-Jay Satiro (10 Jul 2017)
-- curl_setup_once: Remove ERRNO/SET_ERRNO macros
-
- Prior to this change (SET_)ERRNO mapped to GetLastError/SetLastError
- for Win32 and regular errno otherwise.
-
- I reviewed the code and found no justifiable reason for conflating errno
- on WIN32 with GetLastError/SetLastError. All Win32 CRTs support errno,
- and any Win32 multithreaded CRT supports thread-local errno.
-
- Fixes https://github.com/curl/curl/issues/895
- Closes https://github.com/curl/curl/pull/1589
-
-- tool_getparam: fix potentially uninitialized err
-
-Marcel Raad (9 Jul 2017)
-- smb: rename variable to fix shadowing warning
-
- GCC 4.6.3 on travis complains:
- smb.c: In function ‘get_posix_time’:
- smb.c:725:13: error: declaration of ‘time’ shadows a global declaration
- [-Werror=shadow]
-
- Fix this by renaming the variable.
-
-- tool_cb_wrt: fix variable shadowing warning
-
- GCC 4.4 complains:
- tool_cb_wrt.c:81: error: declaration of ‘isatty’ shadows a global
- declaration
- /usr/include/unistd.h:782: error: shadowed declaration is here
-
- Fix this by renaming the variable.
-
- Closes https://github.com/curl/curl/pull/1661
-
-Daniel Stenberg (8 Jul 2017)
-- RELEASE-NOTES: synced with be2c999b8
-
-- travis: install stunnel
-
-- valgrind.supp: supress OpenSSL false positive seen on travis
-
-- travis: detect and use valgrind for normal builds
-
- Closes #1653
-
-- travis: add SMB, DICT, TELNET torture to coverage test
-
-- [Paul Harris brought this change]
-
- cmake: offer CMAKE_DEBUG_POSTFIX when building with MSVC
-
- Removes BUILD_RELEASE_DEBUG_DIRS since it wasn't used anywhere.
-
- Closes #1649
-
-- CURLOPT_POSTFIELDS.3: explain the 100-continue magic better
-
-- [Max Dymond brought this change]
-
- test1452: add telnet negotiation
-
- Add a basic telnet server for negotiating some telnet options before
- echoing back any data that's sent to it.
-
- Closes #1645
-
-- travis: do more tests in the coverage run
-
- I added a selection of torture and event tests that run "fast enough"
-
-- curl_easy_escape.3: mention the (lack of) encoding
-
- Fixes #1612
- Reported-by: Jeroen Ooms
-
-- [Gisle Vanem brought this change]
-
- memdebug: don't setbuf() if the file open failed
-
- Bug: https://github.com/curl/curl/issues/828#issuecomment-313475151
-
-- appveyor: enable CURL_WERROR on all builds
-
-- cmake: add CURL_WERROR for enabling "warning as errors"
-
-- [Hannes Magnusson brought this change]
-
- cmake: remove spurious "-l" from linker flags
-
- Fixes #1552
-
-- test506: skip if threaded-resolver
-
-- runtests: support "threaded-resolver" as a feature
-
- ... to let tests require it or skip if present
-
-- asyn-thread.c: fix unused variable warnings on macOS
-
-- http: s/TINY_INITIAL_POST_SIZE/EXPECT_100_THRESHOLD
-
- Make the name reflect its use better, and add a short comment describing
- what it's for.
-
-- cmake: if inet_pton is used, bump _WIN32_WINNT
-
- ... and make sure inet_pton is always checked for when *not* using Windows,
- which is a regression from 4fc6ebe18.
-
- Idea-by: Sergei Nikulov
-
-- select.h: avoid macro redefinition harder
-
- ... by checking the POLLIN define, as the header file checks don't work
- on Windows.
-
-- inet_pton: fix include on windows to get prototype
-
- inet_pton() exists on Windows and gets used by our cmake builds. Make
- sure the correct header file is included to avoid compiler warnings.
-
- Closes #1639
-
-- TODO: 1.10 auto-detect proxy
-
- Closes #1572
-
-- TODO: HTTP proxy CONNECT is non-blocking now
-
-- cmake: fix send/recv argument scanner for windows
-
- ... by simply trying the Windows argument types first.
-
- Fixes #1640
-
-- RELEASE-NOTES: synced with 596cfb6c0
-
-- [Gisle Vanem brought this change]
-
- smb: add support for CURLOPT_FILETIME
-
- Bug: https://curl.haxx.se/mail/lib-2017-07/0005.html
-
- Closes #1643
-
-- travis: install nghttp2 on linux builds
-
- Closes #1642
-
-- [Gisle Vanem brought this change]
-
- smb: fix build for djgpp/MSDOS
-
- bug: https://curl.haxx.se/mail/lib-2017-07/0005.html
-
-- configure: try ldap/lber in reversed order first
-
- When scanning for which LDAP libraries to use, try the -lldap -llber
- combination before the reversed order since it has a greater chance of
- working when linking with libcurl statically.
-
- Fixes #1619
- Closes #1634
- Reported-by: David E. Narváez
-
-- configure: remove checks for 5 functions never used
-
- fork, getprotobyname, inet_addr, perror, uname
-
- closes #1638
-
-- dist: add SMB python deps into the tarball
-
-- [Max Dymond brought this change]
-
- test1451: add SMB support to the testbed
-
- Add test 1451 which does some very basic SMB testing using the impacket
- SMB server.
-
- Closes #1630
-
-- [Max Dymond brought this change]
-
- test: add impacket for SMB testing
-
- Import impacket 0.9.15 for use in SMB testing. This was generated by
- doing "pip2.7 install -t . impacket"
-
- Unnecessary files for current testing were deleted.
-
-- travis.yml: use --enable-werror on debug builds
-
- ... to better detect and fault on compiler warnings/errors
-
- Closes #1637
-
-- tool_sleep: typecast to avoid macos compiler warning
-
- tool_sleep.c:54:24: error: implicit conversion loses integer precision:
- 'long' to '__darwin_suseconds_t' (aka 'int')
- [-Werror,-Wshorten-64-to-32]
-
-- [Martin Kepplinger brought this change]
-
- timeval.c: Use long long constant type for timeval assignment
-
- On a 64 bit host, sparse says:
-
- timeval.c:148:15: warning: constant 0x7fffffffffffffff is so big it is long
- timeval.c:149:12: warning: constant 0x7fffffffffffffff is so big it is long
-
- so let's use long long constant types in order to prevent undesired overflow
- failures.
-
- Bug: https://curl.haxx.se/mail/lib-2017-07/0003.html
-
- Closes #1636
-
- Signed-off-by: Martin Kepplinger
-
-- url: make the original string get used on subsequent transfers
-
- ... since CURLOPT_URL should follow the same rules as other options:
- they remain set until changed or cleared.
-
- Added test 1551 to verify.
-
- Fixes #1631
- Closes #1632
- Reported-by: Pavel Rochnyak
-
-- [Johannes Schindelin brought this change]
-
- gtls: fix build when sizeof(long) < sizeof(void *)
-
- - Change gnutls pointer/int macros to pointer/curl_socket_t.
- Prior to this change they used long type as well.
-
- The size of the `long` data type can be shorter than that of pointer
- types. This is the case most notably on Windows.
-
- If C99 were acceptable, we could simply use `intptr_t` here. But we
- want to retain C89 compatibility.
-
- Simply use the trick of performing pointer arithmetic with the NULL
- pointer: to convert an integer `i` to a pointer, simply take the
- address of the `i`th element of a hypothetical character array
- starting at address NULL. To convert back, simply cast the pointer
- difference.
-
- Thanks to Jay Satiro for the initial modification to use curl_socket_t
- instead of int/long.
-
- Closes #1617
-
- Signed-off-by: Johannes Schindelin
-
-- [Ryan Winograd brought this change]
-
- unit1399: fix integer overflow
-
- Bug: #1616
- Closes #1633
-
-- [Per Malmberg brought this change]
-
- cmake: Added compatibility options for older Windows versions
-
- CURL_STATIC_CRT and ENABLE_INET_PTON
-
- Closes #1621
-
-- unit1399: add logging to time comparison
-
- ... to enable tracking down why autobuilds fail on this
-
- Bug: #1616
-
-- make: build the docs subdir only from within src
-
- ... and don't build at all in include
-
- Prompted-by-work-by: Simon Warta
- Ref: #1590
- Closes #1591
-
-- [Max Dymond brought this change]
-
- test1450: fix up DICT server in torture mode
-
- As per https://github.com/curl/curl/pull/1615, the DICT server is a
- little spammy in torture mode due to the sockets being torn down
- unexpectedly. Fix this by adding some error handling to the handling
- function.
-
- Closes #1629
-
-- [Max Dymond brought this change]
-
- test1450: add simple testing for DICT
-
- Add a new server which provides a DICT interface. This is intended to
- begin coverage testing for lib/dict.c
-
- Closes #1615
-
-- [Dan Fandrich brought this change]
-
- test1521: fix out-of-tree builds, broken with 467da3af
-
- The test.h file is no longer in the same directory as the source file,
- so that directory needs to be added to the include path.
-
- Fixes #1627
- Closes #1628
-
-- [Max Dymond brought this change]
-
- http2: handle PING frames
-
- Add a connection check function to HTTP2 based off RTSP. This causes
- PINGs to be handled the next time the connection is reused.
-
- Closes #1521
-
-- [Max Dymond brought this change]
-
- handler: refactor connection checking
-
- Add a new type of callback to Curl_handler which performs checks on
- the connection. Alter RTSP so that it uses this callback to do its
- own check on connection health.
-
-- [dmitrykos brought this change]
-
- openssl: improve fallback seed of PRNG with a time based hash
-
- Fixes #1620
-
-- [Ryan Winograd brought this change]
-
- progress: prevent resetting t_starttransfer
-
- Prevent `Curl_pgrsTime` from modifying `t_starttransfer` when invoked
- with `TIMER_STARTTRANSFER` more than once during a single request.
-
- When a redirect occurs, this is considered a new request and
- `t_starttransfer` can be updated to reflect the `t_starttransfer` time
- of the redirect request.
-
- Closes #1616
-
- Bug: https://github.com/curl/curl/pull/1602#issuecomment-310267370
-
-- curl_strequal.3: fix typo in SYNOPSIS
-
- Reported-by: Jesse Chisholm
-
- Fixes #1623
-
-- RELEASE-NOTES: synced with ce2c3ebda
-
-Kamil Dudka (28 Jun 2017)
-- curl --socks5-{basic,gssapi}: control socks5 auth
-
- Closes https://github.com/curl/curl/pull/1454
-
-- CURLOPT_SOCKS5_AUTH: allowed methods for SOCKS5 proxy auth
-
- If libcurl was built with GSS-API support, it unconditionally advertised
- GSS-API authentication while connecting to a SOCKS5 proxy. This caused
- problems in environments with improperly configured Kerberos: a stock
- libcurl failed to connect, despite libcurl built without GSS-API
- connected fine using username and password.
-
- This commit introduces the CURLOPT_SOCKS5_AUTH option to control the
- allowed methods for SOCKS5 authentication at run time.
-
- Note that a new option was preferred over reusing CURLOPT_PROXYAUTH
- for compatibility reasons because the set of authentication methods
- allowed by default was different for HTTP and SOCKS5 proxies.
-
- Bug: https://curl.haxx.se/mail/lib-2017-01/0005.html
- Closes https://github.com/curl/curl/pull/1454
-
-- socks: deduplicate the code for auth request
-
-- socks: use proxy_user instead of proxy_name
-
- ... to make it obvious what the data is used for
-
-Daniel Stenberg (27 Jun 2017)
-- libtest/make: generate lib1521.c
-
- ... instead of having the generated code checked in. This saves space in
- the tarball but primarily automatically adapts to newly added options.
-
- Closes #1614
-
-Jay Satiro (26 Jun 2017)
-- tool_getparam: fix memory leak on test 1147 OOM (torture tests)
-
- Bug: https://github.com/curl/curl/pull/1486#issuecomment-310926872
- Reported-by: Dan Fandrich
-
-Dan Fandrich (25 Jun 2017)
-- test1537: fixed memory leak on OOM
-
-Marcel Raad (25 Jun 2017)
-- test1521: fix compiler warnings
-
- The integer literal 3123123123 doesn't fit into a 32-bit signed
- integer, so GCC with 32-bit long warns in C90 mode:
- this decimal constant is unsigned only in ISO C90 [enabled by default]
- Fix this by using ULONG_MAX, which should fit in any curl_off_t and has
- the correct suffix to not issue any warnings.
- Also adds the missing CURLOPT_REQUEST_TARGET from commit
- 9b167fd090f596eac828817d48c247eeae53407f.
-
- Closes https://github.com/curl/curl/pull/1611
-
-Daniel Stenberg (24 Jun 2017)
-- curl/system.h: add check for XTENSA for 32bit gcc
-
- Reported-by: Neil Kolban
- Fixes: 1598
-
-- [Henrik S. Gaßmann brought this change]
-
- winbuild: fix boringssl build
-
- Compile with `WIN32_LEAN_AND_MEAN` which prevents `windows.h` from
- including too much clutter including `wincrypt.h` which in turn contains
- some preprocessor macros that clash with boringssl symbols.
-
- Detect boringssl by checking the existance of `is_boringssl.h` and set
- the corresponding `HAVE_BORINGSSL` for compilation which is used in
- `ldap.c` to undefine the evil macros.
-
- Closes #1610
-
-- progress: progress.timespent needs to be us
-
- follow-up to 64ed44a815e4e to fix test 500 failures
-
-Marcel Raad (24 Jun 2017)
-- curl-compilers.m4: fix unknown-warning-option on Apple clang
-
- Since 5598b0bd63f690c151074494ce47ef872f004ab4, clang -v is used to
- detect the clang version. The version number was expected to come after
- the word "version". For Apple clang, this doesn't work as it has its
- own versioning scheme.
- The version number is now first searched after the string
- "based on LLVM". This works for Apple clang before version 7, and also
- for e.g. Ubuntu's clang up to version 3.7. If it's not found and the
- version string contains "Apple LLVM version", clang version 3.7 is
- assumed, which is the version that comes with Xcode 7. Otherwise, the
- version number is still expected after the word "version", which works
- for very old Apple clang versions.
-
- Ref: https://trac.macports.org/wiki/XcodeVersionInfo
- Fixes https://github.com/curl/curl/issues/1606
- Closes https://github.com/curl/curl/pull/1607
-
-Daniel Stenberg (24 Jun 2017)
-- progress: fix "time spent", broke in adef394ac
-
-- CURLINFO_REDIRECT_URL.3: mention the CURLOPT_MAXREDIRS case
-
- ... supported since 7.54.1
-
-- maketgz: switch to -6e for xz
-
- To reduce the memory requirement for decompress, and still do almost as
- good compression as with -9e.
-
- Pointed-out-by: Dan Fandrich
-
-- libtest/Makefile: remove unused lib1541 variables
-
-- CONTRIBUTE.md: mention the out-of-tree build test too
-
-- maketgz: switch to xz instead of lzma
-
- The compressed output size seems to be a tad bit smaller, but generally
- xz seems more preferred these days and is used directly by for example
- gentoo instead of bz2.
-
- "Users of LZMA Utils should move to XZ Utils" =>
- https://tukaani.org/lzma/
-
- Closes #1604
-
-- --request-target: instead of --strip-path-slash
-
- ... and CURLOPT_REQUEST_TARGET instead of CURLOPT_STRIP_PATH_SLASH.
-
- This option instead provides the full "alternative" target to use in the
- request, instead of extracting the path from the URL.
-
- Test 1298 and 1299 updated accordingly.
-
- Idea-by: Evert Pot
- Suggestion: https://daniel.haxx.se/blog/2017/06/19/options-with-curl/comment-page-1/#comment-18373
-
- Closes #1593
-
-Marcel Raad (21 Jun 2017)
-- lib1521: fix missing-variable-declarations clang warnings
-
- Declare TU-local variables static.
-
-- travis: enable typecheck-gcc warnings
-
- - switch debug and release configurations so that we get an optimized
- build with GCC 4.3+ as required by typecheck-gcc
- - enable warnings-as-errors for release builds
- (which have warnings disabled)
-
- Closes https://github.com/curl/curl/pull/1595
-
-- typecheck-gcc: add support for CURLINFO_OFF_T
-
- typecheck-gcc expected curl_socket_t instead of curl_off_t arguments
- for CURLINFO_OFF_T. Detected by test1521, unfortunately only when run
- locally.
-
- Closes https://github.com/curl/curl/pull/1592
-
-Daniel Stenberg (21 Jun 2017)
-- [Simon Warta brought this change]
-
- ci: whitelist branches to avoid testing feature branches twice
-
-- [Gisle Vanem brought this change]
-
- lib: fix the djgpp build
-
- Bug: https://github.com/curl/curl/commit/73a2fcea0b4adea6ba342cd7ed1149782c214ae3#commitcomment-22655993
-
-Marcel Raad (20 Jun 2017)
-- if2ip: fix compiler warning in ISO C90 mode
-
- remote_scope_id is only used when both HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID
- and ENABLE_IPV6 are defined instead of only one of them.
-
-Daniel Stenberg (20 Jun 2017)
-- travis: do the distcheck test build out-of-tree as well
-
-- http: add --strip-path-slash and CURLOPT_STRIP_PATH_SLASH
-
- ... to enable sending "OPTIONS *" which wasn't possible previously.
-
- This option currently only works for HTTP.
-
- Added test cases 1298 + 1299 to verify
-
- Fixes #1280
- Closes #1462
-
-- test1521: test getinfo's OFF_T types too
-
- Closes #1588
-
-- lib1521: add curl_easy_getinfo calls to the test set
-
- Also added return value checks to make sure no unexpected return codes
- are used.
-
-- [Simon Warta brought this change]
-
- automake: use $(MKHELP) variable instead if constant mkhelp.pl
-
- this improves symmetry with the rule above
-
-- [Simon Warta brought this change]
-
- mkhelp.pl: fix script name in usage text
-
-- RELEASE-NOTES: synced with 3b80d3ca4
-
-- getinfo: return sizes as curl_off_t
-
- This change introduces new alternatives for the existing six
- curl_easy_getinfo() options that return sizes or speeds as doubles. The
- new versions are named like the old ones but with an appended '_T':
-
- CURLINFO_CONTENT_LENGTH_DOWNLOAD_T
- CURLINFO_CONTENT_LENGTH_UPLOAD_T
- CURLINFO_SIZE_DOWNLOAD_T
- CURLINFO_SIZE_UPLOAD_T
- CURLINFO_SPEED_DOWNLOAD_T
- CURLINFO_SPEED_UPLOAD_T
-
- Closes #1511
-
-- PIPELINING_SERVER_BL: cleanup the internal list use
-
- The list was freed incorrectly since the llist refactor of
- cbae73e1dd959. Added test 1550 to verify that it works and avoid future
- regressions.
-
- Reported-by: Pascal Terjan
-
- Fixes #1584
- Closes #1585
-
-- http2: fix OOM crash
-
- torture mode with test 1021 found it
-
-- CURLOPT_PREQUOTE.3: spellfix man page reference
-
-Marcel Raad (18 Jun 2017)
-- http_proxy: fix build with http and proxy
-
- After deff7de0eb0e22d2d142b96b9cc84cd8db5d2a48, the build without
- CURL_DISABLE_PROXY and CURL_DISABLE_HTTP was failing because of missing
- includes.
-
-- http_proxy: fix compiler warning
-
- With CURL_DISABLE_PROXY or CURL_DISABLE_HTTP, GCC complained about a
- missing prototype for Curl_connect_free.
-
-Daniel Stenberg (18 Jun 2017)
-- TODO: update the TOC too
-
-- TODO: implement support for CURLOPT_PREQUOTE with SFTP
-
- ... also updated the CURLOPT_PREQUOTE.3 man page to mention the correct
- protocol support.
-
- Closes #1514
-
-- tool_wrte_cb: remove check for config == NULL
-
- ... as it really cannot have reached this far with config being NULL,
- thus this is unnecesary and misleading.
-
- Bug: https://news.ycombinator.com/item?id=14577585 and
- https://daniel.haxx.se/blog/2017/06/17/curl-doesnt-spew-binary-anymore/comment-page-1/#comment-18356
-
- Forwarded-to-us-by: Jakub Wilk
-
-- curl: prevent binary output spewed to terminal
-
- ... unless "--output -" is used. Binary detection is done by simply
- checking for a binary zero in early data.
-
- Added test 1425 1426 to verify.
-
- Closes #1512
-
-Marcel Raad (16 Jun 2017)
-- Makefile.m32: enable -W for MinGW32 build
-
- The configure-based build also has this in addition to -Wall.
-
- Closes https://github.com/curl/curl/pull/1578
-
-- curl-compilers.m4: enable comma clang warning
-
- It usually warns when using commas instead of semicolons or other
- operators by accident.
-
- Closes https://github.com/curl/curl/pull/1578
-
-- curl-compilers.m4: enable missing-variable-declarations clang warning
-
- It usually warns when forgetting to declare TU-local variables static.
-
- Closes https://github.com/curl/curl/pull/1578
-
-- curl-compilers.m4: enable double-promotion warning
-
- Enable -Wdouble-promotion for both GCC and clang. It warns on implicit
- promotion from float to double.
-
- Closes https://github.com/curl/curl/pull/1578
-
-- curl-compilers.m4: enable vla warning for clang
-
- Previously, that warning was only implicitly active in C90 mode.
- Enable it unconditionally as already done for GCC.
-
- Closes https://github.com/curl/curl/pull/1578
-
-Daniel Stenberg (16 Jun 2017)
-- http-proxy: fix chunked-encoded CONNECT responses
-
- Regression since 5113ad0424.
-
- ... and remove 'flaky' from test 1061 again
-
- Closes #1579
-
-- http-proxy: deal with EAGAIN
-
- ... the previous code would reset the header length wrongly (since
- 5113ad0424). This makes test 1060 reliable again.
-
- Also: make sws send even smaller chunks of data to increase the
- likeliness of this happening.
-
-- libtest/libntlmconnect: fix compiler warnings from f94fcdb
-
-- [Jay Satiro brought this change]
-
- HTTPS-Proxy: don't offer h2 for https proxy connections
-
- Bug: https://github.com/curl/curl/issues/1254
-
- Closes #1546
-
-- tests: stabilize test 2032 and 2033
-
- Both these tests run the same underlying test code: libntlmconnect.c -
- this test code made some assumptions about socket ordering when it used
- curl_easy_fdset() and when we changed timing or got accidental changes
- in libcurl the tests would fail.
-
- The tests verify that the different transfers keep using the same
- connections, which I now instead made sure by adding the number of bytes
- each transfer gets and then verifies that they always get the same
- amount as when these tests worked.
-
- Closes #1576
-
-- test1148: verify the -# progressbar
-
- Closes #1569
-
-- test1061: mark as flaky
-
- Fails intermittently on travis builds since a few days. Likely due to
- 5113ad0424.
-
-Jay Satiro (16 Jun 2017)
-- url: refactor the check for Windows drive letter in path
-
- - Move the logic to detect a Windows drive letter prefix
- (eg c: in c:foo) into a function-like macro.
-
- Closes https://github.com/curl/curl/pull/1571
-
-- mk-ca-bundle.pl: Check curl's exit code after certdata download
-
- - No longer allow partial downloads of certdata.
-
- Prior to this change partial downloads were (erroneously?) allowed since
- only the server code was checked to be 200.
-
- Bug: https://github.com/curl/curl/pull/1577
- Reported-by: Matteo B.
-
-Daniel Stenberg (16 Jun 2017)
-- dist: add the fuzz dir to the tarball
-
-- configure: disable nghttp2 too if HTTP has been disabled
-
-- http-proxy: fix build with --disable-proxy or --disable-http
-
- Reported-by: Dan Fandrich
-
-- fuzz/README: document how to build
-
- Fixes #1476
-
-- [Frederik B brought this change]
-
- fuzz: corpora file structure, initial commit
-
-- [Frederik B brought this change]
-
- fuzz: bring oss-fuzz initial code converted to C89
-
-- http-proxy: only attempt FTP over HTTP proxy
-
- ... all other non-HTTP protocol schemes are now defaulting to "tunnel
- trough" mode if a HTTP proxy is specified. In reality there are no HTTP
- proxies out there that allow those other schemes.
-
- Assisted-by: Ray Satiro, Michael Kaufmann
-
- Closes #1505
-
-- TODO: the generated include file is gone
-
- ... since commit 73a2fcea0b
-
-- curl_setup.h: error out on CURL_WANTS_CA_BUNDLE_ENV use
-
- ... to make it really apparent if there's any user using this on purpose.
-
- Suggested-by: Jay Satiro
-
- Closes #1542
-
-- lib/curl_setup.h: remove CURL_WANTS_CA_BUNDLE_ENV
-
- When this define was set, libcurl would check the environment variable
- named CURL_CA_BUNDLE at run-time and use that CA cert bundle. This
- feature was only defined by the watcom and m32 makefiles and caused
- inconsistent behaviours among libcurls built on different platforms.
-
- The curl tool does already feature its own similar logic and the library
- does not really need it, and it isn't documented libcurl behavior. So
- this change removes it.
-
- Ref: #1538
-
-- test1147: verify -H on a file
-
-- curl: allow --header and --proxy-header read from file
-
- So many headers can be provided as @filename.
-
- Suggested-by: Timothe Litt
-
- Closes #1486
-
-- RELEASE-NOTES: synced with 2ad80eec5
-
-- curl/curlver.h: start working on 7.55.0
-
-- http-proxy: do the HTTP CONNECT process entirely non-blocking
-
- Mentioned as a problem since 2007 (8f87c15bdac63) and of course it
- existed even before that.
-
- Closes #1547
-
-- progress: let "current speed" be UL + DL speeds combined
-
- Bug #1556
- Reported-by: Paul Harris
- Closes #1559
-
-Marcel Raad (14 Jun 2017)
-- system.h: fix MinGW build
-
- CURLSYS_PULL_WS2TCPIP_H got renamed to CURL_PULL_WS2TCPIP_H in commit
- 73a2fcea0b4adea6ba342cd7ed1149782c214ae3.
-
-Daniel Stenberg (14 Jun 2017)
-- timers: store internal time stamps as time_t instead of doubles
-
- This gives us accurate precision and it allows us to avoid storing "no
- time" for systems with too low timer resolution as we then bump the time
- up to 1 microsecond. Should fix test 573 on windows.
-
- Remove the now unused curlx_tvdiff_secs() function.
-
- Maintains the external getinfo() API with using doubles.
-
- Fixes #1531
-
-- dist: make the hugehelp.c not get regenerated unnecessarily
-
- The maketgz script now makes sure the generated hugehelp.c file in the
- tarball is newer than the generated curl.1 man page, so that it doesn't
- have to get unnecessarily rebuilt first thing in a typical build. It
- thus also removes the need for perl to build off a plain release
- tarball.
-
- Fixes #1565
-
-- includes: remove curl/curlbuild.h and curl/curlrules.h
-
- Rely entirely on curl/system.h now.
-
- Introduced in Aug 2008 with commit 14240e9e109f. Now gone.
-
- Fixes #1456
-
-Version 7.54.1 (14 Jun 2017)
-
-Daniel Stenberg (14 Jun 2017)
-- release: 7.54.1
-
-Dan Fandrich (13 Jun 2017)
-- mk-lib1521.pl: updated to match the test changes in 916ec30a
-
-Daniel Stenberg (13 Jun 2017)
-- [Stuart Henderson brought this change]
-
- libressl: OCSP and intermediate certs workaround no longer needed
-
- lib/vtls/openssl.c has a workaround for a bug with OCSP responses signed
- by intermediate certs, this was fixed in LibreSSL in
- https://github.com/libressl-portable/openbsd/commit/912c64f68f7ac4f225b7d1fdc8fbd43168912ba0
-
- Bug: https://curl.haxx.se/mail/lib-2017-06/0038.html
-
-- url: fix buffer overwrite with file protocol (CVE-2017-9502)
-
- Bug: https://github.com/curl/curl/issues/1540
- Advisory: https://curl.haxx.se/docs/adv_20170614.html
-
- Assisted-by: Ray Satiro
- Reported-by: Marcel Raad
-
-- urlglob: fix division by zero
-
- The multiply() function that is used to avoid integer overflows, was
- itself reason for a possible division by zero error when passed a
- specially formatted glob.
-
- Reported-by: GwanYeong Kim
-
-- configure: update the copyright year in the output
-
-- [ygrek brought this change]
-
- BINDINGS: update SP-Forth and OCaml urls
-
-Michael Kaufmann (11 Jun 2017)
-- FindWin32CACert: Use a temporary buffer on the stack
-
- Don't malloc() the temporary buffer, and use the correct type:
- SearchPath() works with TCHAR, but SearchPathA() works with char.
- Set the buffer size to MAX_PATH, because the terminating null byte
- is already included in MAX_PATH.
-
- Reviewed-by: Daniel Stenberg
- Reviewed-by: Marcel Raad
-
- Closes #1548
-
-Dan Fandrich (11 Jun 2017)
-- test1521: fixed OOM handling
-
-Daniel Stenberg (9 Jun 2017)
-- RELEASE-PROCEDURE: updated future release dates
-
-- [Paul Harris brought this change]
-
- gitignore: ignore all vim swap files
-
- Closes #1561
-
-- lib1521: fix compiler warnings on the use of bad 'long' values
-
- Reported-by: Marcel Raad
- Bug: https://github.com/curl/curl/commit/cccac4fb2b20d6ed87da7978408c3ecacc464fe4#commitcomment-22453387
-
-- setopt: check CURLOPT_ADDRESS_SCOPE option range
-
- ... and return error instead of triggering an assert() when being way
- out of range.
-
-Jay Satiro (8 Jun 2017)
-- [TheAssassin brought this change]
-
- cmake: Fix inconsistency regarding mbed TLS include directory
-
- Previously, one had to set MBEDTLS_INCLUDE_DIR to make CMake find the
- headers, but the system complained that mbed TLS wasn't found due to
- MBEDTLS_INCLUDE_DIRS (note the trailing s) was not set. This commit
- attempts to fix that.
-
- Closes https://github.com/curl/curl/pull/1541
-
-Daniel Stenberg (8 Jun 2017)
-- [Ryuichi KAWAMATA brought this change]
-
- examples/multi-uv.c: fix deprecated symbol
-
- Closes #1557
-
-- asyn-ares: s/Curl_expire_latest/Curl_expire
-
-- expire: remove Curl_expire_latest()
-
- With the introduction of expire IDs and the fact that existing timers
- can be removed now and thus never expire, the concept with adding a
- "latest" timer is not working anymore as it risks to not expire at all.
-
- So, to be certain the timers actually are in line and will expire, the
- plain Curl_expire() needs to be used. The _latest() function was added
- as a sort of shortcut in the past that's quite simply not necessary
- anymore.
-
- Follow-up to 31b39c40cf90
-
- Reported-by: Paul Harris
-
- Closes #1555
-
-- [Chris Carlmar brought this change]
-
- configure: fix link with librtmp when specifying path
-
- Bug: https://curl.haxx.se/mail/lib-2017-06/0017.html
-
-- file: make speedcheck use current time for checks
-
- ... as it would previously just get the "now" timestamp before the
- transfer starts and then not update it again.
-
- Closes #1550
-
-- metalink: remove unused printf() argument
-
-- travis: let some builds *not* use --enable-debug
-
- typecheck-gcc and other things require optimized builds
-
- Closes #1544
-
-- README.md: show the coverall coverage on github
-
-- lib1521: fix compiler warnings
-
-- test1521: make the code < 80 columns wide
-
-- test1121: use stricter types to work with typcheck-gcc
-
-- typecheck-gcc: allow CURLOPT_STDERR to be NULL too
-
-- test1521: test *all* curl_easy_setopt options
-
- mk-lib1521.pl generates a test program (lib1521.c) that calls
- curl_easy_setopt() for every known option with a few typical values to
- make sure they work (ignoring the return codes).
-
- Some small changes were necessary to avoid asserts and NULL accesses
- when doing this.
-
- The perl script needs to be manually rerun when we add new options.
-
- Closes #1543
-
-Dan Fandrich (5 Jun 2017)
-- test1538: added "verbose logs" keyword
-
- These error messages are not displayed with --disable-verbose
-
-Daniel Stenberg (5 Jun 2017)
-- test1262: verify ftp download with -z for "if older than this"
-
-Marcel Raad (5 Jun 2017)
-- curl_ntlm_core: use Curl_raw_toupper instead of toupper
-
- This was the only remaining use of toupper in the entire source code.
-
- Suggested-by: Daniel Stenberg
-
-Daniel Stenberg (4 Jun 2017)
-- RELEASE-NOTES: synced with 65ba92650
-
-Marcel Raad (4 Jun 2017)
-- curl_ntlm_core: pass unsigned char to toupper
-
- Otherwise, clang on Cygwin64 warns:
- curl_ntlm_core.c:525:35: error: array subscript is of type 'char'
- [-Werror,-Wchar-subscripts]
- dest[2 * i] = (unsigned char)(toupper(src[i]));
- ^~~~~~~~~~~~~~~
- /usr/include/ctype.h:152:25: note: expanded from macro 'toupper'
- (void) __CTYPE_PTR[__x]; (toupper) (__x);})
- ^~~~
-
-Jay Satiro (3 Jun 2017)
-- [Mahmoud Samir Fayed brought this change]
-
- BINDINGS: add Ring binding
-
- Closes https://github.com/curl/curl/pull/1539
-
-Daniel Stenberg (4 Jun 2017)
-- CONTRIBUTE.md: mention tests done on pull requests
-
-- travis: add coverage, distcheck and cmake builds
-
- Closes #1534
-
-Marcel Raad (3 Jun 2017)
-- libtest: fix int-in-bool-context warnings
-
- GCC 7 complained:
- ‘*’ in boolean context, suggest ‘&&’ instead [-Wint-in-bool-context]
-
-- libtest: fix implicit-fallthrough warnings with GCC 7
-
-- x509asn1: fix implicit-fallthrough warning with GCC 7
-
-- curl_sasl: fix unused-variable warning
-
- This fixes the following warning with CURL_DISABLE_CRYPTO_AUTH,
- as seen in the autobuilds:
-
- curl_sasl.c:417:9: warning: unused variable 'serverdata'
- [-Wunused-variable]
-
-Daniel Stenberg (3 Jun 2017)
-- updatemanpages.pl: error out on too old git version
-
-Marcel Raad (3 Jun 2017)
-- cyassl: define build macros before including ssl.h
-
- cyassl/ssl.h needs the macros from cyassl/options.h, so define them
- before including cyassl/ssl.h the first time, which happens in
- urldata.h.
- This broke the build on Ubuntu Xenial, which comes with WolfSSL 3.4.8
- and therefore redefines the symbols from cyassl/options.h instead of
- including the header.
-
- Closes https://github.com/curl/curl/pull/1536
-
-Daniel Stenberg (3 Jun 2017)
-- tool_util: remove unused tvdiff_secs and remove tool_ prefix
-
- Closes #1532
-
-- dedotdot: fixed output for ".." and "." only input
-
- Found when updating test 1395, which I did to increase test coverage of
- this source file...
-
- Closes #1535
-
-Marcel Raad (2 Jun 2017)
-- mbedtls: make TU-local variable static
-
- mbedtls_x509_crt_profile_fr is only used locally.
- This fixes a missing-variable-declarations warning with clang.
-
-- MD(4|5): silence cast-align clang warning
-
- Unaligned access is on purpose here and the warning is harmless on
- affected architectures. GCC knows that, while clang warns on all
- architectures.
-
-Daniel Stenberg (2 Jun 2017)
-- test1538: fix typo
-
-- test1538: verify the libcurl strerror API calls
-
-- curl_endian: remove unused functions
-
- Closes #1529
-
-- test1537: dedicated tests of the URL (un)escape API calls
-
- Closes #1530
-
-- coverage: run event tests too
-
- ... the torture ones are commented out only because they are slooooow.
-
-- build: provide easy code coverage measuring
-
- Closes #1528
-
-- typecheck-gcc.h: check CURLINFO_CERTINFO
-
- ... and update the certinfo.c example accordingly.
-
- Fixes https://github.com/curl/curl/issues/846
-
-- typecheck-gcc.h: check CURLINFO_TLS_SSL_PTR and CURLINFO_TLS_SESSION
-
- ... so that they get the required "struct curl_tlssessioninfo **"
- arguments.
-
-- typecheck-gcc.h: separate getinfo slist checks from other pointers
-
- Fixes #1524
-
-Marcel Raad (1 Jun 2017)
-- curl-compilers.m4: escape square brackets in regex
-
- Otherwise, they are removed in the final configure file.
- Also changed sed to "$SED" like in most other calls in this file.
-
-- curl-compilers.m4: fix compiler_num for clang
-
- "clang -dumpversion" always returns "4.2.1", the GCC version that clang
- was initially compatible to. Use "clang -v" instead, which returns the
- actual clang version.
-
- Fixes https://github.com/curl/curl/issues/1522
- Closes https://github.com/curl/curl/pull/1523
-
-Daniel Stenberg (31 May 2017)
-- examples/externalsocket.c: s/closesocket/closecb
-
- ... since closesocket is a function in WinSock.
-
- Reported-by: Marcel Raad
- Bug: https://github.com/curl/curl/commit/55fcb8485914700132fd1854c9509b66c955efbe#co
- mmitcomment-22347818
-
-Marcel Raad (31 May 2017)
-- lib583: fix compiler warning
-
- Use CURLMcode for variable 'res' and cast to int where necessary
- instead of the other way around. Other tests do the same.
-
- This fixes the following clang warning:
- lib583.c:68:15: warning: cast from function call of type 'CURLMcode' to
- non-matching type 'int' [-Wbad-function-cast]
-
-Daniel Stenberg (31 May 2017)
-- CURLOPT_SSH_KEY*.3: typos
-
- Reported-by: Gisle Vanem
-
-- CURLOPT_STREAM_DEPENDS.3: typo
-
-- CURLOPT_FNMATCH_FUNCTION.3: also modified example to avoid fcpp issues
-
-- CURLOPT_FNMATCH_DATA.3: modified example to avoid fcpp issues
-
-- opts: more than 100 more examples for man pages...
-
-- libtest/lib574.c: use correct callback proto
-
-- examples/sampleconv.c: indent changes, made callbacks static
-
-- example/externalsocket.c: make it use CLOSESOCKETFUNCTION too
-
-Marcel Raad (31 May 2017)
-- curl-compilers.m4: enable -Wshift-sign-overflow for clang
-
- clang 2.9+ supports -Wshift-sign-overflow, which warns about undefined
- behavior on signed left shifts when shifting by too many places.
-
- Ref: https://github.com/curl/curl/issues/1516
- Closes https://github.com/curl/curl/pull/1517
-
-Daniel Stenberg (31 May 2017)
-- CURLOPT_PROXY.3: fix test 1140 breakage
-
-Jay Satiro (31 May 2017)
-- build-wolfssl: Sync config with wolfSSL 3.11
-
- wolfSSL configure script relevant changes from 3.10 to 3.11:
-
- - Async threading support added; disabled by default without async
- crypto, which continues to be disabled by default.
-
- wolfSSL configure script relevant changes from 3.11 to 3.11.1 (beta):
-
- - TLS 1.3 beta support added; disabled by default.
-
- For experimenting I put in a comment block the defines needed to enable
- TLS 1.3 support (ie the equivalent of --enable-tls13).
-
-Daniel Stenberg (30 May 2017)
-- opts: more examples added to man pages
-
-- docs: clarify NO_PROXY further
-
- Fixes #1208
-
-- CURLOPT_PROXY.3: describe the environment variables more
-
-- transfer: init the infilesize from the postfields...
-
- ... with a strlen() if no size was set, and do this in the pretransfer
- function so that the info is set early. Otherwise, the default strlen()
- done on the POSTFIELDS data never sets state.infilesize.
-
- Reported-by: Vincas Razma
- Bug: #1294
-
-Jay Satiro (29 May 2017)
-- test557: fix ubsan runtime error due to int left shift
-
- - Test curl_msnprintf negative int width arg using INT_MIN instead of
- 1 << 31 which is undefined behavior.
-
- Closes https://github.com/curl/curl/issues/1516
-
-- mbedtls: fix variable shadow warning
-
- vtls/mbedtls.c:804:69: warning: declaration of 'entropy' shadows a global declaration [-Wshadow]
- CURLcode Curl_mbedtls_random(struct Curl_easy *data, unsigned char *entropy,
- ^~~~~~~
-
-Daniel Stenberg (29 May 2017)
-- RELEASE-NOTES: synced with 3aaac8c2f
-
-Dan Fandrich (28 May 2017)
-- tests: removed some redundant empty sections
-
-- runtests.pl: removed feature
-
- This hasn't been used in over a decade. can still be used to
- run commands before the main test.
-
-Daniel Stenberg (27 May 2017)
-- opts: more examples added in option man pages
-
-Dan Fandrich (27 May 2017)
-- runtests.pl: removed unused arguments to valgrindparse
-
-Daniel Stenberg (25 May 2017)
-- TODO: 6.4 is done, send telnet data in chunks
-
-- [Phil Crump brought this change]
-
- docs/CURLOPT_SSLVERSION.3: Correct define name in example
-
- Closes #1509
-
-- ssh: fix 'left' may be used uninitialized
-
- follow-up to f31760e63b4e
-
- Reported-by: Michael Kaufmann
- Bug: https://github.com/curl/curl/pull/1495#issuecomment-303982793
-
-Michael Kaufmann (24 May 2017)
-- time: fix type conversions and compiler warnings
-
- Fix bugs and compiler warnings on systems with 32-bit long and
- 64-bit time_t.
-
- Reviewed-by: Daniel Stenberg
-
- Closes #1499
-
-Marcel Raad (24 May 2017)
-- examples: fix Wimplicit-fallthrough warnings
-
- This is contained in -Wextra with GCC 7.
-
-Daniel Stenberg (24 May 2017)
-- [Anatol Belski brought this change]
-
- winbuild: fix the nghttp2 build
-
- Closes #1321
-
-GitHub (24 May 2017)
-- [Sergei Nikulov brought this change]
-
- LDAP: documentation update per #878 changes (#1506)
-
-Daniel Stenberg (23 May 2017)
-- redirect: store the "would redirect to" URL when max redirs is reached
-
- Test 1261 added to verify.
-
- Reported-by: Lloyd Fournier
-
- Fixes #1489
- Closes #1497
-
-GitHub (24 May 2017)
-- [Sergei Nikulov brought this change]
-
- LDAP: fixed checksrc issue
-
-- [Sergei Nikulov brought this change]
-
- LDAP: using ldap_bind_s on Windows with methods (#878)
-
- * LDAP: using ldap_bind_s on Windows with methods(BASIC/DIGEST/NTLM/AUTONEG)
-
- * ldap: updated per build options handling
-
- * ldap: fixed logic for auth selection
-
-Daniel Stenberg (23 May 2017)
-- [Akhil Kedia brought this change]
-
- cmake: fix build on Ubuntu 14.04
-
- Fixed a syntax error with setting cache variables (The type and
- docstring were missing), resulting in build errors. Quoted the
- CURL_CA_PATH and CURL_CA_BUNDLE otherwise the path was written without
- quotes in C code, resulting in build errors.
-
- Closes #1503
-
- Signed-off-by: Akhil
-
-- url: fix declaration of 'pipe' shadows a global declaration
-
- follow-up to 4cdb1be8246c
-
-Kamil Dudka (22 May 2017)
-- memdebug: fix compilation failure
-
- .... caused by a typo in the last commit (fixing issue #1504):
-
- memdebug.c: In function ‘curl_fclose’:
- memdebug.c:444:3: error: implicit declaration of function
- ‘DEBUGDEBUGASSERT’ [-Werror=implicit-function-declaration]
-
-Daniel Stenberg (22 May 2017)
-- assert: avoid, use DEBUGASSERT instead!
-
- ... as it does extra checks to actually work.
-
- Reported-by: jonrumsey at github
- Fixes #1504
-
-- [Simon Warta brought this change]
-
- cmake: remove unused variables: GNUTLS_ENABLED, NSS_ENABLED
-
-- [Simon Warta brought this change]
-
- cmake: remove CURL_CA_BUNDLE from cmake TODO
-
-- [Simon Warta brought this change]
-
- cmake: auto detection of CURL_CA_BUNDLE/CURL_CA_PATH
-
- Closes #1461
-
-- [Simon Warta brought this change]
-
- cmake: add CURL_CA_BUNDLE/CURL_CA_FALLBACK/CURL_CA_PATH options
-
-- [Simon Warta brought this change]
-
- cmake: Add CURL_CA_FALLBACK to curl_config.h.cmake
-
- This is for symmetry with the autoconf generated curl_config.h.in
-
-- RELEASE-NOTES: synced with 052a14e3c
-
-Michael Kaufmann (20 May 2017)
-- tests: stabilize test 1034
-
- Pass the invalid domain name on stdin. On some systems, the test
- framework cannot pass invalid UTF-8 sequences on the command line.
-
- Closes #1488
-
-Daniel Stenberg (20 May 2017)
-- ssh: ignore timeouts during disconnect
-
- ... as otherwise it risks not cleaning up the libssh2 handle properly
- which leads to memory leak!
-
- Assisted-by: Joel Depooter
-
- Closes #1495
- Closes #1479
-
- Bug: https://curl.haxx.se/mail/lib-2017-04/0024.html
-
-- ghiper.c/hiperfifo.c: add comment about missing timer functionality
-
- It takes someone to read up on the APIs of these libraries to figure out
- how to do this correctly.
-
- Reported-by: Michael Kaufmann
-
- Closes #1253
-
-- asiohiper.cpp / evhiperfifo.c: deal with negative timerfunction input
-
- That means delete the timer.
-
- Reported-by: Michael Kaufmann
- Ref: #1253
-
-- cmdline-opts/write-out.d: s/-L/--location
-
- Since the man page generator wants the long option name version to
- generate the proper output.
-
-- [Bernhard M. Wiedemann brought this change]
-
- mkhelp.pl: do not add current time into curl binary
-
- ... as part of hugehelpgz rodata to make build reproducible.
-
- See https://reproducible-builds.org/ for why this is good
-
- Closes #1490
-
-- oauth2-bearer.d: mention the argument
-
-Nick Zitzmann (16 May 2017)
-- darwinssl: Fix exception when processing a client-side certificate file
- if no error was raised by the API but the SecIdentityRef was null
-
- Fixes #1450
-
-Daniel Stenberg (16 May 2017)
-- curl_sasl: fix build error with CURL_DISABLE_CRYPTO_AUTH + USE_NTLM
-
- Reported-by: wyattoday at github
- Fixes #1487
-
-- docs/cmdline-opts/config.d: edit for language
-
-- RELEASE-NOTES: synced with eb16305e6
-
-- [moparisthebest brought this change]
-
- SecureTransport/DarwinSSL: Implement public key pinning
-
- Closes #1400
-
-- man pages: fix example syntax errors
-
- follow-up to 5ddad099b42b50
-
-- docs/libcurl/opts: added more examples in man pages
-
-- CURLOPT_HTTPPROXYTUNNEL: clarify, add example
-
-- curl: show the libcurl release date in --version output
-
- ... and support and additional "security patched" date for those who
- enhance older versions that way. Pass on the define CURL_PATCHSTAMP with
- a date for that.
-
- Building with non-release headers shows the date as [unreleased].
-
- Also: this changes the date format generated in the curlver.h file to be
- "YYYY-MM-DD" (no name of the day or month, no time, no time zone) to
- make it easier on the eye and easier to parse. Example (new) date
- string: 2017-05-09
-
- Suggested-by: Brian Childs
-
- Closes #1474
-
-Dan Fandrich (13 May 2017)
-- url.c: add a compile-time check that CURL_MAX_WRITE_SIZE is large enough
-
- Some code (e.g. Curl_fillreadbuffer) assumes that this buffer is not
- exceedingly tiny and will break if it is. This same check is already
- done at run time in the CURLOPT_BUFFERSIZE option.
-
-- lib510: don't write past the end of the buffer if it's too small
-
-- tests: added missing keywords "chunked Transfer-Encoding"
-
-Daniel Stenberg (13 May 2017)
-- THANKS: add a few missing names
-
- ... I found them in the commit logs from the early years
-
-Dan Fandrich (13 May 2017)
-- tests: made a couple of prechecks consistent with others
-
- Also removed a TODO suggesting caching the precheck results. Tests
- showed this would save about 0.1 sec on the total test run time on a
- relatively modern system, an unnoticeable gain at the cost of longer and
- more complicated code. There would also be a danger that a cached test
- result would be inappropriately returned, such as when other test
- dependencies (like environment variables) are different or when the
- precheck causes side effects (like filesystem changes).
-
-Daniel Stenberg (12 May 2017)
-- FAQ: add 7.4 to toc
-
- ... and delete trailing whitespace
-
- Fixes #1484
-
-- multi: remove leftover debug infof() calls from e9fd794a6
-
-- pipeline: fix mistakenly trying to pipeline POSTs
-
- The function IsPipeliningPossible() would return TRUE if either
- pipelining OR HTTP/2 were possible on a connection, which would lead to
- it returning TRUE even for POSTs on HTTP/1 connections.
-
- It now returns a bitmask so that the caller can differentiate which kind
- the connection allows.
-
- Fixes #1481
- Closes #1483
- Reported-by: stootill at github
-
-Jay Satiro (12 May 2017)
-- [Ron Eldor brought this change]
-
- mbedtls: Support server renegotiation request
-
- Tested with servers: IIS 7.5; OpenSSL 1.0.2.
-
- Closes https://github.com/curl/curl/pull/1475
-
-Marcel Raad (11 May 2017)
-- cookie_interface: fix -Wcomma warning
-
- clang 5.0 complains:
- possible misuse of comma operator here [-Wcomma]
-
-- formdata: fix -Wcomma warning
-
- clang 5.0 complains:
- possible misuse of comma operator here [-Wcomma]
-
- Change the comma to a semicolon to fix that.
-
-Daniel Stenberg (10 May 2017)
-- multi: use a fixed array of timers instead of malloc
-
- ... since the total amount is low this is faster, easier and reduces
- memory overhead.
-
- Also, Curl_expire_done() can now mark an expire timeout as done so that
- it never times out.
-
- Closes #1472
-
-- multi: assign IDs to all timers and make each timer singleton
-
- A) reduces the timeout lists drastically
-
- B) prevents a lot of superfluous loops for timers that expires "in vain"
- when it has actually already been extended to fire later on
-
-- [Richard Hsu brought this change]
-
- tests: remove superfluous test 1399
-
- @MarcelRaad noted that `test1399` causes infinite loop on MinGW.
- Looking into this, seems like it is related to how Windows handles
- CRLF. See https://github.com/curl/curl/commit/9e093f by @mback2k.
- Removing `test1399` as it's identical to `test1326` then with such a
- fix.
-
- Test 1399 was broughy by commit 862b02f8947039e
-
- Closes #1478
-
-Dan Fandrich (9 May 2017)
-- tests: make test file names more unique
-
- Include the test number in the names of files written out by tests to
- reduce the chance of accidental duplication and to make it more clear
- which test is associated with which file.
-
-- tests: removed redundant --trace-ascii arguments
-
- This is already added by the test suite; it's not clear why all these
- tests had it, unless it's cargo-culting.
-
-Marcel Raad (9 May 2017)
-- tool: fix remaining -Wcast-qual warnings
-
- Avoid casting away low-level const.
-
-Daniel Stenberg (9 May 2017)
-- formboundary: convert assert into run-time check
-
- ... to really make sure the boundary fits in the target buffer.
-
- Fixes unused parameter 'buflen' warning.
-
- Reported-by: Michael Kaufmann
- Bug: https://github.com/curl/curl/pull/1468#issuecomment-300078754
-
-Dan Fandrich (9 May 2017)
-- tests: list the primary server first in the server section
-
-Daniel Stenberg (8 May 2017)
-- curl: generate the --help output
-
- ... using the docs/cmdline-opts/gen.pl script, so that we get all the
- command line option documentation from the same source.
-
- The generation of the list has to be done manually and pasted into the
- source code.
-
- Closes #1465
-
-- tests: updated for modified fake random
-
-- [Jay Satiro brought this change]
-
- rand: treat fake entropy the same regardless of endianness
-
- When the random seed is purposely made predictable for testing purposes
- by using the CURL_ENTROPY environment variable, process that data in an
- endian agnostic way so the the initial random seed is the same
- regardless of endianness.
-
- - Change Curl_rand to write to a char array instead of int array.
-
- - Add Curl_rand_hex to write random hex characters to a buffer.
-
- Fixes #1315
- Closes #1468
-
- Co-authored-by: Daniel Stenberg
- Reported-by: Michael Kaufmann
-
-Dan Fandrich (8 May 2017)
-- tests: give each stunnel.conf file a unique name
-
- Otherwise, subsequent uses of stunnel overwrite the configuration file
- of previous invocations so they can no longer be inspected.
-
-Marcel Raad (8 May 2017)
-- tool_msgs: remove wrong cast
-
- Commit 481e0de00a9003b9c5220b120e3fc302d9b0932d changed the variable
- type from int to size_t, so don't cast the result of strlen to int
- anymore.
-
-- tftpd: fix signed/unsigned mismatch warnings
-
- alarm's argument is unsigned.
-
-- libtest: fix MinGW-w64 warnings
-
- long is 32 bits while size_t is 64 bits on MinGW-w64, so
- typecheck-gcc.h complains when using size_t for a long option.
- Also, curl_socket_t is unsigned long long rather than int.
-
-Daniel Stenberg (8 May 2017)
-- curl.1: depend the build on the Makefile.inc too
-
- ... to also make it update when we remove files, like we did for
- --environment in commit a8e388dd1095.
-
-- RELEASE-NOTES: synced with e3f84efc32d6b01a
-
-- runtests: fix "use of undefined value" warning in -R handling
-
-Marcel Raad (8 May 2017)
-- test537: use correct variable type
-
- Avoids narrowing conversion warnings because rlim_t is usually
- unsigned long.
-
- Closes https://github.com/curl/curl/pull/1469
-
-- sendrecv: fix MinGW-w64 warning
-
- The first argument to select is an int, while curl_socket_t is
- unsigned long long when using WinSock. It's ignored anyway [1].
-
- [1] https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141.aspx
-
-- tool_parsecfg: fix -Wcast-qual warning
-
- Don't convert string literal to char * before assigning it to
- const char *.
-
-- asyn-thread: fix unused macro warnings
-
- Don't do anything in this file if CURLRES_THREADED is not defined.
-
-- tftp: silence bad-function-cast warning
-
- The cases this warns about are handled elsewhere, so just use an
- intermediate variable to silence the warning.
-
-Daniel Stenberg (7 May 2017)
-- [canavan at github brought this change]
-
- buildconf: fix hang on IRIX
-
- Apparently, /usr/bin/m4 ignores the --version parameter and waits for
- input from stdin.
-
- Fixes #1471
-
-- opts: fix bad example formatting \n => \\n
-
- ...to render properly nroff.
-
-- opts: examples added to 8 more libcurl option man pages
-
-- curl: remove tool_writeenv.[ch]
-
- ... and USE_ENVIRONMENT and --environment. It was once added for RISC OS
- support and its platform specific behavior has been annoying ever
- since. Added in commit c3c8bbd3b2688da8e, mostly unchanged since
- then. Most probably not actually used for years.
-
- Closes #1463
-
-Dan Fandrich (6 May 2017)
-- runtests.pl: simplify the datacheck read section
-
- Also, document that numbered datacheck sections are possible.
-
-Marcel Raad (5 May 2017)
-- tests: fix -Wcast-qual warnings
-
- Avoid casting string literals to non-const char *.
-
-Daniel Stenberg (5 May 2017)
-- docs/opts: 24 more man pages now have examples
-
-- docs/opts: 23 more man pages now have examples
-
-- tests/server: run checksrc by default in debug-builds
-
-- curl_slist_append.3: clarify a NULL input creates a new list
-
-Marcel Raad (5 May 2017)
-- unit1305: fix compiler warning
-
- calloc and ai_addrlen expect different (usually unsigned) types.
-
-Daniel Stenberg (5 May 2017)
-- runtests: use -R for random order
-
- Suggested-by: Dan Fandrich
-
-- runtests: add -o to run test cases in scrambled order
-
- ... instead of numerical order.
-
- Closes #1466
-
-Dan Fandrich (4 May 2017)
-- sockfilt.c: shortened too long line
-
-Marcel Raad (4 May 2017)
-- tests/server: make string literals const
-
- assign string literals to const char * instead of char * in order to
- avoid a lot of these warnings:
- cast from 'const char *' to 'char *' drops const qualifier
- [-Wcast-qual]
-
-Dan Fandrich (4 May 2017)
-- schannel: return a more specific error code for SEC_E_UNTRUSTED_ROOT
-
-- test557: set a known good numeric locale
-
- Windows does not allow setting the locale with environment variables (as
- the test attempted to do), so the test failed when run with a user
- locale that has a comma as radixchar. Changed the test to call
- setlocale() explicitly to ensure that a known working locale is set even
- on Windows.
-
-Daniel Stenberg (4 May 2017)
-- curl: fix warning "comma at end of enumerator list"
-
-- test559: verify use of minimum CURLOPT_BUFFERSIZE
-
-Marcel Raad (4 May 2017)
-- curl_setup_once: use SEND_QUAL_ARG2 for swrite
-
- SEND_QUAL_ARG2 had to be set, but was never used. Use it in swrite to
- avoid warnings about casting away low-level const.
-
- Closes https://github.com/curl/curl/pull/1464
-
-Daniel Stenberg (4 May 2017)
-- CURLINFO_REDIRECT_URL.3: add example
-
-- CURLINFO_EFFECTIVE_URL.3: add example
-
-Marcel Raad (3 May 2017)
-- lib: fix compiler warnings
-
- Fix the following warnings when building the tests by using the correct
- types:
- cast from 'const char *' to 'void *' drops const qualifier
- [-Wcast-qual]
- implicit conversion changes signedness [-Wsign-conversion]
-
-- typecheck-gcc: add support for CURLINFO_SOCKET
-
- Closes https://github.com/curl/curl/pull/1452
-
-- typecheck-gcc: add missing string options
-
- Closes https://github.com/curl/curl/pull/1452
-
-Daniel Stenberg (3 May 2017)
-- abstract-unix-socket.d: shorten the help text to fit within 79 cols
-
-- RELEASE-NOTES: synced with 862b02f89
-
-- [Richard Hsu brought this change]
-
- Telnet: Write full buffer instead of byte-by-byte
-
- Previous TODO wanting to write in chunks. We should support writing more
- at once since some TELNET servers may respond immediately upon first
- byte written such as WHOIS servers.
-
- Closes #1389
-
-- curl: non-boolean command line args reject --no- prefixes
-
- ... and instead properly respond with an error message to the user
- instead of silently ignoring.
-
- Fixes #1453
- Closes #1458
-
-Marcel Raad (2 May 2017)
-- testpart: remove _MPRINTF_REPLACE
-
- Support for _MPRINTF_REPLACE in mprintf.h was removed in
- 55452ebdff47f98bf3cc383f1dfc3623fcaefefd, replaced with curl_printf.h.
-
-Dan Fandrich (2 May 2017)
-- gtls: fixed a lingering BUFSIZE reference
-
-Daniel Stenberg (2 May 2017)
-- ssh: fix compiler warning from e40e9d7f0de
-
-- url: let CURLOPT_BUFFERSIZE realloc to smaller sizes too
-
- Closes #1449
-
-- BUFSIZE: rename to READBUFFER_*, make separate MASTERBUF_SIZE
-
-- openssl: use local stack for temp storage
-
-- sendf: remove use of BUFSIZE from debug data conversions
-
- The buffer can have other sizes.
-
-- buffer: use data->set.buffer_size instead of BUFSIZE
-
- ... to properly use the dynamically set buffer size!
-
-- krb5: use private buffer for temp string, not receive buffer
-
-- upload: UPLOAD_BUFSIZE is now for the upload buffer
-
-- unit1606: do not print/access buffer
-
- It was a wrong assumption that it could do that!
-
-- http-proxy: use a dedicated CONNECT response buffer
-
- To make it suitably independent of the receive buffer and its flexible
- size.
-
-- transfer: fix minor buffer_size mistake
-
-- failf: use private buffer, don't clobber receive buffer
-
-- pingpong: use the set buffer size
-
-- http2: use the correct set buffer size
-
-- http: don't clobber the receive buffer for timecond
-
-- buffer_size: make sure it always has the correct size
-
- Removes the need for CURL_BUFSIZE
-
-- file: use private buffer for C-L output
-
- ... instead of clobbering the download buffer.
-
-- CURLOPT_BUFFERSIZE: 1024 bytes is now the minimum size
-
- The buffer is needed to receive FTP, HTTP CONNECT responses etc so
- already at this size things risk breaking and smaller is certainly not
- wise.
-
-- ftp: use private buffer for temp storage, not receive buffer
-
-- http: use private user:password output buffer
-
- Don't clobber the receive buffer.
-
-Marcel Raad (1 May 2017)
-- anyauthput: remove unused code
-
- The definition of TRUE was introduced in
- 4a728747e6f8845e500910e397dfc99aaf4a7984 and is not used anymore since
- e664cd5826d43930fcc5b5dbaedbec94af33184b.
- The usage of intptr_t was removed in
- 32e38b8f42477cf5ce3c3fef2fcc9db82f7fb7be.
-
-Jay Satiro (1 May 2017)
-- tool: Fix missing prototype warnings for CURL_DOES_CONVERSIONS
-
- - Include tool_convert.h where needed.
-
- Bug: https://github.com/curl/curl/issues/1460
- Reported-by: Gisle Vanem
-
-- curl_setup: Ensure no more than one IDN lib is enabled
-
- Prior to this change it was possible for libcurl to be built with both
- Windows' native IDN lib (normaliz) and libidn2 enabled. It appears that
- doesn't offer any benefit --and could cause a bug-- since libcurl's IDN
- handling is written to use either one but not both.
-
- Bug: https://github.com/curl/curl/issues/1441#issuecomment-297689856
- Reported-by: Gisle Vanem
-
-Marcel Raad (1 May 2017)
-- getpart: use correct variable type
-
- This fixes the following clang warning:
- getpart.c:201:17: warning: cast from function call of type 'CURLcode'
- to non-matching type 'int' [-Wbad-function-cast]
-
-- tests: declare TU-local variables static
-
- This fixes missing-variable-declarations warnings when building with
- clang.
-
-- tool_cb_prg: fix double-promotion warning
-
- clang complains:
- tool_cb_prg.c:86:22: error: implicit conversion increases
- floating-point precision: 'float' to 'double'
- [-Werror,-Wdouble-promotion]
-
- Fix this by using a double instead of a float constant.
-
-Dan Fandrich (1 May 2017)
-- examples: fixed too long line and too long string warnings
-
-Marcel Raad (30 Apr 2017)
-- examples: declare TU-local variables static
-
- This fixes missing-variable-declarations warnings when building with
- clang.
-
-- http2: declare TU-local variables static
-
- This fixes the following clang warnings:
-
- http2.c:184:27: error: no previous extern declaration for non-static
- variable 'Curl_handler_http2' [-Werror,-Wmissing-variable-declarations]
- http2.c:204:27: error: no previous extern declaration for non-static
- variable 'Curl_handler_http2_ssl'
- [-Werror,-Wmissing-variable-declarations]
-
-Dan Fandrich (30 Apr 2017)
-- unit1604: fixed indentation
-
-- unit1604: fixed compilation under Windows, broken in the previous commit
-
-- tests: fixed OOM handling of unit tests to abort test
-
- It's dangerous to continue to run the test when a memory alloc fails.
-
-Marcel Raad (29 Apr 2017)
-- curl_rtmp: fix missing-variable-declarations warnings
-
- clang complains:
-
- curl_rtmp.c:61:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmp' [-Werror,-Wmissing-variable-declarations]
- curl_rtmp.c:81:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpt' [-Werror,-Wmissing-variable-declarations]
- curl_rtmp.c:101:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpe' [-Werror,-Wmissing-variable-declarations]
- curl_rtmp.c:121:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpte' [-Werror,-Wmissing-variable-declarations]
- curl_rtmp.c:141:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmps' [-Werror,-Wmissing-variable-declarations]
- curl_rtmp.c:161:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpts' [-Werror,-Wmissing-variable-declarations]
-
- Fix this by including the header file.
-
-Dan Fandrich (29 Apr 2017)
-- url: fixed a memory leak on OOM while setting CURLOPT_BUFFERSIZE
-
-- tests: added --remote-time tests for remaining protocols that support it
-
-- runtests.pl: support multiline commands
-
-- tool_operate: use utimes instead of obsolescent utime when available
-
-- test1443: test --remote-time
-
-- http-proxy: removed unused argument in CURL_DISABLE_PROXY case
-
- Missed in commit 55c3c02e
-
-Daniel Stenberg (27 Apr 2017)
-- cookie_interface.c: changed the other domain to example.com too
-
-- cookie_interface.c: fix cookie domain so the example works
-
-Dan Fandrich (26 Apr 2017)
-- Makefile: fix make dist
-
- Commit 80a87e8a broke 'make dist' as it can't handle installing from
- absolute target names. Rearranged the dependencies so the absolute name
- is used for building but the relative name is use for distributing.
-
-Marcel Raad (26 Apr 2017)
-- lib: remove unused code
-
- This fixes the following clang warnings:
- macro is not used [-Wunused-macros]
- will never be executed [-Wunreachable-code]
-
- Closes https://github.com/curl/curl/pull/1448
-
-Daniel Stenberg (26 Apr 2017)
-- http-proxy: remove unused argument from Curl_proxyCONNECT()
-
-- [Martin Kepplinger brought this change]
-
- url: declare get_protocol_family() static
-
- get_protocol_family() is not defined static even though there is a
- static local forward declaration. Let's simply make the definition match
- it's declaration.
-
- Bug: https://curl.haxx.se/mail/lib-2017-04/0127.html
-
-- examples: ftpuploadfrommem.c
-
- Uploads data to an FTP site, directly from memory.
-
- Closes #1451
-
-Kamil Dudka (25 Apr 2017)
-- nss: load libnssckbi.so if no other trust is specified
-
- The module contains a more comprehensive set of trust information than
- supported by nss-pem, because libnssckbi.so also includes information
- about distrusted certificates.
-
- Reviewed-by: Kai Engert
- Closes #1414
-
-- nss: factorize out nss_{un,}load_module to separate fncs
-
- No change of behavior is intended by this commit.
-
-- nss: do not leak PKCS #11 slot while loading a key
-
- It could prevent nss-pem from being unloaded later on.
-
- Bug: https://bugzilla.redhat.com/1444860
-
-Marcel Raad (25 Apr 2017)
-- typecheck-gcc: fix _curl_is_slist_info
-
- Info values starting with CURLINFO_SOCKET expect a curl_socket_t, not a
- curl_slist argument.
-
- This fixes the following GCC warning when building the examples with
- --enable-optimize:
-
- ../../include/curl/typecheck-gcc.h:126:42: warning: call to
- ‘_curl_easy_getinfo_err_curl_slist’ declared with attribute warning:
- curl_easy_getinfo expects a pointer to 'struct curl_slist *' for this
- info [enabled by default]
- sendrecv.c:90:11: note: in expansion of macro ‘curl_easy_getinfo’
- res = curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sockfd);
-
- Closes https://github.com/curl/curl/pull/1447
-
-Daniel Stenberg (25 Apr 2017)
-- curl: set a 100K buffer size by default
-
- Test command 'time curl http://localhost/80GB -so /dev/null' on a Debian
- Linux.
-
- Before (middle performing run out 9):
-
- real 0m28.078s
- user 0m11.240s
- sys 0m12.876s
-
- After (middle performing run out 9)
-
- real 0m26.356s (93.9%)
- user 0m5.324s (47.4%)
- sys 0m8.368s (65.0%)
-
- Also, doing SFTP over a 200 millsecond latency link is now about 6 times
- faster.
-
- Closes #1446
-
-- transfer: remove 'uploadbuf' pointer and cleanup readwrite_upload()
-
- The data->req.uploadbuf struct member served no good purpose, instead we
- use ->state.uploadbuffer directly. It makes it clearer in the code which
- buffer that's being used.
-
- Removed the 'SingleRequest *' argument from the readwrite_upload() proto
- as it can be derived from the Curl_easy struct. Also made the code in
- the readwrite_upload() function use the 'k->' shortcut to all references
- to struct fields in 'data->req', which previously was made with a mix of
- both.
-
-Jay Satiro (25 Apr 2017)
-- configure: stop prepending to LDFLAGS, CPPFLAGS
-
- - Change prepends to appends because user's LDFLAGS and CPPFLAGS should
- always come first so they're searched before ours.
-
- Bug: https://github.com/curl/curl/issues/1420
- Reported-by: Helmut K. C. Tessarek
-
-Marcel Raad (25 Apr 2017)
-- if2ip: fix -Wcast-align warning
-
- Follow-up to 119037325de02579f5c58256ca2ed2a0aa592c86, which fixed the
- warning in the HAVE_GETIFADDRS block, but not in the
- HAVE_IOCTL_SIOCGIFADDR block.
-
-Dan Fandrich (24 Apr 2017)
-- Makefile: avoid use of GNU-specific form of $<
-
- $< is only allowed in implicit rules in some non-GNU makes (e.g. BSD,
- AIX) so avoid use elsewhere by referencing the dependent curl.1 file
- directly instead. This is somewhat tricky because the file is supplied
- in the packaged tar ball (but not in git) but must still be able to be
- rebuilt when its dependencies change. The right thing must happen in
- both tar ball and git source trees, as well as in both in-tree and
- out-of-tree builds.
-
-Kamil Dudka (24 Apr 2017)
-- nss: adapt to the new Curl_llist API
-
- This commit fixes compilation failure caused by
- cbae73e1dd95946597ea74ccb580c30f78e3fa73.
-
-Marcel Raad (24 Apr 2017)
-- curl-compilers.m4: accept -Og and -Ofast GCC flags
-
- -Og, introduced in GCC 4.8, optimizes for debugging experience.
- -Ofast, introduced in GCC 4.7, builds on -O3 and enables further
- optimizations breaking strict standards compliance.
- When specified in CFLAGS, these were always overridden by -O0 or -O2.
- Fix this by adding them to flags_opt_all.
-
- Ref: https://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Optimize-Options.html
- Ref: https://github.com/curl/curl/pull/1404#issuecomment-296401570
- Closes https://github.com/curl/curl/pull/1440
-
-Daniel Stenberg (24 Apr 2017)
-- RELEASE-NOTES: synced with c68fed875
-
-- configure: fix the -ldl check for openssl, add -lpthread check
-
- The check for if -ldl is needed to build with (a statically built)
- openssl was broken. This repairs the check, and adds a check for
- -lpthread as well since OpenSSL 1.1.0+ does in fact require -lpthread so
- only adding -ldl for a static openssl build is no longer enough.
-
- Reported-by: Jay Satiro
- Ref: #1426
- Closes #1427
-
-- llist: fix a comment after cbae73e1dd9
-
- Pointed-it-by: Kevin Ji
- URL: https://github.com/curl/curl/commit/cbae73e1dd95946597ea74ccb580c30f78e3fa73#commitcomment-21872622
-
-Jay Satiro (22 Apr 2017)
-- schannel: Don't treat encrypted partial record as pending data
-
- - Track when the cached encrypted data contains only a partial record
- that can't be decrypted without more data (SEC_E_INCOMPLETE_MESSAGE).
-
- - Change Curl_schannel_data_pending to return false in such a case.
-
- Other SSL libraries have pending data functions that behave similarly.
-
- Ref: https://github.com/curl/curl/pull/1387
-
- Closes https://github.com/curl/curl/pull/1392
-
-Daniel Stenberg (22 Apr 2017)
-- [Alan Jenkins brought this change]
-
- multi: clarify condition in curl_multi_wait
-
- `if(nfds || extra_nfds) {` is followed by `malloc(nfds * ...)`.
-
- If `extra_fs` could be non-zero when `nfds` was zero, then we have
- `malloc(0)` which is allowed to return `NULL`. But, malloc returning
- NULL can be confusing. In this code, the next line would treat the NULL
- as an allocation failure.
-
- It turns out, if `nfds` is zero then `extra_nfds` must also be zero.
- The final value of `nfds` includes `extra_nfds`. So the test for
- `extra_nfds` is redundant. It can only confuse the reader.
-
- Closes #1439
-
-Marcel Raad (22 Apr 2017)
-- lib: fix maybe-uninitialized warnings
-
- With -Og, GCC complains:
-
- easy.c:628:7: error: ‘mcode’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
-
- ../lib/strcase.h:35:29: error: ‘tok_buf’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
- vauth/digest.c:208:9: note: ‘tok_buf’ was declared here
-
- ../lib/strcase.h:35:29: error: ‘tok_buf’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
- vauth/digest.c:566:15: note: ‘tok_buf’ was declared here
-
- Fix this by initializing the variables.
-
-Dan Fandrich (22 Apr 2017)
-- gnutls: removed some code when --disable-verbose is configured
-
- This reduces the binary size and fixes a compile warning.
-
-Daniel Stenberg (22 Apr 2017)
-- llist: no longer uses malloc
-
- The 'list element' struct now has to be within the data that is being
- added to the list. Removes 16.6% (tiny) mallocs from a simple HTTP
- transfer. (96 => 80)
-
- Also removed return codes since the llist functions can't fail now.
-
- Test 1300 updated accordingly.
-
- Closes #1435
-
-Marcel Raad (21 Apr 2017)
-- typecheck-gcc: handle function pointers properly
-
- All the callbacks passed to curl_easy_setopt are defined as function
- pointers. The possibility to pass both functions and function pointers
- was handled for the callbacks that typecheck-gcc.h defined as
- compatible, but not for the public callback types themselves.
-
- This makes all compatible callback types defined in typecheck-gcc.h
- function pointers too and checks all functions uniformly with
- _curl_callback_compatible, which handles both functions and function
- pointers.
-
- A symptom of the problem was a warning in tool_operate.c with
- --disable-libcurl-option and without --enable-debug as that file
- passes the callback functions to curl_easy_setopt directly.
-
- Fixes https://github.com/curl/curl/issues/1403
- Closes https://github.com/curl/curl/pull/1404
-
-Dan Fandrich (21 Apr 2017)
-- mbedtls: enable NTLM (& SMB) even if MD4 support is unavailable
-
- In that case, use libcurl's internal MD4 routine. This fixes tests 1013
- and 1014 which were failing due to configure assuming NTLM and SMB were
- always available whenever mbed TLS was in use (which is now true).
-
-Daniel Stenberg (21 Apr 2017)
-- tests: remove the html and PDF versions from the tarball
-
-- openssl: fix memory leak in servercert
-
- ... when failing to get the server certificate.
-
-- Revert "src/Makefile.am: avoid explicit $<"
-
- This reverts commit 5b4cbcf11d5100ff793a8e9edbaa6fe1fc7495f5.
-
- Since it broke out-of-tree builds from tarballs. See discussion in #1432
-
-- bump: start working on next release
-
-- src/Makefile.am: avoid explicit $<
-
- ... since apparently "BSD make" doesn't support it.
-
- Reported-by: Thomas Klausner
- Fixes #1432
-
-Version 7.54.0 (19 Apr 2017)
-
-Daniel Stenberg (19 Apr 2017)
-- THANKS: add contributors from 7.54.0 release notes
-
-- RELEASE-NOTES: curl 7.54.0
-
-Marcel Raad (18 Apr 2017)
-- nss: fix MinGW compiler warnings
-
- This fixes 3 warnings issued by MinGW:
- 1. PR_ImportTCPSocket actually has a paramter of type PROsfd instead of
- PRInt32, which is 64 bits on Windows. Fixed this by including the
- corresponding header file instead of redeclaring the function, which is
- supported even though it is in the private include folder. [1]
- 2. In 64-bit mode, size_t is 64 bits while CK_ULONG is 32 bits, so an explicit
- narrowing cast is needed.
- 3. Curl_timeleft returns time_t instead of long since commit
- 21aa32d30dbf319f2d336e0cb68d3a3235869fbb.
-
- [1] https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSPR/Reference/PR_ImportTCPSocket
-
- Closes https://github.com/curl/curl/pull/1393
-
-Daniel Stenberg (18 Apr 2017)
-- [Jay Satiro brought this change]
-
- TLS: Fix switching off SSL session id when client cert is used
-
- Move the sessionid flag to ssl_primary_config so that ssl and proxy_ssl
- will each have their own sessionid flag.
-
- Regression since HTTPS-Proxy support was added in cb4e2be. Prior to that
- this issue had been fixed in 247d890, CVE-2016-5419.
-
- Bug: https://github.com/curl/curl/issues/1341
- Reported-by: lijian996@users.noreply.github.com
-
- The new incarnation of this bug is called CVE-2017-7468 and is documented
- here: https://curl.haxx.se/docs/adv_20170419.html
-
-- [David Benjamin brought this change]
-
- openssl: don't try to print nonexistant peer private keys
-
- X.509 certificates carry public keys, not private keys. Fields
- corresponding to the private half of the key will always be NULL.
-
- Closes #1425
-
-- [David Benjamin brought this change]
-
- openssl: fix thread-safety bugs in error-handling
-
- ERR_error_string with NULL parameter is not thread-safe. The library
- writes the string into some static buffer. Two threads doing this at
- once may clobber each other and run into problems. Switch to
- ERR_error_string_n which avoids this problem and is explicitly
- bounds-checked.
-
- Also clean up some remnants of OpenSSL 0.9.5 around here. A number of
- comments (fixed buffer size, explaining that ERR_error_string_n was
- added in a particular version) date to when ossl_strerror tried to
- support pre-ERR_error_string_n OpenSSLs.
-
- Closes #1424
-
-- [David Benjamin brought this change]
-
- openssl: make SSL_ERROR_to_str more future-proof
-
- Rather than making assumptions about the values, use a switch-case.
-
- Closes #1424
-
-- [Daniel Gustafsson brought this change]
-
- code: fix typos and style in comments
-
- A few random typos, and minor whitespace cleanups, found in comments
- while reading code.
-
- Closes #1423
-
-Marcel Raad (17 Apr 2017)
-- extern-scan.pl: strip trailing CR
-
- This makes test 1135 pass with CRLF checkouts.
-
- Ref: https://github.com/curl/curl/pull/1344#issuecomment-289243166
- Closes https://github.com/curl/curl/pull/1422
-
-- configure.ac: ignore CR after version numbers
-
- Ignore everything after the version numbers in LIBCURL_VERSION and
- LIBCURL_VERSION_NUM to ged rid of the extra CR character.
- This makes tests 1022 and 1023 pass on Linux with a CRLF checkout.
-
- Ref: https://github.com/curl/curl/pull/1344#issuecomment-289243166
- Closes https://github.com/curl/curl/pull/1422
-
-- .gitattributes: force shell scripts to LF
-
- Bash on Linux errors out on CR characters.
- This makes tests 1221 and 1222 pass on Linux with a CRLF checkout.
-
- Ref: https://github.com/curl/curl/pull/1344#issuecomment-289243166
- Closes https://github.com/curl/curl/pull/1422
-
-- unit1303: fix compiler warning
-
- MinGW-w64 complains:
- warning: conversion to 'long int' from 'time_t {aka long long int}' may
- alter its value [-Wconversion]
- Fix this by using the correct type.
-
-Daniel Stenberg (16 Apr 2017)
-- RELEASE-NOTES: synced with 1451271e0
-
-- [Larry Stefani brought this change]
-
- http2: fix handle leak in error path
-
- Add missing newhandle free call in push_promise().
-
- Closes #1416
-
-- [Larry Stefani brought this change]
-
- mbedtls: fix memory leak in error path
-
- Add missing our_ssl_sessionid free call in mbed_connect_step3().
-
- Closes #1417
-
-Marcel Raad (15 Apr 2017)
-- curl-compilers.m4: turn implicit function declarations into errors
-
- This adds -Werror-implicit-function-declaration for GCC 2.95+ so that
- these errors are visible at the point where they occur instead of only
- at link time.
- Implicit function declarations are illegal in C99 and C++ anyway, and
- the same warning has been turned into an error for ICC in commit
- 3072c5b8a127057aa922b7c51051bbb4a630b091.
-
- Ref: https://gcc.gnu.org/onlinedocs/gcc-2.95.2/gcc_2.html#SEC8
- Ref: https://curl.haxx.se/mail/lib-2017-04/0001.html
- Closes https://github.com/curl/curl/pull/1419
-
-- test1541: also test for CURL_PULL_WS2TCPIP_H
-
- Ref: https://github.com/curl/curl/issues/1408
- Closes https://github.com/curl/curl/pull/1412
-
-- tests/server/util: prefer over
-
- Follow-up to aa573c3c55cda72ec5ef677d87f6f46a53385f0c
-
- Ref: https://github.com/curl/curl/pull/1406
-
-Daniel Stenberg (11 Apr 2017)
-- Curl_expire_latest: ignore already expired timers
-
- If the existing timer is still in there but has expired, the new timer
- should be added.
-
- Reported-by: Rainer Canavan
- Bug: https://curl.haxx.se/mail/lib-2017-04/0030.html
- Closes #1407
-
-- system.h: fix mingw section
-
- Reported-by: Marcel Raad
- Fixes #1408
- Closes #1409
-
-Marcel Raad (11 Apr 2017)
-- polarssl: unbreak build with versions < 1.3.8
-
- ssl_session_init was only introduced in version 1.3.8, the penultimate
- version. The function only contains a memset, so replace it with that.
-
- Suggested-by: Jay Satiro
- Fixes https://github.com/curl/curl/issues/1401
-
-- poll: prefer over
-
- The POSIX standard location is . Using results in
- warning spam when using the musl standard library.
-
- Closes https://github.com/curl/curl/pull/1406
-
-Daniel Stenberg (10 Apr 2017)
-- [Alexis La Goutte brought this change]
-
- openssl: fix this statement may fall through [-Wimplicit-fallthrough=]
-
- Closes #1402
-
-Kamil Dudka (10 Apr 2017)
-- nss: load CA certificates even with --insecure
-
- ... because they may include an intermediate certificate for a client
- certificate and the intermediate certificate needs to be presented to
- the server, no matter if we verify the peer or not.
-
- Reported-by: thraidh
- Closes #851
-
-Daniel Stenberg (10 Apr 2017)
-- RELEASE-NOTES: synced with f9d1e9a27f7e1
-
-Dan Fandrich (10 Apr 2017)
-- libcurl-thread.3: fixed a bad macro that caused test 1140 to fail
-
-Daniel Stenberg (9 Apr 2017)
-- libcurl-thread.3: also mention threaded-resolver
-
- Reported-by: Alex Bligh
- Bug: https://curl.haxx.se/mail/lib-2017-04/0044.html
-
-- .github/stale.yml: enable the stale bot
-
- Issues and PRs with no activity for 180 days will get marked as stale,
- and if no further activity happens within 14 more days, the issue gets
- closed.
-
- This follows our established policy of not letting stalled bugs "get in
- the way": https://curl.haxx.se/docs/bugs.html#Closing_off_stalled_bugs
-
- Closes #1398
-
-Jay Satiro (8 Apr 2017)
-- CURLINFO_SCHEME.3: fix variable type
-
- - Change documented param type to char ** from incorrect long *.
-
-Marcel Raad (8 Apr 2017)
-- INSTALL.md: fix secure transport configure arguments
-
- --without-ssl is needed instead of --with-winssl.
-
-- vtls: fix unreferenced variable warnings
-
- ... by moving the variables into the correct #ifdef block.
-
-Daniel Stenberg (7 Apr 2017)
-- BUGS: "Bugs in old versions"
-
-- system.h: add section for tcc
-
- Closes #1397
-
-Marcel Raad (7 Apr 2017)
-- schannel: fix compiler warnings
-
- When UNICODE is not defined, the Curl_convert_UTF8_to_tchar macro maps
- directly to its argument. As it is declared as a pointer to const and
- InitializeSecurityContext expects a pointer to non-const, both MSVC and MinGW
- issue a warning about implicitly casting away the const. Fix this by declaring
- the variables as pointers to non-const.
-
- Closes https://github.com/curl/curl/pull/1394
-
-- [Isaac Boukris brought this change]
-
- sspi: print out InitializeSecurityContext() error message
-
- Reported-by: Carsten (talksinmath)
-
- Fixes #1384
- Closes #1395
-
-- gtls: fix compiler warning
-
- Curl_timeleft returns time_t instead of long since commit
- 21aa32d30dbf319f2d336e0cb68d3a3235869fbb.
-
-Daniel Stenberg (6 Apr 2017)
-- test1606: verify speedcheck
-
-- low_speed_limit: improved function for longer time periods
-
- Previously, periods of fast speed between periods of slow speed would
- not count and could still erroneously trigger a timeout.
-
- Reported-by: Paul Harris
- Fixes #1345
- Closes #1390
-
-- system.h: set sizeof long to 4 on "default 32 bit" systems
-
- Triggered a test failure on test 1541 for the build known as
- "Linux 4.4 i686 tcc 0.9.26 glibc 2.20"
-
-Marcel Raad (6 Apr 2017)
-- nss: fix build after e60fe20fdf94e829ba5fce33f7a9d6c281149f7d
-
- Curl_llist_alloc is now Curl_llist_init.
-
- Closes https://github.com/curl/curl/pull/1391
-
-Daniel Stenberg (6 Apr 2017)
-- INSTALL.cmake: more problems
-
- and mention specific issues where they are discussed
-
-- test1541: ignore the curl_off_t variable type name comparison
-
- ... the sizes and the formatting strings are what's really important and
- avoids problems with int64_t vs "long long".
-
- Bug: https://curl.haxx.se/mail/lib-2017-04/0019.html
-
-- Revert "configure: prefer 'long long' to int64_t for curl_off_t"
-
- This reverts commit 81284374bf3c670d2050f8562edeb69f060b07cc.
-
- Due to mingw32 brekage.
-
-Marcel Raad (5 Apr 2017)
-- tool_operate: fix MinGW compiler warning
-
- MinGW complains:
- tool_operate.c:197:15: error: comparison is always true due to limited range
- of data type [-Werror=type-limits]
-
- Fix this by only doing the comparison if 'long' is large enough to hold the
- constant it is compared with.
-
- Closes https://github.com/curl/curl/pull/1378
-
-- tool_operate: move filetime code to its own function
-
- Ref: https://github.com/curl/curl/pull/1378
-
-Daniel Stenberg (5 Apr 2017)
-- configure: prefer 'long long' to int64_t for curl_off_t
-
- Since it is a native type and it makes it less complicated to find a
- matching one in system.h
-
- Bug: https://curl.haxx.se/mail/lib-2017-04/0010.html
- Reported-by: Dan Fandrich
-
- Closes #1388
-
-- [Dániel Bakai brought this change]
-
- tests: added test for Curl_splaygetbest to unit1309
-
- This checks the new behavior of Curl_splaygetbest, so that the smallest
- node not larger than the key is removed, and FIFO behavior is kept even
- when there are multiple nodes with the same key.
-
- Closes #1358
-
-- [Dániel Bakai brought this change]
-
- multi: fix queueing of pending easy handles
-
- Multi handles repeatedly invert the queue of pending easy handles when
- used with CURLMOPT_MAX_TOTAL_CONNECTIONS. This is caused by a multistep
- process involving Curl_splaygetbest and violates the FIFO property of
- the multi handle.
- This patch fixes this issue by redefining the "best" node in the
- context of timeouts as the "smallest not larger than now", and
- implementing the necessary data structure modifications to do this
- effectively, namely:
- - splay nodes with the same key are now stored in a doubly-linked
- circular list instead of a non-circular one to enable O(1)
- insertion to the tail of the list
- - Curl_splayinsert inserts nodes with the same key to the tail of
- the same list
- - in case of multiple nodes with the same key, the one on the head of
- the list gets selected
-
-Marcel Raad (4 Apr 2017)
-- tool: fix Windows Unicode build
-
- ... by explicitly calling the ANSI versions of Windows API functions where
- required.
-
-Daniel Stenberg (4 Apr 2017)
-- [Martin Kepplinger brought this change]
-
- curl_sasl: declare mechtable static
-
- struct mechtable is only used locally here. It can be declared static.
-
-Jay Satiro (4 Apr 2017)
-- [Antti Hätälä brought this change]
-
- url: don't free postponed data on connection reuse
-
- - Don't free postponed data on a connection that will be reused since
- doing so can cause data loss when pipelining.
-
- Only Windows builds are affected by this.
-
- Closes https://github.com/curl/curl/issues/1380
-
-Daniel Stenberg (4 Apr 2017)
-- RELEASE-NOTES: synced with 4f2e348f9b42c69c480
-
-- hash: move key into hash struct to reduce mallocs
-
- This removes one tiny malloc for each hash struct allocated. In a simple
- case like "curl localhost", this save three mallocs.
-
- Closes #1376
-
-- llist: replace Curl_llist_alloc with Curl_llist_init
-
- No longer allocate the curl_llist head struct for lists separately.
-
- Removes 17 (15%) tiny allocations in a normal "curl localhost" invoke.
-
- closes #1381
-
-Jay Satiro (4 Apr 2017)
-- easy: silence compiler warning
-
- Safe to silence warning adding time delta of poll, which can trigger on
- Windows since sizeof time_t > sizeof long.
-
- warning C4244: '+=' : conversion from 'time_t' to 'long', possible loss
- of data
-
-Daniel Stenberg (4 Apr 2017)
-- [Richlv brought this change]
-
- docs: minor typo in write-out.d
-
- Closes #1382
-
-- include: curl/system.h is a run-time version of curlbuild.h
-
- system.h is aimed to replace curlbuild.h at a later point in time when
- we feel confident system.h works sufficiently well.
-
- curl/system.h is currently used in parallel with curl/curlbuild.h
-
- curl/system.h determines a data sizes, data types and include file
- status based on available preprocessor defines instead of getting
- generated at build-time. This, in order to avoid relying on a build-time
- generated file that makes it complicated to do 32 and 64 bit bields from
- the same installed set of headers.
-
- Test 1541 verifies that system.h comes to the same conclusion that
- curlbuild.h offers.
-
- Closes #1373
-
-- multi: make curl_multi_wait avoid malloc in the typical case
-
- When only a few additional file descriptors are used, avoid the malloc.
-
- Closes #1377
-
-Marcel Raad (3 Apr 2017)
-- tests/server/util: remove in6addr_any for recent MinGW
-
- In ancient MinGW versions, in6addr_any was declared as extern, but not
- defined. Because of that, 22a0c57746ae12506b1ba0f0fafffd26c1907d6a added
- definitions for in6addr_any when compiling with MinGW. The bug was fixed in
- w32api version 3.6 from 2006, so this workaround is not needed anymore for
- recent versions.
-
- This fixes the following MinGW-w64 warnings because the MinGW-w64 version of
- IN6ADDR_ANY_INIT has the two additional braces inside the macro:
- util.c:59:14: warning: braces around scalar initializer
- util.c:59:40: warning: excess elements in scalar initializer
-
- Ref: https://sourceforge.net/p/mingw/mingw-org-wsl/ci/e4803e0da25c57ae1ad0fa75ae2b7182ff7fa339/tree/w32api/ChangeLog
- Closes https://github.com/curl/curl/pull/1379
-
-Daniel Stenberg (3 Apr 2017)
-- docs: added examples for CURLINFO_FILETIME.3 and CURLOPT_FILETIME.3
-
-Jay Satiro (31 Mar 2017)
-- fail-early.d: fix typos
-
-- docs: Explain --fail-early does not imply --fail
-
- Closes https://github.com/curl/curl/pull/1375
-
-Daniel Stenberg (1 Apr 2017)
-- telnet: (win32) fix read callback return variable
-
- telnet.c(1427,21): warning: comparison of constant 268435456 with
- expression of type 'CURLcode' is always false
-
- telnet.c(1433,21): warning: comparison of constant 268435457 with
- expression of type 'CURLcode' is always false
-
- Reviewed-by: Jay Satiro
- Reported-by: Gisle Vanem
- Bug: https://github.com/curl/curl/issues/1225#issuecomment-290340890
-
- Closes #1374
-
-- CTestConfig.cmake: removed, unused
-
-- libcurl.def: removed, unused
-
-- docs/index.html: removed, was not shipped anyway
-
-- dist: add missing files to the tarball
-
-Peter Wu (30 Mar 2017)
-- cmake: fix build with cmake 2.8.12.2
-
- For some reason, CMake 2.8.12.2 did not expand the list argument in a
- single DEPENDS argument. Remove the quotes, so it gets expanded into
- multiple arguments for add_custom_command and add_custom_target.
-
- Fixes https://github.com/curl/curl/issues/1370
- Closes #1372
-
-Marcel Raad (30 Mar 2017)
-- ssh: fix narrowing conversion warning
-
- 'left' is used as time_t but declared as long.
- MinGW complains:
- error: conversion to 'long int' from 'time_t {aka long long int}' may alter
- its value [-Werror=conversion]
- Changed the declaration to time_t.
-
-- http2: silence unused parameter warnings
-
- In release mode, MinGW complains:
- error: unused parameter 'lib_error_code' [-Werror=unused-parameter]
-
-Daniel Stenberg (30 Mar 2017)
-- [Hanno Böck brought this change]
-
- curl: fix callback functions to match prototype
-
- The function tool_debug_cb doesn't match curl_debug_callback in curl.h
- (unsigned vs. signed char* for 3rd param).
-
- Bug: https://curl.haxx.se/mail/lib-2017-03/0120.html
-
-- [Alexis La Goutte brought this change]
-
- gcc7: fix ‘*’ in boolean context, suggest ‘&&’ instead [-Wint-in-bool-context]
-
- Closes #1371
-
-Marcel Raad (30 Mar 2017)
-- schannel: fix unused variable warning
-
- If CURL_DISABLE_VERBOSE_STRINGS is defined, hostname is not used in
- schannel_connect_step3.
-
-- connect: fix unreferenced parameter warning
-
- When CURL_DISABLE_VERBOSE_STRINGS is defined, the reason parameter in
- Curl_conncontrol is not used as the infof macro expands to nothing.
-
-- select: use correct SIZEOF_ constant
-
- At least under Windows, there is no SIZEOF_LONG, so it evaluates to 0 even
- though sizeof(int) == sizeof(long). This should probably have been
- CURL_SIZEOF_LONG, but the type of timeout_ms changed from long to time_t
- anyway.
- This triggered MSVC warning C4668 about implicitly replacing undefined
- macros with '0'.
-
- Closes https://github.com/curl/curl/pull/1362
-
-Daniel Stenberg (30 Mar 2017)
-- cmake: add cmake file in docs/libcurl/opts/ to dist
-
-- cmake: add more missing files to the dist
-
-- docs/Makefile.am: include CMakeLists.txt in the dist tarball
-
-Marcel Raad (29 Mar 2017)
-- NTLM: check for features with #ifdef instead of #if
-
- Feature defines are normally checked with #ifdef instead of #if in the rest of
- the codebase. Additionally, some compilers warn when a macro is implicitly
- evaluated to 0 because it is not defined, which was the case here.
-
- Ref: https://github.com/curl/curl/pull/1362#discussion_r108605101
- Closes https://github.com/curl/curl/pull/1367
-
-Daniel Stenberg (29 Mar 2017)
-- [Hanno Böck brought this change]
-
- curl: fix callback argument inconsistency
-
- As you can see the callback definition uses a char* for the first
- argument, while the function uses a void*.
-
- URL: https://curl.haxx.se/mail/lib-2017-03/0116.html
-
-- RELEASE-NOTES: synced with 556c51a2df
-
-- [madblobfish brought this change]
-
- KNOWN_BUGS: typo
-
- Closes #1364
-
-- [Maksim Stsepanenka brought this change]
-
- make: use the variable MAKE for recursive calls
-
- Closes #1366
-
-- conncache: make hashkey avoid malloc
-
- ... to make it much faster. Idea developed with primepie on IRC.
-
- Closes #1365
-
-Kamil Dudka (28 Mar 2017)
-- http: do not treat FTPS over CONNECT as HTTPS
-
- If we use FTPS over CONNECT, the TLS handshake for the FTPS control
- connection needs to be initiated in the SENDPROTOCONNECT state, not
- the WAITPROXYCONNECT state. Otherwise, if the TLS handshake completed
- without blocking, the information about the completed TLS handshake
- would be saved to a wrong flag. Consequently, the TLS handshake would
- be initiated in the SENDPROTOCONNECT state once again on the same
- connection, resulting in a failure of the TLS handshake. I was able to
- observe the failure with the NSS backend if curl ran through valgrind.
-
- Note that this commit partially reverts curl-7_21_6-52-ge34131d.
-
-Daniel Stenberg (28 Mar 2017)
-- pause: handle mixed types of data when paused
-
- When receiving chunked encoded data with trailers, and the write
- callback returns PAUSE, there might be both body and header to store to
- resend on unpause. Previously libcurl returned error for that case.
-
- Added test case 1540 to verify.
-
- Reported-by: Stephen Toub
- Fixes #1354
- Closes #1357
-
-Jay Satiro (28 Mar 2017)
-- [Isaac Boukris brought this change]
-
- http: Fix proxy connection reuse with basic-auth
-
- When using basic-auth, connections and proxy connections
- can be re-used with different Authorization headers since
- it does not authenticate the connection (like NTLM does).
-
- For instance, the below command should re-use the proxy
- connection, but it currently doesn't:
- curl -v -U alice:a -x http://localhost:8181 http://localhost/
- --next -U bob:b -x http://localhost:8181 http://localhost/
-
- This is a regression since refactoring of ConnectionExists()
- as part of: cb4e2be7c6d42ca0780f8e0a747cecf9ba45f151
-
- Fix the above by removing the username and password compare
- when re-using proxy connection at proxy_info_matches().
-
- However, this fix brings back another bug would make curl
- to re-print the old proxy-authorization header of previous
- proxy basic-auth connection because it wasn't cleared.
-
- For instance, in the below command the second request should
- fail if the proxy requires authentication, but would succeed
- after the above fix (and before aforementioned commit):
- curl -v -U alice:a -x http://localhost:8181 http://localhost/
- --next -x http://localhost:8181 http://localhost/
-
- Fix this by clearing conn->allocptr.proxyuserpwd after use
- unconditionally, same as we do for conn->allocptr.userpwd.
-
- Also fix test 540 to not expect digest auth header to be
- resent when connection is reused.
-
- Signed-off-by: Isaac Boukris
-
- Closes https://github.com/curl/curl/pull/1350
-
-- openssl: exclude DSA code when OPENSSL_NO_DSA is defined
-
- - Fix compile errors that occur in openssl.c when OpenSSL lib was
- built without DSA support.
-
- Bug: https://github.com/curl/curl/issues/1361
- Reported-by: neheb@users.noreply.github.com
-
-- examples/fopen: checksrc compliance
-
-Marcel Raad (28 Mar 2017)
-- schannel: fix variable shadowing warning
-
- No need to redeclare the variable.
-
-- multi: fix MinGW-w64 compiler warnings
-
- error: conversion to 'long int' from 'time_t {aka long long int}' may alter
- its value [-Werror=conversion]
-
-- .gitattributes: turn off CRLF for *.am
-
- If Makefile.am uses CRLF, buildconf in a Windows checkout fails with:
- ".ibtoolize: error: AC_CONFIG_MACRO_DIRS([m4]) conflicts with
- ACLOCAL_AMFLAGS=-I m4"
-
-Daniel Stenberg (26 Mar 2017)
-- [klemens brought this change]
-
- spelling fixes
-
- Closes #1356
-
-- curl: check for end of input in writeout backslash handling
-
- Reported-by: Brian Carpenter
-
- Added test 1442 to verify
-
-Marcel Raad (24 Mar 2017)
-- tests/README: make "Run" section foolproof
-
- curl must be built before building the tests.
-
- Closes https://github.com/curl/curl/pull/1352
-
-Daniel Stenberg (23 Mar 2017)
-- openssl: fix comparison between signed and unsigned integer expressions
-
-Marcel Raad (23 Mar 2017)
-- [Edward Kimmel brought this change]
-
- asiohiper: make sure socket is open in event_cb
-
- Send curl_socket_t to event_cb and make sure it hasn't been closed yet.
-
- Closes https://github.com/curl/curl/pull/1318
-
-Dan Fandrich (23 Mar 2017)
-- openssl: made the error table static const
-
-Jay Satiro (23 Mar 2017)
-- openssl: fall back on SSL_ERROR_* string when no error detail
-
- - If SSL_get_error is called but no extended error detail is available
- then show that SSL_ERROR_* as a string.
-
- Prior to this change there was some inconsistency in that case: the
- SSL_ERROR_* code may or may not have been shown, or may have been shown
- as unknown even if it was known.
-
- Ref: https://github.com/curl/curl/issues/1300
-
- Closes https://github.com/curl/curl/pull/1348
-
-Dan Fandrich (23 Mar 2017)
-- mkhelp: disable compression if the perl gzip module is unavailable
-
- This is nowadays included with the base perl distribution, but wasn't
- prior to about perl 5.14
-
-Daniel Stenberg (23 Mar 2017)
-- [Anders Roxell brought this change]
-
- tests/README: mention nroff for --manual tests
-
- Signed-off-by: Anders Roxell
-
- Closes #1342
-
-- CURLINFO_PRIMARY_IP.3: add example
-
-- travis: run tests-nonflaky instead of tests-full
-
-- make: introduce 'test-nonflaky' target
-
- Running this in the root build dir will invoke the test suite to only
- run tests not marked as 'flaky'.
-
-- test2033: flaky
-
-Jay Satiro (21 Mar 2017)
-- [Ales Mlakar brought this change]
-
- mbedtls: add support for CURLOPT_SSL_CTX_FUNCTION
-
- Ref: https://curl.haxx.se/mail/lib-2017-02/0097.html
-
- Closes https://github.com/curl/curl/pull/1272
-
-Peter Wu (21 Mar 2017)
-- cmake: add support for building HTML and PDF docs
-
- Note that for some reason there is this warning (that also exists with
- autotools, added since curl-7_15_1-94-ga718cb05f):
-
- docs/libcurl/curl_multi_socket_all.3:1: can't open `man3/curl_multi_socket.3': No such file or directory
-
- Additionally, adjust the roffit --mandir option to support creating
- links when doing out-of-tree builds.
-
- Ref: https://github.com/curl/curl/pull/1288
-
-- cmake: build manual pages (including curl.1)
-
- Also make Perl mandatory to allow building the docs.
-
- While CMakeLists.txt could probably read the list of manual pages from
- Makefile.am, actually putting those in CMakeLists.txt is cleaner so that
- is what is done here.
-
- Fixes #1230
- Ref: https://github.com/curl/curl/pull/1288
-
-- docs: split file lists into Makefile.inc
-
- For easier sharing with CMake. The contents were reformatted to use
- two-space indent and expanded tabs (matching lib/Makefile.common).
-
- Ref: https://github.com/curl/curl/pull/1288
-
-Daniel Stenberg (21 Mar 2017)
-- examples: comment typos in http2 examples
-
-- RELEASE-NOTES: typo
-
-- RELEASE-NOTES: synced with 6e0f26c8a8c28df
-
-- multi: fix streamclose() crash in debug mode
-
- The code would refer to the wrong data pointer. Only debug builds do
- this - for verbosity.
-
- Reported-by: zelinchen@users.noreply.github.com
- Fixes #1329
-
-- CONTRIBUTE: mention referring to github issues in commit msgs
-
-Dan Fandrich (20 Mar 2017)
-- runtests.pl: fixed display of the Gopher IPv6 port number
-
-- tests: fixed the documented test server port numbers
-
-- test714/5: added HTTP as a required feature
-
- These tests use an HTTP proxy so require that curl be built with HTTP
- support.
-
-- tests: strip more options from non-HTTP --libcurl tests
-
- The CURLOPT_USERAGENT and CURLOPT_MAXREDIRS options are only set if HTTP
- support is available, so ignore them in tests where HTTP is not
- guaranteed.
-
-Jay Satiro (18 Mar 2017)
-- [Palo Markovic brought this change]
-
- darwinssl: fix typo in variable name
-
- Broken a week ago in 6448f98.
-
- Closes https://github.com/curl/curl/pull/1337
-
-- tool_operate: Fix showing HTTPS-Proxy options on CURLE_SSL_CACERT
-
- - Show the HTTPS-proxy options on CURLE_SSL_CACERT if libcurl was built
- with HTTPS-proxy support.
-
- Prior to this change those options were shown only if an HTTPS-proxy was
- specified by --proxy, but that did not take into account environment
- variables such as http_proxy, https_proxy, etc. Follow-up to e1187c4.
-
- Bug: https://github.com/curl/curl/issues/1331
- Reported-by: Nehal J Wani
-
-- CURLINFO_LOCAL_PORT.3: fix typo
-
-Daniel Stenberg (16 Mar 2017)
-- CURLINFO_LOCAL_PORT.3: added example
-
-- SSLCERTS.md: mention HTTPS proxies and their separate options
-
-- BINDINGS: a Delphi binding
-
-- KNOWN_BUGS: remove libidn related issue
-
- ... as we no longer use libidn
-
-Dan Fandrich (14 Mar 2017)
-- build: removed redundant DEPENDENCIES from makefiles
-
-Daniel Stenberg (13 Mar 2017)
-- [Sylvestre Ledru brought this change]
-
- Improve code readbility
-
- ... by removing the else branch after a return, break or continue.
-
- Closes #1310
-
-Jay Satiro (13 Mar 2017)
-- [Anatol Belski brought this change]
-
- winbuild: add basic support for OpenSSL 1.1.x
-
- - Auto-detect OpenSSL 1.1 libs
-
- Closes https://github.com/curl/curl/pull/1322
-
-Daniel Stenberg (13 Mar 2017)
-- RELEASE-NOTES: synced with c25e0761d0fc49c4
-
-- make: regenerate docs/curl.1 by runinng make in docs
-
- ... previously, docs/ was only a dist subdir, now also a build subdir.
-
- Reported-by: Dan Fandrich
- Bug: https://curl.haxx.se/mail/lib-2017-03/0017.html
-
-Dan Fandrich (12 Mar 2017)
-- test1440/1: depend on well-defined file: behaviour
-
- Depend on the known behaviour of URLs for nonexistent files rather than
- the undefined behaviour of URLs for directories (which fails on Windows).
- The test isn't about file: URLs at all, so the URL used doesn't really
- matter.
-
-- tests: clear the SSL_CERT_FILE variable on --libcurl tests
-
- Otherwise, the contents will end up in the output and fail the
- verification.
-
-- test1287: added verbose logs keyword
-
-- tool_writeout: fixed a buffer read overrun on --write-out
-
- If a % ended the statement, the string's trailing NUL would be skipped
- and memory past the end of the buffer would be accessed and potentially
- displayed as part of the --write-out output. Added tests 1440 and 1441
- to check for this kind of condition.
-
- Reported-by: Brian Carpenter
-
-Jay Satiro (12 Mar 2017)
-- [Desmond O. Chang brought this change]
-
- url: add option CURLOPT_SUPPRESS_CONNECT_HEADERS
-
- - Add new option CURLOPT_SUPPRESS_CONNECT_HEADERS to allow suppressing
- proxy CONNECT response headers from the user callback functions
- CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION.
-
- - Add new tool option --suppress-connect-headers to expose
- CURLOPT_SUPPRESS_CONNECT_HEADERS and allow suppressing proxy CONNECT
- response headers from --dump-header and --include.
-
- Assisted-by: Jay Satiro
- Assisted-by: CarloCannas@users.noreply.github.com
- Closes https://github.com/curl/curl/pull/783
-
-- http_proxy: Ignore TE and CL in CONNECT 2xx responses
-
- A client MUST ignore any Content-Length or Transfer-Encoding header
- fields received in a successful response to CONNECT.
- "Successful" described as: 2xx (Successful). RFC 7231 4.3.6
-
- Prior to this change such a case would cause an error.
-
- In some ways this bug appears to be a regression since c50b878. Prior to
- that libcurl may have appeared to function correctly in such cases by
- acting on those headers instead of causing an error. But that behavior
- was also incorrect.
-
- Bug: https://github.com/curl/curl/issues/1317
- Reported-by: mkzero@users.noreply.github.com
-
-- [Thomas Glanzmann brought this change]
-
- mbedtls: fix typo in variable name
-
- Broken a few days ago in 6448f98.
-
- Bug: https://curl.haxx.se/mail/lib-2017-03/0015.html
-
-Michael Kaufmann (11 Mar 2017)
-- tests: fix the authretry tests
-
- Do not call curl_easy_reset() between the requests, because the
- auth state must be preserved for these tests.
-
- Follow-up to 0afbcfd
-
-- proxy: skip SSL initialization for closed connections
-
- This prevents a "Descriptor is not a socket" error for WinSSL.
-
- Reported-by: Antony74@users.noreply.github.com
- Reviewed-by: Jay Satiro
-
- Fixes https://github.com/curl/curl/issues/1239
-
-- curl_easy_reset: Also reset the authentication state
-
- Follow-up to 5278462
- See https://github.com/curl/curl/issues/1095
-
-- [Isaac Boukris brought this change]
-
- authneg: clear auth.multi flag at http_done
-
- This flag is meant for the current request based on authentication
- state, once the request is done we can clear the flag.
-
- Also change auth.multi to auth.multipass for better readability.
-
- Fixes https://github.com/curl/curl/issues/1095
- Closes https://github.com/curl/curl/pull/1326
-
- Signed-off-by: Isaac Boukris
- Reported-by: Michael Kaufmann
-
-Dan Fandrich (11 Mar 2017)
-- url: don't compile detect_proxy if HTTP support is disabled
-
-- cmdline-opts: fixed a few typos
-
-Daniel Stenberg (10 Mar 2017)
-- README.md: add coverity and travis badges
-
-- ISSUE_TEMPLATE: for bugs, ask questions on the mailing list
-
- and try to add the top comment within an HTML comment in the hope
- that it might get hidden if the text is kept
-
-- openssl: add two /* FALLTHROUGH */ to satisfy coverity
-
- CID 1402159 and 1402158
-
-- tests: disabled 1903 now
-
- Test 1903 is doing HTTP pipelining, and that is a timing and ordering
- sensitive operation and this fails far too often on the Travis CI
- leading to people more or less ignoring test failures there. Not good.
-
- The end of pipelning is probably coming sooner rather than later
- anyway...
-
-Dan Fandrich (9 Mar 2017)
-- tls-max.d: added to the makefile
-
-- build: fixed making man page in out-of-tree tarball builds
-
- The man page taken from the release package is found in a different
- location than if it's built from source. It must be referenced as $< in
- the rule to get its correct location in the VPATH.
-
-- mkhelp: simplified the gzip code
-
- This eliminates the need for an external gzip program, which wasn't
- working with Busybox's gzip, anyway. It now compresses using perl's
- IO::Compress::Gzip
-
-- polarssl: fixed compile errors introduced in 6448f98c
-
-Daniel Stenberg (8 Mar 2017)
-- bump: next release will be known as 7.54.0
-
- ...due to the newly added CURL_SSLVERSION_MAX_* functionality
-
-- openssl: unbreak the build after 6448f98c1857de
-
- Verified with OpenSSL 1.1.0e and OpenSSL master (1.1.1)
-
-Kamil Dudka (8 Mar 2017)
-- [Jozef Kralik brought this change]
-
- vtls: add options to specify range of enabled TLS versions
-
- This commit introduces the CURL_SSLVERSION_MAX_* constants as well as
- the --tls-max option of the curl tool.
-
- Closes https://github.com/curl/curl/pull/1166
-
-Daniel Stenberg (8 Mar 2017)
-- RELEASE-NOTES: synced with 6888a670aa01
-
-- MANPAGE: clarify the dash situation in meta data
-
-- insecure.d: clarify that this is for server connections
-
- Assisted-by: Ray Satiro
- Bug: https://curl.haxx.se/mail/lib-2017-03/0002.html
-
-Dan Fandrich (8 Mar 2017)
-- test1260: added http as a required feature
-
-Daniel Stenberg (7 Mar 2017)
-- [Steve Brokenshire brought this change]
-
- maketgz: Run updatemanpages.pl to update man pages
-
- maketgz now runs scripts/updatemanpages.pl to update the man pages .TH
- section to use the current date and curl/libcurl version.
-
- (TODO Section 3.1)
-
- Closes #1058
-
-- [Steve Brokenshire brought this change]
-
- gitignore: Ignore man page dist files
-
- Ignore man page dist files generated by scripts/updatemanpages.pl
-
-- [Steve Brokenshire brought this change]
-
- Makefile.am: Remove distribution man pages when running 'make clean'
-
-- [Steve Brokenshire brought this change]
-
- Makefile.am: Added scripts/updatemanpages.pl to EXTRA_DIST
-
-- [Steve Brokenshire brought this change]
-
- updatemanpages.pl: Update man pages to use current date and versions
-
- Added script to update man pages to use the current date and
- curl/libcurl versions.
-
- updatemanpages.pl has three arrays: list of directories to look in,
- list of extensions to process, list of files to exclude from
- processing.
-
- Check man page in git repoistory using the date from the existing man
- page before updating to avoid updating the man page if no change is
- made.
-
- If data is received from the git command then update the man page with
- the current date and version otherwise leave alone.
-
- Applied patch from badger to make the date argument optional, change the
- git command used, added date argument to processfile subroutine and
- print to STDERR if no date is found in a man page.
-
- Added code to process the changed man page into a new man page with
- .dist added to the filename to keep the original source files unchanged.
- Updated POD documentation to reflect that the date argument optional.
-
- Code style is in line with CODE_STYLE.md.
-
- Directories: docs/ docs/libcurl/ docs/libcurl/opts/ tests/
- Extensions: .1 .3
- Excluded files: mk-ca-bundle.1 template.3
-
- (TODO Section 3.1)
-
-- [Tatsuhiro Tsujikawa brought this change]
-
- http2: Fix assertion error on redirect with CL=0
-
- This fixes assertion error which occurs when redirect is done with 0
- length body via HTTP/2, and the easy handle is reused, but new
- connection is established due to hostname change:
-
- curl: http2.c:1572: ssize_t http2_recv(struct connectdata *,
- int, char *, size_t, CURLcode *):
- Assertion `httpc->drain_total >= data->state.drain' failed.
-
- To fix this bug, ensure that http2_handle_stream is called.
-
- Fixes #1286
- Closes #1302
-
-- ares: Curl_resolver_wait_resolv: clear *entry first in function
-
-- ares: better error return on timeouts
-
- Assisted-by: Ray Satiro
-
- Bug: https://curl.haxx.se/mail/lib-2017-03/0009.html
-
-Jay Satiro (6 Mar 2017)
-- KNOWN_BUGS: Add DarwinSSL won't import PKCS#12 without a password
-
- Bug: https://github.com/curl/curl/issues/1308
- Reported-by: Justin Clift
-
-Dan Fandrich (6 Mar 2017)
-- test1260: removed errant XML tag
-
-Daniel Stenberg (6 Mar 2017)
-- URL: return error on malformed URLs with junk after port number
-
- ... because it causes confusion with users. Example URLs:
-
- "http://[127.0.0.1]:11211:80" which a lot of languages' URL parsers will
- parse and claim uses port number 80, while libcurl would use port number
- 11211.
-
- "http://user@example.com:80@localhost" which by the WHATWG URL spec will
- be treated to contain user name 'user@example.com' but according to
- RFC3986 is user name 'user' for the host 'example.com' and then port 80
- is followed by "@localhost"
-
- Both these formats are now rejected, and verified so in test 1260.
-
- Reported-by: Orange Tsai
-
-- BINDINGS: update the Lua-cURL URL
-
-- [Sylvestre Ledru brought this change]
-
- BINDINGS: add Scilab binding
-
- Closes #1312
-
-- BINDINGS: add go-curl and perl6-net-curl
-
- Reported-by: Peter Pentchev
-
-- BINDINGS: add misssing C++ bindings
-
- Reported-by: Giuseppe Persico
diff --git a/curl/CHANGES.md b/curl/CHANGES.md
new file mode 100644
index 000000000..6e2f7c6bc
--- /dev/null
+++ b/curl/CHANGES.md
@@ -0,0 +1,12 @@
+
+
+In a release tarball, check the RELEASES-NOTES file for what was done in the
+most recent release. In a git check-out, that file mentions changes that have
+been done since the previous release.
+
+See the online [changelog](https://curl.se/changes.html) for the edited and
+human readable version of what has changed in different curl releases.
diff --git a/curl/CMake/CMakeConfigurableFile.in b/curl/CMake/CMakeConfigurableFile.in
index 4cf74a12b..a3d2bc4a2 100644
--- a/curl/CMake/CMakeConfigurableFile.in
+++ b/curl/CMake/CMakeConfigurableFile.in
@@ -1,2 +1,24 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
@CMAKE_CONFIGURABLE_FILE_CONTENT@
-
diff --git a/curl/CMake/CurlSymbolHiding.cmake b/curl/CMake/CurlSymbolHiding.cmake
index 9f7d29633..217c8832c 100644
--- a/curl/CMake/CurlSymbolHiding.cmake
+++ b/curl/CMake/CurlSymbolHiding.cmake
@@ -1,61 +1,68 @@
-include(CheckCSourceCompiles)
-
-option(CURL_HIDDEN_SYMBOLS "Set to ON to hide libcurl internal symbols (=hide all symbols that aren't officially external)." ON)
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+option(CURL_HIDDEN_SYMBOLS "Hide libcurl internal symbols (=hide all symbols that are not officially external)" ON)
mark_as_advanced(CURL_HIDDEN_SYMBOLS)
-if(CURL_HIDDEN_SYMBOLS)
- set(SUPPORTS_SYMBOL_HIDING FALSE)
+if(WIN32 AND (ENABLE_DEBUG OR ENABLE_CURLDEBUG))
+ # We need to export internal debug functions,
+ # e.g. curl_easy_perform_ev() or curl_dbg_*(),
+ # so disable symbol hiding for debug builds and for memory tracking.
+ set(CURL_HIDDEN_SYMBOLS OFF)
+elseif(DOS OR AMIGA OR MINGW32CE)
+ set(CURL_HIDDEN_SYMBOLS OFF)
+endif()
- if(CMAKE_C_COMPILER_ID MATCHES "Clang")
- set(SUPPORTS_SYMBOL_HIDING TRUE)
- set(_SYMBOL_EXTERN "__attribute__ ((__visibility__ (\"default\")))")
- set(_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
- elseif(CMAKE_COMPILER_IS_GNUCC)
- if(NOT CMAKE_VERSION VERSION_LESS 2.8.10)
- set(GCC_VERSION ${CMAKE_C_COMPILER_VERSION})
- else()
- execute_process(COMMAND ${CMAKE_C_COMPILER} -dumpversion
- OUTPUT_VARIABLE GCC_VERSION)
- endif()
- if(NOT GCC_VERSION VERSION_LESS 3.4)
- # note: this is considered buggy prior to 4.0 but the autotools don't care, so let's ignore that fact
- set(SUPPORTS_SYMBOL_HIDING TRUE)
- set(_SYMBOL_EXTERN "__attribute__ ((__visibility__ (\"default\")))")
- set(_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
- endif()
- elseif(CMAKE_C_COMPILER_ID MATCHES "SunPro" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 8.0)
- set(SUPPORTS_SYMBOL_HIDING TRUE)
- set(_SYMBOL_EXTERN "__global")
- set(_CFLAG_SYMBOLS_HIDE "-xldscope=hidden")
- elseif(CMAKE_C_COMPILER_ID MATCHES "Intel" AND NOT CMAKE_C_COMPILER_VERSION VERSION_LESS 9.0)
- # note: this should probably just check for version 9.1.045 but I'm not 100% sure
- # so let's to it the same way autotools do.
- set(SUPPORTS_SYMBOL_HIDING TRUE)
- set(_SYMBOL_EXTERN "__attribute__ ((__visibility__ (\"default\")))")
- set(_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
- check_c_source_compiles("#include
- int main (void) { printf(\"icc fvisibility bug test\"); return 0; }" _no_bug)
- if(NOT _no_bug)
- set(SUPPORTS_SYMBOL_HIDING FALSE)
- set(_SYMBOL_EXTERN "")
- set(_CFLAG_SYMBOLS_HIDE "")
- endif()
- elseif(MSVC)
- set(SUPPORTS_SYMBOL_HIDING TRUE)
- endif()
+set(CURL_HIDES_PRIVATE_SYMBOLS FALSE)
+set(CURL_EXTERN_SYMBOL "")
+set(CURL_CFLAG_SYMBOLS_HIDE "")
- set(HIDES_CURL_PRIVATE_SYMBOLS ${SUPPORTS_SYMBOL_HIDING})
-elseif(MSVC)
- if(NOT CMAKE_VERSION VERSION_LESS 3.7)
- set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE) #present since 3.4.3 but broken
- set(HIDES_CURL_PRIVATE_SYMBOLS FALSE)
- else()
- message(WARNING "Hiding private symbols regardless CURL_HIDDEN_SYMBOLS being disabled.")
- set(HIDES_CURL_PRIVATE_SYMBOLS TRUE)
+if(CURL_HIDDEN_SYMBOLS)
+ if(CMAKE_C_COMPILER_ID MATCHES "Clang" AND NOT MSVC)
+ set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
+ set(CURL_EXTERN_SYMBOL "__attribute__((__visibility__(\"default\")))")
+ set(CURL_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
+ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU")
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 3.4)
+ # Note: This is considered buggy prior to 4.0 but the autotools do not care, so let us ignore that fact
+ set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
+ set(CURL_EXTERN_SYMBOL "__attribute__((__visibility__(\"default\")))")
+ set(CURL_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
endif()
-elseif()
- set(HIDES_CURL_PRIVATE_SYMBOLS FALSE)
+ elseif(CMAKE_C_COMPILER_ID MATCHES "SunPro" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 8.0)
+ set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
+ set(CURL_EXTERN_SYMBOL "__global")
+ set(CURL_CFLAG_SYMBOLS_HIDE "-xldscope=hidden")
+ elseif(CMAKE_C_COMPILER_ID MATCHES "Intel" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 9.0) # Requires 9.1.045
+ set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
+ set(CURL_EXTERN_SYMBOL "__attribute__((__visibility__(\"default\")))")
+ set(CURL_CFLAG_SYMBOLS_HIDE "-fvisibility=hidden")
+ elseif(MSVC)
+ set(CURL_HIDES_PRIVATE_SYMBOLS TRUE)
+ endif()
+else()
+ if(MSVC)
+ # Note: This option is prone to export non-curl extra symbols.
+ set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
+ endif()
endif()
-
-set(CURL_CFLAG_SYMBOLS_HIDE ${_CFLAG_SYMBOLS_HIDE})
-set(CURL_EXTERN_SYMBOL ${_SYMBOL_EXTERN})
diff --git a/curl/CMake/CurlTests.c b/curl/CMake/CurlTests.c
index bc36c8ef7..410a0f70c 100644
--- a/curl/CMake/CurlTests.c
+++ b/curl/CMake/CurlTests.c
@@ -5,11 +5,11 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2014, Daniel Stenberg, , et al.
+ * Copyright (C) Daniel Stenberg, , 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.haxx.se/docs/copyright.html.
+ * 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
@@ -18,27 +18,11 @@
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
+ * SPDX-License-Identifier: curl
+ *
***************************************************************************/
-#ifdef TIME_WITH_SYS_TIME
-/* Time with sys/time test */
-
-#include
-#include
-#include
-
-int
-main ()
-{
-if ((struct tm *) 0)
-return 0;
- ;
- return 0;
-}
-
-#endif
#ifdef HAVE_FCNTL_O_NONBLOCK
-
/* headers for FCNTL_O_NONBLOCK test */
#include
#include
@@ -46,148 +30,77 @@ return 0;
/* */
#if defined(sun) || defined(__sun__) || \
defined(__SUNPRO_C) || defined(__SUNPRO_CC)
-# if defined(__SVR4) || defined(__srv4__)
-# define PLATFORM_SOLARIS
-# else
-# define PLATFORM_SUNOS4
-# endif
+# if defined(__SVR4) || defined(__srv4__)
+# define PLATFORM_SOLARIS
+# else
+# define PLATFORM_SUNOS4
+# endif
#endif
#if (defined(_AIX) || defined(__xlC__)) && !defined(_AIX41)
-# define PLATFORM_AIX_V3
+# define PLATFORM_AIX_V3
#endif
/* */
-#if defined(PLATFORM_SUNOS4) || defined(PLATFORM_AIX_V3) || defined(__BEOS__)
+#if defined(PLATFORM_SUNOS4) || defined(PLATFORM_AIX_V3)
#error "O_NONBLOCK does not work on this platform"
#endif
-int
-main ()
+int main(void)
{
- /* O_NONBLOCK source test */
- int flags = 0;
- if(0 != fcntl(0, F_SETFL, flags | O_NONBLOCK))
- return 1;
- return 0;
+ /* O_NONBLOCK source test */
+ int flags = 0;
+ if(0 != fcntl(0, F_SETFL, flags | O_NONBLOCK))
+ return 1;
+ return 0;
}
#endif
-/* tests for gethostbyaddr_r or gethostbyname_r */
-#if defined(HAVE_GETHOSTBYADDR_R_5_REENTRANT) || \
- defined(HAVE_GETHOSTBYADDR_R_7_REENTRANT) || \
- defined(HAVE_GETHOSTBYADDR_R_8_REENTRANT) || \
+/* tests for gethostbyname_r */
+#if defined(HAVE_GETHOSTBYNAME_R_3) || \
defined(HAVE_GETHOSTBYNAME_R_3_REENTRANT) || \
- defined(HAVE_GETHOSTBYNAME_R_5_REENTRANT) || \
- defined(HAVE_GETHOSTBYNAME_R_6_REENTRANT)
-# define _REENTRANT
- /* no idea whether _REENTRANT is always set, just invent a new flag */
-# define TEST_GETHOSTBYFOO_REENTRANT
-#endif
-#if defined(HAVE_GETHOSTBYADDR_R_5) || \
- defined(HAVE_GETHOSTBYADDR_R_7) || \
- defined(HAVE_GETHOSTBYADDR_R_8) || \
- defined(HAVE_GETHOSTBYNAME_R_3) || \
defined(HAVE_GETHOSTBYNAME_R_5) || \
+ defined(HAVE_GETHOSTBYNAME_R_5_REENTRANT) || \
defined(HAVE_GETHOSTBYNAME_R_6) || \
- defined(TEST_GETHOSTBYFOO_REENTRANT)
+ defined(HAVE_GETHOSTBYNAME_R_6_REENTRANT)
#include
#include
int main(void)
{
- char *address = "example.com";
- int length = 0;
- int type = 0;
+ const char *address = "example.com";
struct hostent h;
int rc = 0;
-#if defined(HAVE_GETHOSTBYADDR_R_5) || \
- defined(HAVE_GETHOSTBYADDR_R_5_REENTRANT) || \
- \
- defined(HAVE_GETHOSTBYNAME_R_3) || \
- defined(HAVE_GETHOSTBYNAME_R_3_REENTRANT)
+#if defined(HAVE_GETHOSTBYNAME_R_3) || \
+ defined(HAVE_GETHOSTBYNAME_R_3_REENTRANT)
struct hostent_data hdata;
-#elif defined(HAVE_GETHOSTBYADDR_R_7) || \
- defined(HAVE_GETHOSTBYADDR_R_7_REENTRANT) || \
- defined(HAVE_GETHOSTBYADDR_R_8) || \
- defined(HAVE_GETHOSTBYADDR_R_8_REENTRANT) || \
- \
- defined(HAVE_GETHOSTBYNAME_R_5) || \
+#elif defined(HAVE_GETHOSTBYNAME_R_5) || \
defined(HAVE_GETHOSTBYNAME_R_5_REENTRANT) || \
defined(HAVE_GETHOSTBYNAME_R_6) || \
defined(HAVE_GETHOSTBYNAME_R_6_REENTRANT)
char buffer[8192];
- int h_errnop;
struct hostent *hp;
-#endif
-
-#ifndef gethostbyaddr_r
- (void)gethostbyaddr_r;
-#endif
-
-#if defined(HAVE_GETHOSTBYADDR_R_5) || \
- defined(HAVE_GETHOSTBYADDR_R_5_REENTRANT)
- rc = gethostbyaddr_r(address, length, type, &h, &hdata);
-#elif defined(HAVE_GETHOSTBYADDR_R_7) || \
- defined(HAVE_GETHOSTBYADDR_R_7_REENTRANT)
- hp = gethostbyaddr_r(address, length, type, &h, buffer, 8192, &h_errnop);
- (void)hp;
-#elif defined(HAVE_GETHOSTBYADDR_R_8) || \
- defined(HAVE_GETHOSTBYADDR_R_8_REENTRANT)
- rc = gethostbyaddr_r(address, length, type, &h, buffer, 8192, &hp, &h_errnop);
+ int h_errnop;
#endif
#if defined(HAVE_GETHOSTBYNAME_R_3) || \
defined(HAVE_GETHOSTBYNAME_R_3_REENTRANT)
rc = gethostbyname_r(address, &h, &hdata);
+ (void)hdata;
#elif defined(HAVE_GETHOSTBYNAME_R_5) || \
defined(HAVE_GETHOSTBYNAME_R_5_REENTRANT)
rc = gethostbyname_r(address, &h, buffer, 8192, &h_errnop);
(void)hp; /* not used for test */
+ (void)h_errnop;
#elif defined(HAVE_GETHOSTBYNAME_R_6) || \
defined(HAVE_GETHOSTBYNAME_R_6_REENTRANT)
rc = gethostbyname_r(address, &h, buffer, 8192, &hp, &h_errnop);
+ (void)hp;
+ (void)h_errnop;
#endif
-
- (void)length;
- (void)type;
+ (void)h;
(void)rc;
return 0;
}
#endif
-#ifdef HAVE_SOCKLEN_T
-#ifdef _WIN32
-#include
-#else
-#include
-#include
-#endif
-int
-main ()
-{
-if ((socklen_t *) 0)
- return 0;
-if (sizeof (socklen_t))
- return 0;
- ;
- return 0;
-}
-#endif
-#ifdef HAVE_IN_ADDR_T
-#include
-#include
-#include
-
-int
-main ()
-{
-if ((in_addr_t *) 0)
- return 0;
-if (sizeof (in_addr_t))
- return 0;
- ;
- return 0;
-}
-#endif
-
#ifdef HAVE_BOOL_T
#ifdef HAVE_SYS_TYPES_H
#include
@@ -195,13 +108,9 @@ if (sizeof (in_addr_t))
#ifdef HAVE_STDBOOL_H
#include
#endif
-int
-main ()
+int main(void)
{
-if (sizeof (bool *) )
- return 0;
- ;
- return 0;
+ return (int)sizeof(bool *);
}
#endif
@@ -210,215 +119,91 @@ if (sizeof (bool *) )
#include
#include
#include
-int main() { return 0; }
-#endif
-#ifdef RETSIGTYPE_TEST
-#include
-#include
-#ifdef signal
-# undef signal
-#endif
-#ifdef __cplusplus
-extern "C" void (*signal (int, void (*)(int)))(int);
-#else
-void (*signal ()) ();
+int main(void) { return 0; }
#endif
-int
-main ()
-{
- return 0;
-}
-#endif
-#ifdef HAVE_INET_NTOA_R_DECL
-#include
-
-typedef void (*func_type)();
-
-int main()
+#ifdef HAVE_FILE_OFFSET_BITS
+#include
+/* Check that off_t can represent 2**63 - 1 correctly.
+ We cannot simply define LARGE_OFF_T to be 9223372036854775807,
+ since some C++ compilers masquerading as C compilers
+ incorrectly reject 9223372036854775807. */
+#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
+static int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 &&
+ LARGE_OFF_T % 2147483647 == 1)
+ ? 1 : -1];
+int main(void)
{
-#ifndef inet_ntoa_r
- func_type func;
- func = (func_type)inet_ntoa_r;
-#endif
+ (void)off_t_is_large;
return 0;
}
#endif
-#ifdef HAVE_INET_NTOA_R_DECL_REENTRANT
-#define _REENTRANT
-#include
-typedef void (*func_type)();
-
-int main()
-{
-#ifndef inet_ntoa_r
- func_type func;
- func = (func_type)&inet_ntoa_r;
-#endif
- return 0;
-}
-#endif
-#ifdef HAVE_GETADDRINFO
-#include
-#include
-#include
-
-int main(void) {
- struct addrinfo hints, *ai;
- int error;
-
- memset(&hints, 0, sizeof(hints));
- hints.ai_family = AF_UNSPEC;
- hints.ai_socktype = SOCK_STREAM;
-#ifndef getaddrinfo
- (void)getaddrinfo;
-#endif
- error = getaddrinfo("127.0.0.1", "8080", &hints, &ai);
- if (error) {
- return 1;
- }
- return 0;
-}
-#endif
-#ifdef HAVE_FILE_OFFSET_BITS
-#ifdef _FILE_OFFSET_BITS
-#undef _FILE_OFFSET_BITS
-#endif
-#define _FILE_OFFSET_BITS 64
-#include
- /* Check that off_t can represent 2**63 - 1 correctly.
- We can't simply define LARGE_OFF_T to be 9223372036854775807,
- since some C++ compilers masquerading as C compilers
- incorrectly reject 9223372036854775807. */
-#define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
- int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
- && LARGE_OFF_T % 2147483647 == 1)
- ? 1 : -1];
-int main () { ; return 0; }
-#endif
#ifdef HAVE_IOCTLSOCKET
-/* includes start */
-#ifdef HAVE_WINDOWS_H
-# ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-# endif
-# include
-# ifdef HAVE_WINSOCK2_H
-# include
-# else
-# ifdef HAVE_WINSOCK_H
-# include
-# endif
-# endif
+#ifdef _WIN32
+# include
#endif
-
-int
-main ()
+int main(void)
{
-
-/* ioctlsocket source code */
- int socket;
- unsigned long flags = ioctlsocket(socket, FIONBIO, &flags);
-
- ;
+ /* ioctlsocket source code */
+ int socket = -1;
+ unsigned long flags = ioctlsocket(socket, FIONBIO, &flags);
+ (void)flags;
return 0;
}
-#endif
-#ifdef HAVE_IOCTLSOCKET_CAMEL
-/* includes start */
-#ifdef HAVE_WINDOWS_H
-# ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-# endif
-# include
-# ifdef HAVE_WINSOCK2_H
-# include
-# else
-# ifdef HAVE_WINSOCK_H
-# include
-# endif
-# endif
#endif
-int
-main ()
+#ifdef HAVE_IOCTLSOCKET_CAMEL
+#include
+int main(void)
{
-
-/* IoctlSocket source code */
- if(0 != IoctlSocket(0, 0, 0))
- return 1;
- ;
+ /* IoctlSocket source code */
+ if(0 != IoctlSocket(0, 0, 0))
+ return 1;
return 0;
}
#endif
+
#ifdef HAVE_IOCTLSOCKET_CAMEL_FIONBIO
-/* includes start */
-#ifdef HAVE_WINDOWS_H
-# ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-# endif
-# include
-# ifdef HAVE_WINSOCK2_H
-# include
-# else
-# ifdef HAVE_WINSOCK_H
-# include
-# endif
-# endif
+#include
+#ifdef HAVE_SYS_IOCTL_H
+# include
#endif
-
-int
-main ()
+int main(void)
{
-
-/* IoctlSocket source code */
- long flags = 0;
- if(0 != ioctlsocket(0, FIONBIO, &flags))
- return 1;
- ;
+ /* IoctlSocket source code */
+ long flags = 0;
+ if(0 != IoctlSocket(0, FIONBIO, &flags))
+ return 1;
+ (void)flags;
return 0;
}
#endif
+
#ifdef HAVE_IOCTLSOCKET_FIONBIO
-/* includes start */
-#ifdef HAVE_WINDOWS_H
-# ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-# endif
-# include
-# ifdef HAVE_WINSOCK2_H
-# include
-# else
-# ifdef HAVE_WINSOCK_H
-# include
-# endif
-# endif
+#ifdef _WIN32
+# include
#endif
-
-int
-main ()
+int main(void)
{
-
- int flags = 0;
- if(0 != ioctlsocket(0, FIONBIO, &flags))
- return 1;
-
- ;
+ unsigned long flags = 0;
+ if(0 != ioctlsocket(0, FIONBIO, &flags))
+ return 1;
+ (void)flags;
return 0;
}
#endif
+
#ifdef HAVE_IOCTL_FIONBIO
/* headers for FIONBIO test */
-/* includes start */
#ifdef HAVE_SYS_TYPES_H
# include
#endif
#ifdef HAVE_UNISTD_H
# include
#endif
-#ifdef HAVE_SYS_SOCKET_H
+#ifndef _WIN32
# include
#endif
#ifdef HAVE_SYS_IOCTL_H
@@ -427,29 +212,25 @@ main ()
#ifdef HAVE_STROPTS_H
# include
#endif
-
-int
-main ()
+int main(void)
{
-
- int flags = 0;
- if(0 != ioctl(0, FIONBIO, &flags))
- return 1;
-
- ;
+ int flags = 0;
+ if(0 != ioctl(0, FIONBIO, &flags))
+ return 1;
+ (void)flags;
return 0;
}
#endif
+
#ifdef HAVE_IOCTL_SIOCGIFADDR
/* headers for FIONBIO test */
-/* includes start */
#ifdef HAVE_SYS_TYPES_H
# include
#endif
#ifdef HAVE_UNISTD_H
# include
#endif
-#ifdef HAVE_SYS_SOCKET_H
+#ifndef _WIN32
# include
#endif
#ifdef HAVE_SYS_IOCTL_H
@@ -459,93 +240,153 @@ main ()
# include
#endif
#include
-
-int
-main ()
+int main(void)
{
- struct ifreq ifr;
- if(0 != ioctl(0, SIOCGIFADDR, &ifr))
- return 1;
-
- ;
+ struct ifreq ifr;
+ if(0 != ioctl(0, SIOCGIFADDR, &ifr))
+ return 1;
+ (void)ifr;
return 0;
}
#endif
+
#ifdef HAVE_SETSOCKOPT_SO_NONBLOCK
-/* includes start */
-#ifdef HAVE_WINDOWS_H
-# ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-# endif
-# include
-# ifdef HAVE_WINSOCK2_H
-# include
-# else
-# ifdef HAVE_WINSOCK_H
-# include
-# endif
-# endif
+#ifdef _WIN32
+# include
#endif
-/* includes start */
#ifdef HAVE_SYS_TYPES_H
# include
#endif
-#ifdef HAVE_SYS_SOCKET_H
+#ifndef _WIN32
# include
#endif
-/* includes end */
-
-int
-main ()
+int main(void)
{
- if(0 != setsockopt(0, SOL_SOCKET, SO_NONBLOCK, 0, 0))
- return 1;
- ;
+ if(0 != setsockopt(0, SOL_SOCKET, SO_NONBLOCK, 0, 0))
+ return 1;
return 0;
}
#endif
+
#ifdef HAVE_GLIBC_STRERROR_R
#include
#include
-int
-main () {
- char buffer[1024]; /* big enough to play with */
- char *string =
- strerror_r(EACCES, buffer, sizeof(buffer));
- /* this should've returned a string */
- if(!string || !string[0])
- return 99;
- return 0;
+
+static void check(char c) { (void)c; }
+
+int main(void)
+{
+ char buffer[1024];
+ /* This will not compile if strerror_r does not return a char* */
+ /* !checksrc! disable ERRNOVAR 1 */
+ check(strerror_r(EACCES, buffer, sizeof(buffer))[0]);
+ return 0;
}
#endif
+
#ifdef HAVE_POSIX_STRERROR_R
#include
#include
-int
-main () {
- char buffer[1024]; /* big enough to play with */
- int error =
- strerror_r(EACCES, buffer, sizeof(buffer));
- /* This should've returned zero, and written an error string in the
- buffer.*/
- if(!buffer[0] || error)
- return 99;
- return 0;
+
+/* Float, because a pointer cannot be implicitly cast to float */
+static void check(float f) { (void)f; }
+
+int main(void)
+{
+ char buffer[1024];
+ /* This will not compile if strerror_r does not return an int */
+ /* !checksrc! disable ERRNOVAR 1 */
+ check(strerror_r(EACCES, buffer, sizeof(buffer)));
+ return 0;
}
#endif
+
#ifdef HAVE_FSETXATTR_6
#include /* header from libc, not from libattr */
-int
-main() {
+int main(void)
+{
fsetxattr(0, 0, 0, 0, 0, 0);
return 0;
}
#endif
+
#ifdef HAVE_FSETXATTR_5
#include /* header from libc, not from libattr */
-int
-main() {
- fsetxattr(0, 0, 0, 0, 0);
+int main(void)
+{
+ fsetxattr(0, "", 0, 0, 0);
+ return 0;
+}
+#endif
+
+#ifdef HAVE_CLOCK_GETTIME_MONOTONIC
+#include
+int main(void)
+{
+ struct timespec ts;
+ (void)clock_gettime(CLOCK_MONOTONIC, &ts);
+ (void)ts;
+ return 0;
+}
+#endif
+
+#ifdef HAVE_BUILTIN_AVAILABLE
+int main(void)
+{
+ if(__builtin_available(macOS 10.12, iOS 5.0, *)) {}
+ return 0;
+}
+#endif
+
+#ifdef HAVE_ATOMIC
+#ifdef HAVE_SYS_TYPES_H
+# include
+#endif
+#ifdef HAVE_UNISTD_H
+# include
+#endif
+#ifdef HAVE_STDATOMIC_H
+# include
+#endif
+int main(void)
+{
+ _Atomic int i = 1;
+ i = 0; /* Force an atomic-write operation. */
+ return i;
+}
+#endif
+
+#ifdef HAVE_WIN32_WINNT
+#ifdef _WIN32
+# ifndef NOGDI
+# define NOGDI
+# endif
+# include
+#endif
+
+#define enquote(x) #x
+#define expand(x) enquote(x)
+#pragma message("_WIN32_WINNT=" expand(_WIN32_WINNT))
+
+int main(void)
+{
+ return 0;
+}
+#endif
+
+#ifdef MINGW64_VERSION
+#ifdef __MINGW32__
+# include <_mingw.h>
+#endif
+
+#define enquote(x) #x
+#define expand(x) enquote(x)
+#pragma message("MINGW64_VERSION=" \
+ expand(__MINGW64_VERSION_MAJOR) "." \
+ expand(__MINGW64_VERSION_MINOR))
+
+int main(void)
+{
return 0;
}
#endif
diff --git a/curl/CMake/FindBrotli.cmake b/curl/CMake/FindBrotli.cmake
new file mode 100644
index 000000000..690b5a9c2
--- /dev/null
+++ b/curl/CMake/FindBrotli.cmake
@@ -0,0 +1,76 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the brotli library
+#
+# Input variables:
+#
+# - `BROTLI_INCLUDE_DIR`: The brotli include directory.
+# - `BROTLICOMMON_LIBRARY`: Path to `brotlicommon` library.
+# - `BROTLIDEC_LIBRARY`: Path to `brotlidec` library.
+#
+# Result variables:
+#
+# - `BROTLI_FOUND`: System has brotli.
+# - `BROTLI_INCLUDE_DIRS`: The brotli include directories.
+# - `BROTLI_LIBRARIES`: The brotli library names.
+# - `BROTLI_LIBRARY_DIRS`: The brotli library directories.
+# - `BROTLI_PC_REQUIRES`: The brotli pkg-config packages.
+# - `BROTLI_CFLAGS`: Required compiler flags.
+# - `BROTLI_VERSION`: Version of brotli.
+
+set(BROTLI_PC_REQUIRES "libbrotlidec" "libbrotlicommon") # order is significant: brotlidec then brotlicommon
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED BROTLI_INCLUDE_DIR AND
+ NOT DEFINED BROTLICOMMON_LIBRARY AND
+ NOT DEFINED BROTLIDEC_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(BROTLI ${BROTLI_PC_REQUIRES})
+endif()
+
+if(BROTLI_FOUND)
+ set(Brotli_FOUND TRUE)
+ set(BROTLI_VERSION "${BROTLI_libbrotlicommon_VERSION}")
+ string(REPLACE ";" " " BROTLI_CFLAGS "${BROTLI_CFLAGS}")
+ message(STATUS "Found Brotli (via pkg-config): ${BROTLI_INCLUDE_DIRS} (found version \"${BROTLI_VERSION}\")")
+else()
+ find_path(BROTLI_INCLUDE_DIR "brotli/decode.h")
+ find_library(BROTLICOMMON_LIBRARY NAMES "brotlicommon")
+ find_library(BROTLIDEC_LIBRARY NAMES "brotlidec")
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Brotli
+ REQUIRED_VARS
+ BROTLI_INCLUDE_DIR
+ BROTLIDEC_LIBRARY
+ BROTLICOMMON_LIBRARY
+ )
+
+ if(BROTLI_FOUND)
+ set(BROTLI_INCLUDE_DIRS ${BROTLI_INCLUDE_DIR})
+ set(BROTLI_LIBRARIES ${BROTLIDEC_LIBRARY} ${BROTLICOMMON_LIBRARY})
+ endif()
+
+ mark_as_advanced(BROTLI_INCLUDE_DIR BROTLIDEC_LIBRARY BROTLICOMMON_LIBRARY)
+endif()
diff --git a/curl/CMake/FindCARES.cmake b/curl/CMake/FindCARES.cmake
index c4ab5f132..cc47e2d33 100644
--- a/curl/CMake/FindCARES.cmake
+++ b/curl/CMake/FindCARES.cmake
@@ -1,42 +1,97 @@
-# - Find c-ares
-# Find the c-ares includes and library
-# This module defines
-# CARES_INCLUDE_DIR, where to find ares.h, etc.
-# CARES_LIBRARIES, the libraries needed to use c-ares.
-# CARES_FOUND, If false, do not try to use c-ares.
-# also defined, but not for general use are
-# CARES_LIBRARY, where to find the c-ares library.
-
-FIND_PATH(CARES_INCLUDE_DIR ares.h
- /usr/local/include
- /usr/include
- )
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the c-ares library
+#
+# Input variables:
+#
+# - `CARES_INCLUDE_DIR`: The c-ares include directory.
+# - `CARES_LIBRARY`: Path to `cares` library.
+#
+# Result variables:
+#
+# - `CARES_FOUND`: System has c-ares.
+# - `CARES_INCLUDE_DIRS`: The c-ares include directories.
+# - `CARES_LIBRARIES`: The c-ares library names.
+# - `CARES_LIBRARY_DIRS`: The c-ares library directories.
+# - `CARES_PC_REQUIRES`: The c-ares pkg-config packages.
+# - `CARES_CFLAGS`: Required compiler flags.
+# - `CARES_VERSION`: Version of c-ares.
-SET(CARES_NAMES ${CARES_NAMES} cares)
-FIND_LIBRARY(CARES_LIBRARY
- NAMES ${CARES_NAMES}
- PATHS /usr/lib /usr/local/lib
- )
+set(CARES_PC_REQUIRES "libcares")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED CARES_INCLUDE_DIR AND
+ NOT DEFINED CARES_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(CARES ${CARES_PC_REQUIRES})
+endif()
+
+if(CARES_FOUND)
+ set(Cares_FOUND TRUE)
+ string(REPLACE ";" " " CARES_CFLAGS "${CARES_CFLAGS}")
+ message(STATUS "Found Cares (via pkg-config): ${CARES_INCLUDE_DIRS} (found version \"${CARES_VERSION}\")")
+else()
+ find_path(CARES_INCLUDE_DIR NAMES "ares.h")
+ find_library(CARES_LIBRARY NAMES ${CARES_NAMES} "cares")
-IF (CARES_LIBRARY AND CARES_INCLUDE_DIR)
- SET(CARES_LIBRARIES ${CARES_LIBRARY})
- SET(CARES_FOUND "YES")
-ELSE (CARES_LIBRARY AND CARES_INCLUDE_DIR)
- SET(CARES_FOUND "NO")
-ENDIF (CARES_LIBRARY AND CARES_INCLUDE_DIR)
-
-
-IF (CARES_FOUND)
- IF (NOT CARES_FIND_QUIETLY)
- MESSAGE(STATUS "Found c-ares: ${CARES_LIBRARIES}")
- ENDIF (NOT CARES_FIND_QUIETLY)
-ELSE (CARES_FOUND)
- IF (CARES_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find c-ares library")
- ENDIF (CARES_FIND_REQUIRED)
-ENDIF (CARES_FOUND)
-
-MARK_AS_ADVANCED(
- CARES_LIBRARY
- CARES_INCLUDE_DIR
+ unset(CARES_VERSION CACHE)
+ if(CARES_INCLUDE_DIR AND EXISTS "${CARES_INCLUDE_DIR}/ares_version.h")
+ set(_version_regex1 "#[\t ]*define[\t ]+ARES_VERSION_MAJOR[\t ]+([0-9]+).*")
+ set(_version_regex2 "#[\t ]*define[\t ]+ARES_VERSION_MINOR[\t ]+([0-9]+).*")
+ set(_version_regex3 "#[\t ]*define[\t ]+ARES_VERSION_PATCH[\t ]+([0-9]+).*")
+ file(STRINGS "${CARES_INCLUDE_DIR}/ares_version.h" _version_str1 REGEX "${_version_regex1}")
+ file(STRINGS "${CARES_INCLUDE_DIR}/ares_version.h" _version_str2 REGEX "${_version_regex2}")
+ file(STRINGS "${CARES_INCLUDE_DIR}/ares_version.h" _version_str3 REGEX "${_version_regex3}")
+ string(REGEX REPLACE "${_version_regex1}" "\\1" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "${_version_regex2}" "\\1" _version_str2 "${_version_str2}")
+ string(REGEX REPLACE "${_version_regex3}" "\\1" _version_str3 "${_version_str3}")
+ set(CARES_VERSION "${_version_str1}.${_version_str2}.${_version_str3}")
+ unset(_version_regex1)
+ unset(_version_regex2)
+ unset(_version_regex3)
+ unset(_version_str1)
+ unset(_version_str2)
+ unset(_version_str3)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Cares
+ REQUIRED_VARS
+ CARES_INCLUDE_DIR
+ CARES_LIBRARY
+ VERSION_VAR
+ CARES_VERSION
)
+
+ if(CARES_FOUND)
+ set(CARES_INCLUDE_DIRS ${CARES_INCLUDE_DIR})
+ set(CARES_LIBRARIES ${CARES_LIBRARY})
+ endif()
+
+ mark_as_advanced(CARES_INCLUDE_DIR CARES_LIBRARY)
+endif()
+
+if(CARES_FOUND AND WIN32)
+ list(APPEND CARES_LIBRARIES "iphlpapi") # for if_indextoname and others
+endif()
diff --git a/curl/CMake/FindGSS.cmake b/curl/CMake/FindGSS.cmake
index 60dcb73c9..9000445ac 100644
--- a/curl/CMake/FindGSS.cmake
+++ b/curl/CMake/FindGSS.cmake
@@ -1,289 +1,365 @@
-# - Try to find the GSS Kerberos library
-# Once done this will define
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
#
-# GSS_ROOT_DIR - Set this variable to the root installation of GSS
+# Copyright (C) Daniel Stenberg, , et al.
#
-# Read-Only variables:
-# GSS_FOUND - system has the Heimdal library
-# GSS_FLAVOUR - "MIT" or "Heimdal" if anything found.
-# GSS_INCLUDE_DIR - the Heimdal include directory
-# GSS_LIBRARIES - The libraries needed to use GSS
-# GSS_LINK_DIRECTORIES - Directories to add to linker search path
-# GSS_LINKER_FLAGS - Additional linker flags
-# GSS_COMPILER_FLAGS - Additional compiler flags
-# GSS_VERSION - This is set to version advertised by pkg-config or read from manifest.
-# In case the library is found but no version info available it'll be set to "unknown"
-
-set(_MIT_MODNAME mit-krb5-gssapi)
-set(_HEIMDAL_MODNAME heimdal-gssapi)
+# 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
+#
+###########################################################################
+# Find the GSS Kerberos library
+#
+# Input variables:
+#
+# - `GSS_ROOT_DIR`: Set this variable to the root installation of GSS. (also supported as environment)
+#
+# Result variables:
+#
+# - `GSS_FOUND`: System has the Heimdal library.
+# - `GSS_FLAVOUR`: "GNU", "MIT" or "Heimdal" if anything found.
+# - `GSS_INCLUDE_DIRS`: The GSS include directories.
+# - `GSS_LIBRARIES`: The GSS library names.
+# - `GSS_LIBRARY_DIRS`: The GSS library directories.
+# - `GSS_PC_REQUIRES`: The GSS pkg-config packages.
+# - `GSS_CFLAGS`: Required compiler flags.
+# - `GSS_VERSION`: This is set to version advertised by pkg-config or read from manifest.
+# In case the library is found but no version info available it is set to "unknown"
+
+set(_gnu_modname "gss")
+set(_mit_modname "mit-krb5-gssapi")
+set(_heimdal_modname "heimdal-gssapi")
include(CheckIncludeFile)
include(CheckIncludeFiles)
include(CheckTypeSize)
-set(_GSS_ROOT_HINTS
- "${GSS_ROOT_DIR}"
- "$ENV{GSS_ROOT_DIR}"
+set(_gss_root_hints
+ "${GSS_ROOT_DIR}"
+ "$ENV{GSS_ROOT_DIR}"
)
-# try to find library using system pkg-config if user didn't specify root dir
+set(_gss_CFLAGS "")
+set(_gss_LIBRARY_DIRS "")
+
+# Try to find library using system pkg-config if user did not specify root dir
if(NOT GSS_ROOT_DIR AND NOT "$ENV{GSS_ROOT_DIR}")
- if(UNIX)
- find_package(PkgConfig QUIET)
- pkg_search_module(_GSS_PKG ${_MIT_MODNAME} ${_HEIMDAL_MODNAME})
- list(APPEND _GSS_ROOT_HINTS "${_GSS_PKG_PREFIX}")
- elseif(WIN32)
- list(APPEND _GSS_ROOT_HINTS "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos;InstallDir]")
- endif()
+ if(CURL_USE_PKGCONFIG)
+ find_package(PkgConfig QUIET)
+ pkg_search_module(_gss ${_gnu_modname} ${_mit_modname} ${_heimdal_modname})
+ list(APPEND _gss_root_hints "${_gss_PREFIX}")
+ set(_gss_version "${_gss_VERSION}")
+ endif()
+ if(WIN32)
+ list(APPEND _gss_root_hints "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos;InstallDir]")
+ endif()
endif()
-if(NOT _GSS_FOUND) #not found by pkg-config. Let's take more traditional approach.
- find_file(_GSS_CONFIGURE_SCRIPT
- NAMES
- "krb5-config"
- HINTS
- ${_GSS_ROOT_HINTS}
- PATH_SUFFIXES
- bin
- NO_CMAKE_PATH
- NO_CMAKE_ENVIRONMENT_PATH
+if(NOT _gss_FOUND) # Not found by pkg-config. Let us take more traditional approach.
+ find_file(_gss_configure_script
+ NAMES
+ "krb5-config"
+ HINTS
+ ${_gss_root_hints}
+ PATH_SUFFIXES
+ "bin"
+ NO_CMAKE_PATH
+ NO_CMAKE_ENVIRONMENT_PATH
+ )
+
+ # If not found in user-supplied directories, maybe system knows better
+ find_file(_gss_configure_script
+ NAMES
+ "krb5-config"
+ PATH_SUFFIXES
+ "bin"
+ )
+
+ if(_gss_configure_script)
+
+ set(_gss_INCLUDE_DIRS "")
+ set(_gss_LIBRARIES "")
+
+ execute_process(
+ COMMAND ${_gss_configure_script} "--cflags" "gssapi"
+ OUTPUT_VARIABLE _gss_cflags_raw
+ RESULT_VARIABLE _gss_configure_failed
+ OUTPUT_STRIP_TRAILING_WHITESPACE
)
+ message(STATUS "FindGSS krb5-config --cflags: ${_gss_cflags_raw}")
+ if(NOT _gss_configure_failed) # 0 means success
+ # Should also work in an odd case when multiple directories are given.
+ string(STRIP "${_gss_cflags_raw}" _gss_cflags_raw)
+ string(REGEX REPLACE " +-(I)" ";-\\1" _gss_cflags_raw "${_gss_cflags_raw}")
+ string(REGEX REPLACE " +-([^I][^ \\t;]*)" ";-\\1" _gss_cflags_raw "${_gss_cflags_raw}")
+
+ foreach(_flag IN LISTS _gss_cflags_raw)
+ if(_flag MATCHES "^-I")
+ string(REGEX REPLACE "^-I" "" _flag "${_flag}")
+ list(APPEND _gss_INCLUDE_DIRS "${_flag}")
+ else()
+ list(APPEND _gss_CFLAGS "${_flag}")
+ endif()
+ endforeach()
+ endif()
- # if not found in user-supplied directories, maybe system knows better
- find_file(_GSS_CONFIGURE_SCRIPT
- NAMES
- "krb5-config"
- PATH_SUFFIXES
- bin
+ execute_process(
+ COMMAND ${_gss_configure_script} "--libs" "gssapi"
+ OUTPUT_VARIABLE _gss_lib_flags
+ RESULT_VARIABLE _gss_configure_failed
+ OUTPUT_STRIP_TRAILING_WHITESPACE
)
-
- if(_GSS_CONFIGURE_SCRIPT)
- execute_process(
- COMMAND ${_GSS_CONFIGURE_SCRIPT} "--cflags" "gssapi"
- OUTPUT_VARIABLE _GSS_CFLAGS
- RESULT_VARIABLE _GSS_CONFIGURE_FAILED
- )
-message(STATUS "CFLAGS: ${_GSS_CFLAGS}")
- if(NOT _GSS_CONFIGURE_FAILED) # 0 means success
- # should also work in an odd case when multiple directories are given
- string(STRIP "${_GSS_CFLAGS}" _GSS_CFLAGS)
- string(REGEX REPLACE " +-I" ";" _GSS_CFLAGS "${_GSS_CFLAGS}")
- string(REGEX REPLACE " +-([^I][^ \\t;]*)" ";-\\1"_GSS_CFLAGS "${_GSS_CFLAGS}")
-
- foreach(_flag ${_GSS_CFLAGS})
- if(_flag MATCHES "^-I.*")
- string(REGEX REPLACE "^-I" "" _val "${_flag}")
- list(APPEND _GSS_INCLUDE_DIR "${_val}")
- else()
- list(APPEND _GSS_COMPILER_FLAGS "${_flag}")
- endif()
- endforeach()
+ message(STATUS "FindGSS krb5-config --libs: ${_gss_lib_flags}")
+
+ if(NOT _gss_configure_failed) # 0 means success
+ # This script gives us libraries and link directories.
+ string(STRIP "${_gss_lib_flags}" _gss_lib_flags)
+ string(REGEX REPLACE " +-(L|l)" ";-\\1" _gss_lib_flags "${_gss_lib_flags}")
+ string(REGEX REPLACE " +-([^Ll][^ \\t;]*)" ";-\\1" _gss_lib_flags "${_gss_lib_flags}")
+
+ foreach(_flag IN LISTS _gss_lib_flags)
+ if(_flag MATCHES "^-l")
+ string(REGEX REPLACE "^-l" "" _flag "${_flag}")
+ list(APPEND _gss_LIBRARIES "${_flag}")
+ elseif(_flag MATCHES "^-L")
+ string(REGEX REPLACE "^-L" "" _flag "${_flag}")
+ list(APPEND _gss_LIBRARY_DIRS "${_flag}")
endif()
+ endforeach()
+ endif()
- execute_process(
- COMMAND ${_GSS_CONFIGURE_SCRIPT} "--libs" "gssapi"
- OUTPUT_VARIABLE _GSS_LIB_FLAGS
- RESULT_VARIABLE _GSS_CONFIGURE_FAILED
- )
-message(STATUS "LDFLAGS: ${_GSS_LIB_FLAGS}")
- if(NOT _GSS_CONFIGURE_FAILED) # 0 means success
- # this script gives us libraries and link directories. Blah. We have to deal with it.
- string(STRIP "${_GSS_LIB_FLAGS}" _GSS_LIB_FLAGS)
- string(REGEX REPLACE " +-(L|l)" ";-\\1" _GSS_LIB_FLAGS "${_GSS_LIB_FLAGS}")
- string(REGEX REPLACE " +-([^Ll][^ \\t;]*)" ";-\\1"_GSS_LIB_FLAGS "${_GSS_LIB_FLAGS}")
-
- foreach(_flag ${_GSS_LIB_FLAGS})
- if(_flag MATCHES "^-l.*")
- string(REGEX REPLACE "^-l" "" _val "${_flag}")
- list(APPEND _GSS_LIBRARIES "${_val}")
- elseif(_flag MATCHES "^-L.*")
- string(REGEX REPLACE "^-L" "" _val "${_flag}")
- list(APPEND _GSS_LINK_DIRECTORIES "${_val}")
- else()
- list(APPEND _GSS_LINKER_FLAGS "${_flag}")
- endif()
- endforeach()
- endif()
+ execute_process(
+ COMMAND ${_gss_configure_script} "--version"
+ OUTPUT_VARIABLE _gss_version
+ RESULT_VARIABLE _gss_configure_failed
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
+ # Older versions may not have the "--version" parameter. In this case we just do not care.
+ if(_gss_configure_failed)
+ set(_gss_version 0)
+ endif()
- execute_process(
- COMMAND ${_GSS_CONFIGURE_SCRIPT} "--version"
- OUTPUT_VARIABLE _GSS_VERSION
- RESULT_VARIABLE _GSS_CONFIGURE_FAILED
- )
+ execute_process(
+ COMMAND ${_gss_configure_script} "--vendor"
+ OUTPUT_VARIABLE _gss_vendor
+ RESULT_VARIABLE _gss_configure_failed
+ OUTPUT_STRIP_TRAILING_WHITESPACE
+ )
- # older versions may not have the "--version" parameter. In this case we just don't care.
- if(_GSS_CONFIGURE_FAILED)
- set(_GSS_VERSION 0)
- endif()
+ # Older versions may not have the "--vendor" parameter. In this case we just do not care.
+ if(_gss_configure_failed)
+ set(GSS_FLAVOUR "Heimdal") # most probably, should not really matter
+ else()
+ if(_gss_vendor MATCHES "H|heimdal")
+ set(GSS_FLAVOUR "Heimdal")
+ else()
+ set(GSS_FLAVOUR "MIT")
+ endif()
+ endif()
+ else() # Either there is no config script or we are on a platform that does not provide one (Windows?)
- execute_process(
- COMMAND ${_GSS_CONFIGURE_SCRIPT} "--vendor"
- OUTPUT_VARIABLE _GSS_VENDOR
- RESULT_VARIABLE _GSS_CONFIGURE_FAILED
- )
+ find_path(_gss_INCLUDE_DIRS NAMES "gssapi/gssapi.h"
+ HINTS
+ ${_gss_root_hints}
+ PATH_SUFFIXES
+ "include"
+ "inc"
+ )
- # older versions may not have the "--vendor" parameter. In this case we just don't care.
- if(_GSS_CONFIGURE_FAILED)
- set(GSS_FLAVOUR "Heimdal") # most probably, shouldn't really matter
- else()
- if(_GSS_VENDOR MATCHES ".*H|heimdal.*")
- set(GSS_FLAVOUR "Heimdal")
- else()
- set(GSS_FLAVOUR "MIT")
- endif()
- endif()
+ if(_gss_INCLUDE_DIRS) # jay, we have found something
+ cmake_push_check_state()
+ list(APPEND CMAKE_REQUIRED_INCLUDES "${_gss_INCLUDE_DIRS}")
+ check_include_files("gssapi/gssapi_generic.h;gssapi/gssapi_krb5.h" _gss_have_mit_headers)
- else() # either there is no config script or we are on platform that doesn't provide one (Windows?)
+ if(_gss_have_mit_headers)
+ set(GSS_FLAVOUR "MIT")
+ else()
+ # Prevent compiling the header - just check if we can include it
+ list(APPEND CMAKE_REQUIRED_DEFINITIONS "-D__ROKEN_H__")
+ check_include_file("roken.h" _gss_have_roken_h)
+
+ check_include_file("heimdal/roken.h" _gss_have_heimdal_roken_h)
+ if(_gss_have_roken_h OR _gss_have_heimdal_roken_h)
+ set(GSS_FLAVOUR "Heimdal")
+ endif()
+ endif()
+ cmake_pop_check_state()
+ else()
+ # I am not convinced if this is the right way but this is what autotools do at the moment
+ find_path(_gss_INCLUDE_DIRS NAMES "gssapi.h"
+ HINTS
+ ${_gss_root_hints}
+ PATH_SUFFIXES
+ "include"
+ "inc"
+ )
- find_path(_GSS_INCLUDE_DIR
- NAMES
- "gssapi/gssapi.h"
- HINTS
- ${_GSS_ROOT_HINTS}
- PATH_SUFFIXES
- include
- inc
+ if(_gss_INCLUDE_DIRS)
+ set(GSS_FLAVOUR "Heimdal")
+ else()
+ find_path(_gss_INCLUDE_DIRS NAMES "gss.h"
+ HINTS
+ ${_gss_root_hints}
+ PATH_SUFFIXES
+ "include"
)
- if(_GSS_INCLUDE_DIR) #jay, we've found something
- set(CMAKE_REQUIRED_INCLUDES "${_GSS_INCLUDE_DIR}")
- check_include_files( "gssapi/gssapi_generic.h;gssapi/gssapi_krb5.h" _GSS_HAVE_MIT_HEADERS)
-
- if(_GSS_HAVE_MIT_HEADERS)
- set(GSS_FLAVOUR "MIT")
- else()
- # prevent compiling the header - just check if we can include it
- set(CMAKE_REQUIRED_DEFINITIONS "${CMAKE_REQUIRED_DEFINITIONS} -D__ROKEN_H__")
- check_include_file( "roken.h" _GSS_HAVE_ROKEN_H)
-
- check_include_file( "heimdal/roken.h" _GSS_HAVE_HEIMDAL_ROKEN_H)
- if(_GSS_HAVE_ROKEN_H OR _GSS_HAVE_HEIMDAL_ROKEN_H)
- set(GSS_FLAVOUR "Heimdal")
- endif()
- set(CMAKE_REQUIRED_DEFINITIONS "")
- endif()
- else()
- # I'm not convienced if this is the right way but this is what autotools do at the moment
- find_path(_GSS_INCLUDE_DIR
- NAMES
- "gssapi.h"
- HINTS
- ${_GSS_ROOT_HINTS}
- PATH_SUFFIXES
- include
- inc
- )
-
- if(_GSS_INCLUDE_DIR)
- set(GSS_FLAVOUR "Heimdal")
- endif()
+ if(_gss_INCLUDE_DIRS)
+ set(GSS_FLAVOUR "GNU")
+ set(GSS_PC_REQUIRES "gss")
endif()
+ endif()
+ endif()
- # if we have headers, check if we can link libraries
- if(GSS_FLAVOUR)
- set(_GSS_LIBDIR_SUFFIXES "")
- set(_GSS_LIBDIR_HINTS ${_GSS_ROOT_HINTS})
- get_filename_component(_GSS_CALCULATED_POTENTIAL_ROOT "${_GSS_INCLUDE_DIR}" PATH)
- list(APPEND _GSS_LIBDIR_HINTS ${_GSS_CALCULATED_POTENTIAL_ROOT})
-
- if(WIN32)
- if(CMAKE_SIZEOF_VOID_P EQUAL 8)
- list(APPEND _GSS_LIBDIR_SUFFIXES "lib/AMD64")
- if(GSS_FLAVOUR STREQUAL "MIT")
- set(_GSS_LIBNAME "gssapi64")
- else()
- set(_GSS_LIBNAME "libgssapi")
- endif()
- else()
- list(APPEND _GSS_LIBDIR_SUFFIXES "lib/i386")
- if(GSS_FLAVOUR STREQUAL "MIT")
- set(_GSS_LIBNAME "gssapi32")
- else()
- set(_GSS_LIBNAME "libgssapi")
- endif()
- endif()
- else()
- list(APPEND _GSS_LIBDIR_SUFFIXES "lib;lib64") # those suffixes are not checked for HINTS
- if(GSS_FLAVOUR STREQUAL "MIT")
- set(_GSS_LIBNAME "gssapi_krb5")
- else()
- set(_GSS_LIBNAME "gssapi")
- endif()
- endif()
-
- find_library(_GSS_LIBRARIES
- NAMES
- ${_GSS_LIBNAME}
- HINTS
- ${_GSS_LIBDIR_HINTS}
- PATH_SUFFIXES
- ${_GSS_LIBDIR_SUFFIXES}
- )
+ # If we have headers, check if we can link libraries
+ if(GSS_FLAVOUR)
+ set(_gss_libdir_suffixes "")
+ set(_gss_libdir_hints ${_gss_root_hints})
+ get_filename_component(_gss_calculated_potential_root "${_gss_INCLUDE_DIRS}" DIRECTORY)
+ list(APPEND _gss_libdir_hints ${_gss_calculated_potential_root})
+ if(WIN32)
+ if(CMAKE_SIZEOF_VOID_P EQUAL 8)
+ list(APPEND _gss_libdir_suffixes "lib/AMD64")
+ if(GSS_FLAVOUR STREQUAL "GNU")
+ set(_gss_libname "gss")
+ elseif(GSS_FLAVOUR STREQUAL "MIT")
+ set(_gss_libname "gssapi64")
+ else()
+ set(_gss_libname "libgssapi")
+ endif()
+ else()
+ list(APPEND _gss_libdir_suffixes "lib/i386")
+ if(GSS_FLAVOUR STREQUAL "GNU")
+ set(_gss_libname "gss")
+ elseif(GSS_FLAVOUR STREQUAL "MIT")
+ set(_gss_libname "gssapi32")
+ else()
+ set(_gss_libname "libgssapi")
+ endif()
+ endif()
+ else()
+ list(APPEND _gss_libdir_suffixes "lib;lib64") # those suffixes are not checked for HINTS
+ if(GSS_FLAVOUR STREQUAL "GNU")
+ set(_gss_libname "gss")
+ elseif(GSS_FLAVOUR STREQUAL "MIT")
+ set(_gss_libname "gssapi_krb5")
+ else()
+ set(_gss_libname "gssapi")
endif()
+ endif()
+ find_library(_gss_LIBRARIES NAMES ${_gss_libname}
+ HINTS
+ ${_gss_libdir_hints}
+ PATH_SUFFIXES
+ ${_gss_libdir_suffixes}
+ )
endif()
+ endif()
else()
- if(_GSS_PKG_${_MIT_MODNAME}_VERSION)
- set(GSS_FLAVOUR "MIT")
- set(_GSS_VERSION _GSS_PKG_${_MIT_MODNAME}_VERSION)
- else()
- set(GSS_FLAVOUR "Heimdal")
- set(_GSS_VERSION _GSS_PKG_${_MIT_HEIMDAL}_VERSION)
+ # _gss_MODULE_NAME set since CMake 3.16
+ if(_gss_MODULE_NAME STREQUAL _gnu_modname OR _gss_${_gnu_modname}_VERSION)
+ set(GSS_FLAVOUR "GNU")
+ set(GSS_PC_REQUIRES "gss")
+ if(NOT _gss_version) # for old CMake versions?
+ set(_gss_version ${_gss_${_gnu_modname}_VERSION})
+ endif()
+ elseif(_gss_MODULE_NAME STREQUAL _mit_modname OR _gss_${_mit_modname}_VERSION)
+ set(GSS_FLAVOUR "MIT")
+ set(GSS_PC_REQUIRES "mit-krb5-gssapi")
+ if(NOT _gss_version) # for old CMake versions?
+ set(_gss_version ${_gss_${_mit_modname}_VERSION})
endif()
+ else()
+ set(GSS_FLAVOUR "Heimdal")
+ set(GSS_PC_REQUIRES "heimdal-gssapi")
+ if(NOT _gss_version) # for old CMake versions?
+ set(_gss_version ${_gss_${_heimdal_modname}_VERSION})
+ endif()
+ endif()
+ message(STATUS "Found GSS/${GSS_FLAVOUR} (via pkg-config): ${_gss_INCLUDE_DIRS} (found version \"${_gss_version}\")")
endif()
-set(GSS_INCLUDE_DIR ${_GSS_INCLUDE_DIR})
-set(GSS_LIBRARIES ${_GSS_LIBRARIES})
-set(GSS_LINK_DIRECTORIES ${_GSS_LINK_DIRECTORIES})
-set(GSS_LINKER_FLAGS ${_GSS_LINKER_FLAGS})
-set(GSS_COMPILER_FLAGS ${_GSS_COMPILER_FLAGS})
-set(GSS_VERSION ${_GSS_VERSION})
+string(REPLACE ";" " " _gss_CFLAGS "${_gss_CFLAGS}")
-if(GSS_FLAVOUR)
+set(GSS_INCLUDE_DIRS ${_gss_INCLUDE_DIRS})
+set(GSS_LIBRARIES ${_gss_LIBRARIES})
+set(GSS_LIBRARY_DIRS ${_gss_LIBRARY_DIRS})
+set(GSS_CFLAGS ${_gss_CFLAGS})
+set(GSS_VERSION ${_gss_version})
- if(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "Heimdal")
- if(CMAKE_SIZEOF_VOID_P EQUAL 8)
- set(HEIMDAL_MANIFEST_FILE "Heimdal.Application.amd64.manifest")
- else()
- set(HEIMDAL_MANIFEST_FILE "Heimdal.Application.x86.manifest")
- endif()
+if(GSS_FLAVOUR)
+ if(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "Heimdal")
+ if(CMAKE_SIZEOF_VOID_P EQUAL 8)
+ set(_heimdal_manifest_file "Heimdal.Application.amd64.manifest")
+ else()
+ set(_heimdal_manifest_file "Heimdal.Application.x86.manifest")
+ endif()
- if(EXISTS "${GSS_INCLUDE_DIR}/${HEIMDAL_MANIFEST_FILE}")
- file(STRINGS "${GSS_INCLUDE_DIR}/${HEIMDAL_MANIFEST_FILE}" heimdal_version_str
- REGEX "^.*version=\"[0-9]\\.[^\"]+\".*$")
+ if(EXISTS "${GSS_INCLUDE_DIRS}/${_heimdal_manifest_file}")
+ file(STRINGS "${GSS_INCLUDE_DIRS}/${_heimdal_manifest_file}" _heimdal_version_str
+ REGEX "^.*version=\"[0-9]\\.[^\"]+\".*$")
- string(REGEX MATCH "[0-9]\\.[^\"]+"
- GSS_VERSION "${heimdal_version_str}")
- endif()
+ string(REGEX MATCH "[0-9]\\.[^\"]+" GSS_VERSION "${_heimdal_version_str}")
+ endif()
- if(NOT GSS_VERSION)
- set(GSS_VERSION "Heimdal Unknown")
- endif()
- elseif(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "MIT")
- get_filename_component(_MIT_VERSION "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos\\SDK\\CurrentVersion;VersionString]" NAME CACHE)
- if(WIN32 AND _MIT_VERSION)
- set(GSS_VERSION "${_MIT_VERSION}")
- else()
- set(GSS_VERSION "MIT Unknown")
- endif()
+ if(NOT GSS_VERSION)
+ set(GSS_VERSION "Heimdal Unknown")
+ endif()
+ elseif(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "MIT")
+ get_filename_component(_mit_version "[HKEY_LOCAL_MACHINE\\SOFTWARE\\MIT\\Kerberos\\SDK\\CurrentVersion;VersionString]" NAME
+ CACHE)
+ if(WIN32 AND _mit_version)
+ set(GSS_VERSION "${_mit_version}")
+ else()
+ set(GSS_VERSION "MIT Unknown")
+ endif()
+ elseif(NOT GSS_VERSION AND GSS_FLAVOUR STREQUAL "GNU")
+ if(GSS_INCLUDE_DIRS AND EXISTS "${GSS_INCLUDE_DIRS}/gss.h")
+ set(_version_regex "#[\t ]*define[\t ]+GSS_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${GSS_INCLUDE_DIRS}/gss.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(GSS_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
endif()
+ endif()
endif()
-
include(FindPackageHandleStandardArgs)
-
-set(_GSS_REQUIRED_VARS GSS_LIBRARIES GSS_FLAVOUR)
-
find_package_handle_standard_args(GSS
- REQUIRED_VARS
- ${_GSS_REQUIRED_VARS}
- VERSION_VAR
- GSS_VERSION
- FAIL_MESSAGE
- "Could NOT find GSS, try to set the path to GSS root folder in the system variable GSS_ROOT_DIR"
+ REQUIRED_VARS
+ GSS_FLAVOUR
+ GSS_LIBRARIES
+ VERSION_VAR
+ GSS_VERSION
+ FAIL_MESSAGE
+ "Could NOT find GSS, try to set the path to GSS root folder in the system variable GSS_ROOT_DIR"
)
-mark_as_advanced(GSS_INCLUDE_DIR GSS_LIBRARIES)
+mark_as_advanced(
+ _gss_CFLAGS
+ _gss_FOUND
+ _gss_INCLUDE_DIRS
+ _gss_LIBRARIES
+ _gss_LIBRARY_DIRS
+ _gss_MODULE_NAME
+ _gss_PREFIX
+ _gss_version
+)
diff --git a/curl/CMake/FindLDAP.cmake b/curl/CMake/FindLDAP.cmake
new file mode 100644
index 000000000..fdc6d7be9
--- /dev/null
+++ b/curl/CMake/FindLDAP.cmake
@@ -0,0 +1,107 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the ldap library
+#
+# Input variables:
+#
+# - `LDAP_INCLUDE_DIR`: The ldap include directory.
+# - `LDAP_LIBRARY`: Path to `ldap` library.
+# - `LDAP_LBER_LIBRARY`: Path to `lber` library.
+#
+# Result variables:
+#
+# - `LDAP_FOUND`: System has ldap.
+# - `LDAP_INCLUDE_DIRS`: The ldap include directories.
+# - `LDAP_LIBRARIES`: The ldap library names.
+# - `LDAP_LIBRARY_DIRS`: The ldap library directories.
+# - `LDAP_PC_REQUIRES`: The ldap pkg-config packages.
+# - `LDAP_CFLAGS`: Required compiler flags.
+# - `LDAP_VERSION`: Version of ldap.
+
+set(LDAP_PC_REQUIRES "ldap" "lber")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LDAP_INCLUDE_DIR AND
+ NOT DEFINED LDAP_LIBRARY AND
+ NOT DEFINED LDAP_LBER_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LDAP ${LDAP_PC_REQUIRES})
+endif()
+
+if(LDAP_FOUND)
+ set(LDAP_VERSION "${LDAP_ldap_VERSION}")
+ string(REPLACE ";" " " LDAP_CFLAGS "${LDAP_CFLAGS}")
+ message(STATUS "Found LDAP (via pkg-config): ${LDAP_INCLUDE_DIRS} (found version \"${LDAP_VERSION}\")")
+else()
+ set(LDAP_PC_REQUIRES "") # Depend on pkg-config only when found via pkg-config
+
+ # On Apple the SDK LDAP gets picked up from
+ # 'MacOSX.sdk/System/Library/Frameworks/LDAP.framework/Headers', which contains
+ # ldap.h and lber.h both being stubs to include and .
+ # This causes an infinite inclusion loop in compile. Also do this for libraries
+ # to avoid picking up the 'ldap.framework' with a full path.
+ set(_save_cmake_system_framework_path ${CMAKE_SYSTEM_FRAMEWORK_PATH})
+ set(CMAKE_SYSTEM_FRAMEWORK_PATH "")
+ find_path(LDAP_INCLUDE_DIR NAMES "ldap.h")
+ find_library(LDAP_LIBRARY NAMES "ldap")
+ find_library(LDAP_LBER_LIBRARY NAMES "lber")
+ set(CMAKE_SYSTEM_FRAMEWORK_PATH ${_save_cmake_system_framework_path})
+
+ unset(LDAP_VERSION CACHE)
+ if(LDAP_INCLUDE_DIR AND EXISTS "${LDAP_INCLUDE_DIR}/ldap_features.h")
+ set(_version_regex1 "#[\t ]*define[\t ]+LDAP_VENDOR_VERSION_MAJOR[\t ]+([0-9]+).*")
+ set(_version_regex2 "#[\t ]*define[\t ]+LDAP_VENDOR_VERSION_MINOR[\t ]+([0-9]+).*")
+ set(_version_regex3 "#[\t ]*define[\t ]+LDAP_VENDOR_VERSION_PATCH[\t ]+([0-9]+).*")
+ file(STRINGS "${LDAP_INCLUDE_DIR}/ldap_features.h" _version_str1 REGEX "${_version_regex1}")
+ file(STRINGS "${LDAP_INCLUDE_DIR}/ldap_features.h" _version_str2 REGEX "${_version_regex2}")
+ file(STRINGS "${LDAP_INCLUDE_DIR}/ldap_features.h" _version_str3 REGEX "${_version_regex3}")
+ string(REGEX REPLACE "${_version_regex1}" "\\1" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "${_version_regex2}" "\\1" _version_str2 "${_version_str2}")
+ string(REGEX REPLACE "${_version_regex3}" "\\1" _version_str3 "${_version_str3}")
+ set(LDAP_VERSION "${_version_str1}.${_version_str2}.${_version_str3}")
+ unset(_version_regex1)
+ unset(_version_regex2)
+ unset(_version_regex3)
+ unset(_version_str1)
+ unset(_version_str2)
+ unset(_version_str3)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(LDAP
+ REQUIRED_VARS
+ LDAP_INCLUDE_DIR
+ LDAP_LIBRARY
+ LDAP_LBER_LIBRARY
+ VERSION_VAR
+ LDAP_VERSION
+ )
+
+ if(LDAP_FOUND)
+ set(LDAP_INCLUDE_DIRS ${LDAP_INCLUDE_DIR})
+ set(LDAP_LIBRARIES ${LDAP_LIBRARY} ${LDAP_LBER_LIBRARY})
+ endif()
+
+ mark_as_advanced(LDAP_INCLUDE_DIR LDAP_LIBRARY LDAP_LBER_LIBRARY)
+endif()
diff --git a/curl/CMake/FindLibPSL.cmake b/curl/CMake/FindLibPSL.cmake
new file mode 100644
index 000000000..d6fde4b2d
--- /dev/null
+++ b/curl/CMake/FindLibPSL.cmake
@@ -0,0 +1,83 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the libpsl library
+#
+# Input variables:
+#
+# - `LIBPSL_INCLUDE_DIR`: The libpsl include directory.
+# - `LIBPSL_LIBRARY`: Path to `libpsl` library.
+#
+# Result variables:
+#
+# - `LIBPSL_FOUND`: System has libpsl.
+# - `LIBPSL_INCLUDE_DIRS`: The libpsl include directories.
+# - `LIBPSL_LIBRARIES`: The libpsl library names.
+# - `LIBPSL_LIBRARY_DIRS`: The libpsl library directories.
+# - `LIBPSL_PC_REQUIRES`: The libpsl pkg-config packages.
+# - `LIBPSL_CFLAGS`: Required compiler flags.
+# - `LIBPSL_VERSION`: Version of libpsl.
+
+set(LIBPSL_PC_REQUIRES "libpsl")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBPSL_INCLUDE_DIR AND
+ NOT DEFINED LIBPSL_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBPSL ${LIBPSL_PC_REQUIRES})
+endif()
+
+if(LIBPSL_FOUND AND LIBPSL_INCLUDE_DIRS)
+ set(Libpsl_FOUND TRUE)
+ string(REPLACE ";" " " LIBPSL_CFLAGS "${LIBPSL_CFLAGS}")
+ message(STATUS "Found Libpsl (via pkg-config): ${LIBPSL_INCLUDE_DIRS} (found version \"${LIBPSL_VERSION}\")")
+else()
+ find_path(LIBPSL_INCLUDE_DIR NAMES "libpsl.h")
+ find_library(LIBPSL_LIBRARY NAMES "psl" "libpsl")
+
+ unset(LIBPSL_VERSION CACHE)
+ if(LIBPSL_INCLUDE_DIR AND EXISTS "${LIBPSL_INCLUDE_DIR}/libpsl.h")
+ set(_version_regex "#[\t ]*define[\t ]+PSL_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${LIBPSL_INCLUDE_DIR}/libpsl.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(LIBPSL_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Libpsl
+ REQUIRED_VARS
+ LIBPSL_INCLUDE_DIR
+ LIBPSL_LIBRARY
+ VERSION_VAR
+ LIBPSL_VERSION
+ )
+
+ if(LIBPSL_FOUND)
+ set(LIBPSL_INCLUDE_DIRS ${LIBPSL_INCLUDE_DIR})
+ set(LIBPSL_LIBRARIES ${LIBPSL_LIBRARY})
+ endif()
+
+ mark_as_advanced(LIBPSL_INCLUDE_DIR LIBPSL_LIBRARY)
+endif()
diff --git a/curl/CMake/FindLibSSH2.cmake b/curl/CMake/FindLibSSH2.cmake
index 12a7c612b..0b81ecb3c 100644
--- a/curl/CMake/FindLibSSH2.cmake
+++ b/curl/CMake/FindLibSSH2.cmake
@@ -1,35 +1,83 @@
-# - Try to find the libssh2 library
-# Once done this will define
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
#
-# LIBSSH2_FOUND - system has the libssh2 library
-# LIBSSH2_INCLUDE_DIR - the libssh2 include directory
-# LIBSSH2_LIBRARY - the libssh2 library name
-
-if (LIBSSH2_INCLUDE_DIR AND LIBSSH2_LIBRARY)
- set(LibSSH2_FIND_QUIETLY TRUE)
-endif (LIBSSH2_INCLUDE_DIR AND LIBSSH2_LIBRARY)
-
-FIND_PATH(LIBSSH2_INCLUDE_DIR libssh2.h
-)
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the libssh2 library
+#
+# Input variables:
+#
+# - `LIBSSH2_INCLUDE_DIR`: The libssh2 include directory.
+# - `LIBSSH2_LIBRARY`: Path to `libssh2` library.
+#
+# Result variables:
+#
+# - `LIBSSH2_FOUND`: System has libssh2.
+# - `LIBSSH2_INCLUDE_DIRS`: The libssh2 include directories.
+# - `LIBSSH2_LIBRARIES`: The libssh2 library names.
+# - `LIBSSH2_LIBRARY_DIRS`: The libssh2 library directories.
+# - `LIBSSH2_PC_REQUIRES`: The libssh2 pkg-config packages.
+# - `LIBSSH2_CFLAGS`: Required compiler flags.
+# - `LIBSSH2_VERSION`: Version of libssh2.
-FIND_LIBRARY(LIBSSH2_LIBRARY NAMES ssh2
-)
+set(LIBSSH2_PC_REQUIRES "libssh2")
-if(LIBSSH2_INCLUDE_DIR)
- file(STRINGS "${LIBSSH2_INCLUDE_DIR}/libssh2.h" libssh2_version_str REGEX "^#define[\t ]+LIBSSH2_VERSION_NUM[\t ]+0x[0-9][0-9][0-9][0-9][0-9][0-9].*")
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBSSH2_INCLUDE_DIR AND
+ NOT DEFINED LIBSSH2_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBSSH2 ${LIBSSH2_PC_REQUIRES})
+endif()
- string(REGEX REPLACE "^.*LIBSSH2_VERSION_NUM[\t ]+0x([0-9][0-9]).*$" "\\1" LIBSSH2_VERSION_MAJOR "${libssh2_version_str}")
- string(REGEX REPLACE "^.*LIBSSH2_VERSION_NUM[\t ]+0x[0-9][0-9]([0-9][0-9]).*$" "\\1" LIBSSH2_VERSION_MINOR "${libssh2_version_str}")
- string(REGEX REPLACE "^.*LIBSSH2_VERSION_NUM[\t ]+0x[0-9][0-9][0-9][0-9]([0-9][0-9]).*$" "\\1" LIBSSH2_VERSION_PATCH "${libssh2_version_str}")
+if(LIBSSH2_FOUND AND LIBSSH2_INCLUDE_DIRS)
+ set(Libssh2_FOUND TRUE)
+ string(REPLACE ";" " " LIBSSH2_CFLAGS "${LIBSSH2_CFLAGS}")
+ message(STATUS "Found Libssh2 (via pkg-config): ${LIBSSH2_INCLUDE_DIRS} (found version \"${LIBSSH2_VERSION}\")")
+else()
+ find_path(LIBSSH2_INCLUDE_DIR NAMES "libssh2.h")
+ find_library(LIBSSH2_LIBRARY NAMES "ssh2" "libssh2")
- string(REGEX REPLACE "^0(.+)" "\\1" LIBSSH2_VERSION_MAJOR "${LIBSSH2_VERSION_MAJOR}")
- string(REGEX REPLACE "^0(.+)" "\\1" LIBSSH2_VERSION_MINOR "${LIBSSH2_VERSION_MINOR}")
- string(REGEX REPLACE "^0(.+)" "\\1" LIBSSH2_VERSION_PATCH "${LIBSSH2_VERSION_PATCH}")
+ unset(LIBSSH2_VERSION CACHE)
+ if(LIBSSH2_INCLUDE_DIR AND EXISTS "${LIBSSH2_INCLUDE_DIR}/libssh2.h")
+ set(_version_regex "#[\t ]*define[\t ]+LIBSSH2_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${LIBSSH2_INCLUDE_DIR}/libssh2.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(LIBSSH2_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
- set(LIBSSH2_VERSION "${LIBSSH2_VERSION_MAJOR}.${LIBSSH2_VERSION_MINOR}.${LIBSSH2_VERSION_PATCH}")
-endif(LIBSSH2_INCLUDE_DIR)
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Libssh2
+ REQUIRED_VARS
+ LIBSSH2_INCLUDE_DIR
+ LIBSSH2_LIBRARY
+ VERSION_VAR
+ LIBSSH2_VERSION
+ )
-include(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(LibSSH2 DEFAULT_MSG LIBSSH2_INCLUDE_DIR LIBSSH2_LIBRARY )
+ if(LIBSSH2_FOUND)
+ set(LIBSSH2_INCLUDE_DIRS ${LIBSSH2_INCLUDE_DIR})
+ set(LIBSSH2_LIBRARIES ${LIBSSH2_LIBRARY})
+ endif()
-MARK_AS_ADVANCED(LIBSSH2_INCLUDE_DIR LIBSSH2_LIBRARY LIBSSH2_VERSION_MAJOR LIBSSH2_VERSION_MINOR LIBSSH2_VERSION_PATCH LIBSSH2_VERSION)
+ mark_as_advanced(LIBSSH2_INCLUDE_DIR LIBSSH2_LIBRARY)
+endif()
diff --git a/curl/CMake/FindLibgsasl.cmake b/curl/CMake/FindLibgsasl.cmake
new file mode 100644
index 000000000..878d65188
--- /dev/null
+++ b/curl/CMake/FindLibgsasl.cmake
@@ -0,0 +1,83 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the libgsasl library
+#
+# Input variables:
+#
+# - `LIBGSASL_INCLUDE_DIR`: The libgsasl include directory.
+# - `LIBGSASL_LIBRARY`: Path to `libgsasl` library.
+#
+# Result variables:
+#
+# - `LIBGSASL_FOUND`: System has libgsasl.
+# - `LIBGSASL_INCLUDE_DIRS`: The libgsasl include directories.
+# - `LIBGSASL_LIBRARIES`: The libgsasl library names.
+# - `LIBGSASL_LIBRARY_DIRS`: The libgsasl library directories.
+# - `LIBGSASL_PC_REQUIRES`: The libgsasl pkg-config packages.
+# - `LIBGSASL_CFLAGS`: Required compiler flags.
+# - `LIBGSASL_VERSION`: Version of libgsasl.
+
+set(LIBGSASL_PC_REQUIRES "libgsasl")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBGSASL_INCLUDE_DIR AND
+ NOT DEFINED LIBGSASL_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBGSASL ${LIBGSASL_PC_REQUIRES})
+endif()
+
+if(LIBGSASL_FOUND)
+ set(Libgsasl_FOUND TRUE)
+ string(REPLACE ";" " " LIBGSASL_CFLAGS "${LIBGSASL_CFLAGS}")
+ message(STATUS "Found Libgsasl (via pkg-config): ${LIBGSASL_INCLUDE_DIRS} (found version \"${LIBGSASL_VERSION}\")")
+else()
+ find_path(LIBGSASL_INCLUDE_DIR NAMES "gsasl.h")
+ find_library(LIBGSASL_LIBRARY NAMES "gsasl" "libgsasl")
+
+ unset(LIBGSASL_VERSION CACHE)
+ if(LIBGSASL_INCLUDE_DIR AND EXISTS "${LIBGSASL_INCLUDE_DIR}/gsasl-version.h")
+ set(_version_regex "#[\t ]*define[\t ]+GSASL_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${LIBGSASL_INCLUDE_DIR}/gsasl-version.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(LIBGSASL_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Libgsasl
+ REQUIRED_VARS
+ LIBGSASL_INCLUDE_DIR
+ LIBGSASL_LIBRARY
+ VERSION_VAR
+ LIBGSASL_VERSION
+ )
+
+ if(LIBGSASL_FOUND)
+ set(LIBGSASL_INCLUDE_DIRS ${LIBGSASL_INCLUDE_DIR})
+ set(LIBGSASL_LIBRARIES ${LIBGSASL_LIBRARY})
+ endif()
+
+ mark_as_advanced(LIBGSASL_INCLUDE_DIR LIBGSASL_LIBRARY)
+endif()
diff --git a/curl/CMake/FindLibidn2.cmake b/curl/CMake/FindLibidn2.cmake
new file mode 100644
index 000000000..f8f00f0c7
--- /dev/null
+++ b/curl/CMake/FindLibidn2.cmake
@@ -0,0 +1,83 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the libidn2 library
+#
+# Input variables:
+#
+# - `LIBIDN2_INCLUDE_DIR`: The libidn2 include directory.
+# - `LIBIDN2_LIBRARY`: Path to `libidn2` library.
+#
+# Result variables:
+#
+# - `LIBIDN2_FOUND`: System has libidn2.
+# - `LIBIDN2_INCLUDE_DIRS`: The libidn2 include directories.
+# - `LIBIDN2_LIBRARIES`: The libidn2 library names.
+# - `LIBIDN2_LIBRARY_DIRS`: The libidn2 library directories.
+# - `LIBIDN2_PC_REQUIRES`: The libidn2 pkg-config packages.
+# - `LIBIDN2_CFLAGS`: Required compiler flags.
+# - `LIBIDN2_VERSION`: Version of libidn2.
+
+set(LIBIDN2_PC_REQUIRES "libidn2")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBIDN2_INCLUDE_DIR AND
+ NOT DEFINED LIBIDN2_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBIDN2 ${LIBIDN2_PC_REQUIRES})
+endif()
+
+if(LIBIDN2_FOUND)
+ set(Libidn2_FOUND TRUE)
+ string(REPLACE ";" " " LIBIDN2_CFLAGS "${LIBIDN2_CFLAGS}")
+ message(STATUS "Found Libidn2 (via pkg-config): ${LIBIDN2_INCLUDE_DIRS} (found version \"${LIBIDN2_VERSION}\")")
+else()
+ find_path(LIBIDN2_INCLUDE_DIR NAMES "idn2.h")
+ find_library(LIBIDN2_LIBRARY NAMES "idn2" "libidn2")
+
+ unset(LIBIDN2_VERSION CACHE)
+ if(LIBIDN2_INCLUDE_DIR AND EXISTS "${LIBIDN2_INCLUDE_DIR}/idn2.h")
+ set(_version_regex "#[\t ]*define[\t ]+IDN2_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${LIBIDN2_INCLUDE_DIR}/idn2.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(LIBIDN2_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Libidn2
+ REQUIRED_VARS
+ LIBIDN2_INCLUDE_DIR
+ LIBIDN2_LIBRARY
+ VERSION_VAR
+ LIBIDN2_VERSION
+ )
+
+ if(LIBIDN2_FOUND)
+ set(LIBIDN2_INCLUDE_DIRS ${LIBIDN2_INCLUDE_DIR})
+ set(LIBIDN2_LIBRARIES ${LIBIDN2_LIBRARY})
+ endif()
+
+ mark_as_advanced(LIBIDN2_INCLUDE_DIR LIBIDN2_LIBRARY)
+endif()
diff --git a/curl/CMake/FindLibrtmp.cmake b/curl/CMake/FindLibrtmp.cmake
new file mode 100644
index 000000000..50fc9692b
--- /dev/null
+++ b/curl/CMake/FindLibrtmp.cmake
@@ -0,0 +1,103 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the librtmp library
+#
+# Input variables:
+#
+# - `LIBRTMP_INCLUDE_DIR`: The librtmp include directory.
+# - `LIBRTMP_LIBRARY`: Path to `librtmp` library.
+#
+# Result variables:
+#
+# - `LIBRTMP_FOUND`: System has librtmp.
+# - `LIBRTMP_INCLUDE_DIRS`: The librtmp include directories.
+# - `LIBRTMP_LIBRARIES`: The librtmp library names.
+# - `LIBRTMP_LIBRARY_DIRS`: The librtmp library directories.
+# - `LIBRTMP_PC_REQUIRES`: The librtmp pkg-config packages.
+# - `LIBRTMP_CFLAGS`: Required compiler flags.
+# - `LIBRTMP_VERSION`: Version of librtmp.
+
+set(LIBRTMP_PC_REQUIRES "librtmp")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBRTMP_INCLUDE_DIR AND
+ NOT DEFINED LIBRTMP_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBRTMP ${LIBRTMP_PC_REQUIRES})
+endif()
+
+if(LIBRTMP_FOUND AND LIBRTMP_INCLUDE_DIRS)
+ set(Librtmp_FOUND TRUE)
+ string(REPLACE ";" " " LIBRTMP_CFLAGS "${LIBRTMP_CFLAGS}")
+ message(STATUS "Found Librtmp (via pkg-config): ${LIBRTMP_INCLUDE_DIRS} (found version \"${LIBRTMP_VERSION}\")")
+else()
+ find_path(LIBRTMP_INCLUDE_DIR NAMES "librtmp/rtmp.h")
+ find_library(LIBRTMP_LIBRARY NAMES "rtmp")
+
+ unset(LIBRTMP_VERSION CACHE)
+ if(LIBRTMP_INCLUDE_DIR AND EXISTS "${LIBRTMP_INCLUDE_DIR}/librtmp/rtmp.h")
+ set(_version_regex "#[\t ]*define[\t ]+RTMP_LIB_VERSION[\t ]+0x([0-9a-fA-F][0-9a-fA-F])([0-9a-fA-F][0-9a-fA-F]).*")
+ file(STRINGS "${LIBRTMP_INCLUDE_DIR}/librtmp/rtmp.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str1 "${_version_str}")
+ string(REGEX REPLACE "${_version_regex}" "\\2" _version_str2 "${_version_str}")
+ if(CMAKE_VERSION VERSION_LESS 3.13)
+ # No support for hex version numbers, just strip leading zeroes
+ string(REGEX REPLACE "^0" "" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "^0" "" _version_str2 "${_version_str2}")
+ else()
+ math(EXPR _version_str1 "0x${_version_str1}" OUTPUT_FORMAT DECIMAL)
+ math(EXPR _version_str2 "0x${_version_str2}" OUTPUT_FORMAT DECIMAL)
+ endif()
+ set(LIBRTMP_VERSION "${_version_str1}.${_version_str2}")
+ unset(_version_regex)
+ unset(_version_str1)
+ unset(_version_str2)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Librtmp
+ REQUIRED_VARS
+ LIBRTMP_INCLUDE_DIR
+ LIBRTMP_LIBRARY
+ VERSION_VAR
+ LIBRTMP_VERSION
+ )
+
+ if(LIBRTMP_FOUND)
+ set(LIBRTMP_INCLUDE_DIRS ${LIBRTMP_INCLUDE_DIR})
+ set(LIBRTMP_LIBRARIES ${LIBRTMP_LIBRARY})
+ endif()
+
+ mark_as_advanced(LIBRTMP_INCLUDE_DIR LIBRTMP_LIBRARY)
+
+ # Necessary when linking a static librtmp
+ find_package(OpenSSL)
+ if(OPENSSL_FOUND)
+ list(APPEND LIBRTMP_LIBRARIES OpenSSL::SSL OpenSSL::Crypto)
+ endif()
+endif()
+
+if(LIBRTMP_FOUND AND WIN32)
+ list(APPEND LIBRTMP_LIBRARIES "winmm")
+endif()
diff --git a/curl/CMake/FindLibssh.cmake b/curl/CMake/FindLibssh.cmake
new file mode 100644
index 000000000..e2b27d975
--- /dev/null
+++ b/curl/CMake/FindLibssh.cmake
@@ -0,0 +1,97 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the libssh library
+#
+# Input variables:
+#
+# - `LIBSSH_INCLUDE_DIR`: The libssh include directory.
+# - `LIBSSH_LIBRARY`: Path to libssh library.
+#
+# Result variables:
+#
+# - `LIBSSH_FOUND`: System has libssh.
+# - `LIBSSH_INCLUDE_DIRS`: The libssh include directories.
+# - `LIBSSH_LIBRARIES`: The libssh library names.
+# - `LIBSSH_LIBRARY_DIRS`: The libssh library directories.
+# - `LIBSSH_PC_REQUIRES`: The libssh pkg-config packages.
+# - `LIBSSH_CFLAGS`: Required compiler flags.
+# - `LIBSSH_VERSION`: Version of libssh.
+
+set(LIBSSH_PC_REQUIRES "libssh")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBSSH_INCLUDE_DIR AND
+ NOT DEFINED LIBSSH_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBSSH ${LIBSSH_PC_REQUIRES})
+endif()
+
+if(LIBSSH_FOUND)
+ set(Libssh_FOUND TRUE)
+ string(REPLACE ";" " " LIBSSH_CFLAGS "${LIBSSH_CFLAGS}")
+ message(STATUS "Found Libssh (via pkg-config): ${LIBSSH_INCLUDE_DIRS} (found version \"${LIBSSH_VERSION}\")")
+else()
+ find_path(LIBSSH_INCLUDE_DIR NAMES "libssh/libssh.h")
+ find_library(LIBSSH_LIBRARY NAMES "ssh" "libssh")
+
+ unset(LIBSSH_VERSION CACHE)
+ if(LIBSSH_INCLUDE_DIR AND EXISTS "${LIBSSH_INCLUDE_DIR}/libssh/libssh_version.h")
+ set(_version_regex1 "#[\t ]*define[\t ]+LIBSSH_VERSION_MAJOR[\t ]+([0-9]+).*")
+ set(_version_regex2 "#[\t ]*define[\t ]+LIBSSH_VERSION_MINOR[\t ]+([0-9]+).*")
+ set(_version_regex3 "#[\t ]*define[\t ]+LIBSSH_VERSION_MICRO[\t ]+([0-9]+).*")
+ file(STRINGS "${LIBSSH_INCLUDE_DIR}/libssh/libssh_version.h" _version_str1 REGEX "${_version_regex1}")
+ file(STRINGS "${LIBSSH_INCLUDE_DIR}/libssh/libssh_version.h" _version_str2 REGEX "${_version_regex2}")
+ file(STRINGS "${LIBSSH_INCLUDE_DIR}/libssh/libssh_version.h" _version_str3 REGEX "${_version_regex3}")
+ string(REGEX REPLACE "${_version_regex1}" "\\1" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "${_version_regex2}" "\\1" _version_str2 "${_version_str2}")
+ string(REGEX REPLACE "${_version_regex3}" "\\1" _version_str3 "${_version_str3}")
+ set(LIBSSH_VERSION "${_version_str1}.${_version_str2}.${_version_str3}")
+ unset(_version_regex1)
+ unset(_version_regex2)
+ unset(_version_regex3)
+ unset(_version_str1)
+ unset(_version_str2)
+ unset(_version_str3)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Libssh
+ REQUIRED_VARS
+ LIBSSH_INCLUDE_DIR
+ LIBSSH_LIBRARY
+ VERSION_VAR
+ LIBSSH_VERSION
+ )
+
+ if(LIBSSH_FOUND)
+ set(LIBSSH_INCLUDE_DIRS ${LIBSSH_INCLUDE_DIR})
+ set(LIBSSH_LIBRARIES ${LIBSSH_LIBRARY})
+ endif()
+
+ mark_as_advanced(LIBSSH_INCLUDE_DIR LIBSSH_LIBRARY)
+endif()
+
+if(LIBSSH_FOUND AND WIN32)
+ list(APPEND LIBSSH_LIBRARIES "iphlpapi") # for if_nametoindex
+endif()
diff --git a/curl/CMake/FindLibuv.cmake b/curl/CMake/FindLibuv.cmake
new file mode 100644
index 000000000..b16b3554f
--- /dev/null
+++ b/curl/CMake/FindLibuv.cmake
@@ -0,0 +1,93 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the libuv library
+#
+# Input variables:
+#
+# - `LIBUV_INCLUDE_DIR`: The libuv include directory.
+# - `LIBUV_LIBRARY`: Path to `libuv` library.
+#
+# Result variables:
+#
+# - `LIBUV_FOUND`: System has libuv.
+# - `LIBUV_INCLUDE_DIRS`: The libuv include directories.
+# - `LIBUV_LIBRARIES`: The libuv library names.
+# - `LIBUV_LIBRARY_DIRS`: The libuv library directories.
+# - `LIBUV_PC_REQUIRES`: The libuv pkg-config packages.
+# - `LIBUV_CFLAGS`: Required compiler flags.
+# - `LIBUV_VERSION`: Version of libuv.
+
+set(LIBUV_PC_REQUIRES "libuv")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED LIBUV_INCLUDE_DIR AND
+ NOT DEFINED LIBUV_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(LIBUV ${LIBUV_PC_REQUIRES})
+endif()
+
+if(LIBUV_FOUND)
+ set(Libuv_FOUND TRUE)
+ string(REPLACE ";" " " LIBUV_CFLAGS "${LIBUV_CFLAGS}")
+ message(STATUS "Found Libuv (via pkg-config): ${LIBUV_INCLUDE_DIRS} (found version \"${LIBUV_VERSION}\")")
+else()
+ find_path(LIBUV_INCLUDE_DIR NAMES "uv.h")
+ find_library(LIBUV_LIBRARY NAMES "uv" "libuv")
+
+ unset(LIBUV_VERSION CACHE)
+ if(LIBUV_INCLUDE_DIR AND EXISTS "${LIBUV_INCLUDE_DIR}/uv/version.h")
+ set(_version_regex1 "#[\t ]*define[\t ]+UV_VERSION_MAJOR[\t ]+([0-9]+).*")
+ set(_version_regex2 "#[\t ]*define[\t ]+UV_VERSION_MINOR[\t ]+([0-9]+).*")
+ set(_version_regex3 "#[\t ]*define[\t ]+UV_VERSION_PATCH[\t ]+([0-9]+).*")
+ file(STRINGS "${LIBUV_INCLUDE_DIR}/uv/version.h" _version_str1 REGEX "${_version_regex1}")
+ file(STRINGS "${LIBUV_INCLUDE_DIR}/uv/version.h" _version_str2 REGEX "${_version_regex2}")
+ file(STRINGS "${LIBUV_INCLUDE_DIR}/uv/version.h" _version_str3 REGEX "${_version_regex3}")
+ string(REGEX REPLACE "${_version_regex1}" "\\1" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "${_version_regex2}" "\\1" _version_str2 "${_version_str2}")
+ string(REGEX REPLACE "${_version_regex3}" "\\1" _version_str3 "${_version_str3}")
+ set(LIBUV_VERSION "${_version_str1}.${_version_str2}.${_version_str3}")
+ unset(_version_regex1)
+ unset(_version_regex2)
+ unset(_version_regex3)
+ unset(_version_str1)
+ unset(_version_str2)
+ unset(_version_str3)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Libuv
+ REQUIRED_VARS
+ LIBUV_INCLUDE_DIR
+ LIBUV_LIBRARY
+ VERSION_VAR
+ LIBUV_VERSION
+ )
+
+ if(LIBUV_FOUND)
+ set(LIBUV_INCLUDE_DIRS ${LIBUV_INCLUDE_DIR})
+ set(LIBUV_LIBRARIES ${LIBUV_LIBRARY})
+ endif()
+
+ mark_as_advanced(LIBUV_INCLUDE_DIR LIBUV_LIBRARY)
+endif()
diff --git a/curl/CMake/FindMSH3.cmake b/curl/CMake/FindMSH3.cmake
new file mode 100644
index 000000000..da38d4582
--- /dev/null
+++ b/curl/CMake/FindMSH3.cmake
@@ -0,0 +1,72 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the msh3 library
+#
+# Input variables:
+#
+# - `MSH3_INCLUDE_DIR`: The msh3 include directory.
+# - `MSH3_LIBRARY`: Path to `msh3` library.
+#
+# Result variables:
+#
+# - `MSH3_FOUND`: System has msh3.
+# - `MSH3_INCLUDE_DIRS`: The msh3 include directories.
+# - `MSH3_LIBRARIES`: The msh3 library names.
+# - `MSH3_LIBRARY_DIRS`: The msh3 library directories.
+# - `MSH3_PC_REQUIRES`: The msh3 pkg-config packages.
+# - `MSH3_CFLAGS`: Required compiler flags.
+# - `MSH3_VERSION`: Version of msh3.
+
+set(MSH3_PC_REQUIRES "libmsh3")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED MSH3_INCLUDE_DIR AND
+ NOT DEFINED MSH3_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(MSH3 ${MSH3_PC_REQUIRES})
+endif()
+
+if(MSH3_FOUND)
+ string(REPLACE ";" " " MSH3_CFLAGS "${MSH3_CFLAGS}")
+ message(STATUS "Found MSH3 (via pkg-config): ${MSH3_INCLUDE_DIRS} (found version \"${MSH3_VERSION}\")")
+else()
+ set(MSH3_PC_REQUIRES "") # Depend on pkg-config only when found via pkg-config
+
+ find_path(MSH3_INCLUDE_DIR NAMES "msh3.h")
+ find_library(MSH3_LIBRARY NAMES "msh3")
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(MSH3
+ REQUIRED_VARS
+ MSH3_INCLUDE_DIR
+ MSH3_LIBRARY
+ )
+
+ if(MSH3_FOUND)
+ set(MSH3_INCLUDE_DIRS ${MSH3_INCLUDE_DIR})
+ set(MSH3_LIBRARIES ${MSH3_LIBRARY})
+ endif()
+
+ mark_as_advanced(MSH3_INCLUDE_DIR MSH3_LIBRARY)
+endif()
diff --git a/curl/CMake/FindMbedTLS.cmake b/curl/CMake/FindMbedTLS.cmake
index a91639589..fcd6afb3a 100644
--- a/curl/CMake/FindMbedTLS.cmake
+++ b/curl/CMake/FindMbedTLS.cmake
@@ -1,13 +1,110 @@
-find_path(MBEDTLS_INCLUDE_DIRS mbedtls/ssl.h)
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the mbedTLS library
+#
+# Input variables:
+#
+# - `MBEDTLS_INCLUDE_DIR`: The mbedTLS include directory.
+# - `MBEDTLS_LIBRARY`: Path to `mbedtls` library.
+# - `MBEDX509_LIBRARY`: Path to `mbedx509` library.
+# - `MBEDCRYPTO_LIBRARY`: Path to `mbedcrypto` library.
+#
+# Result variables:
+#
+# - `MBEDTLS_FOUND`: System has mbedTLS.
+# - `MBEDTLS_INCLUDE_DIRS`: The mbedTLS include directories.
+# - `MBEDTLS_LIBRARIES`: The mbedTLS library names.
+# - `MBEDTLS_LIBRARY_DIRS`: The mbedTLS library directories.
+# - `MBEDTLS_PC_REQUIRES`: The mbedTLS pkg-config packages.
+# - `MBEDTLS_CFLAGS`: Required compiler flags.
+# - `MBEDTLS_VERSION`: Version of mbedTLS.
-find_library(MBEDTLS_LIBRARY mbedtls)
-find_library(MBEDX509_LIBRARY mbedx509)
-find_library(MBEDCRYPTO_LIBRARY mbedcrypto)
+if(DEFINED MBEDTLS_INCLUDE_DIRS AND NOT DEFINED MBEDTLS_INCLUDE_DIR)
+ message(WARNING "MBEDTLS_INCLUDE_DIRS is deprecated, use MBEDTLS_INCLUDE_DIR instead.")
+ set(MBEDTLS_INCLUDE_DIR "${MBEDTLS_INCLUDE_DIRS}")
+ unset(MBEDTLS_INCLUDE_DIRS)
+endif()
-set(MBEDTLS_LIBRARIES "${MBEDTLS_LIBRARY}" "${MBEDX509_LIBRARY}" "${MBEDCRYPTO_LIBRARY}")
+set(MBEDTLS_PC_REQUIRES "mbedtls" "mbedx509" "mbedcrypto")
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(MBEDTLS DEFAULT_MSG
- MBEDTLS_INCLUDE_DIRS MBEDTLS_LIBRARY MBEDX509_LIBRARY MBEDCRYPTO_LIBRARY)
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED MBEDTLS_INCLUDE_DIR AND
+ NOT DEFINED MBEDTLS_LIBRARY AND
+ NOT DEFINED MBEDX509_LIBRARY AND
+ NOT DEFINED MBEDCRYPTO_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(MBEDTLS ${MBEDTLS_PC_REQUIRES})
+endif()
-mark_as_advanced(MBEDTLS_INCLUDE_DIRS MBEDTLS_LIBRARY MBEDX509_LIBRARY MBEDCRYPTO_LIBRARY)
+if(MBEDTLS_FOUND)
+ set(MbedTLS_FOUND TRUE)
+ set(MBEDTLS_VERSION "${MBEDTLS_mbedtls_VERSION}")
+ string(REPLACE ";" " " MBEDTLS_CFLAGS "${MBEDTLS_CFLAGS}")
+ message(STATUS "Found MbedTLS (via pkg-config): ${MBEDTLS_INCLUDE_DIRS} (found version \"${MBEDTLS_VERSION}\")")
+else()
+ set(MBEDTLS_PC_REQUIRES "") # Depend on pkg-config only when found via pkg-config
+
+ find_path(MBEDTLS_INCLUDE_DIR NAMES "mbedtls/ssl.h")
+ find_library(MBEDTLS_LIBRARY NAMES "mbedtls" "libmbedtls")
+ find_library(MBEDX509_LIBRARY NAMES "mbedx509" "libmbedx509")
+ find_library(MBEDCRYPTO_LIBRARY NAMES "mbedcrypto" "libmbedcrypto")
+
+ unset(MBEDTLS_VERSION CACHE)
+ if(MBEDTLS_INCLUDE_DIR)
+ if(EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/build_info.h") # 3.x
+ set(_version_header "${MBEDTLS_INCLUDE_DIR}/mbedtls/build_info.h")
+ elseif(EXISTS "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h") # 2.x
+ set(_version_header "${MBEDTLS_INCLUDE_DIR}/mbedtls/version.h")
+ else()
+ unset(_version_header)
+ endif()
+ if(_version_header)
+ set(_version_regex "#[\t ]*define[\t ]+MBEDTLS_VERSION_STRING[\t ]+\"([0-9.]+)\"")
+ file(STRINGS "${_version_header}" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(MBEDTLS_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ unset(_version_header)
+ endif()
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(MbedTLS
+ REQUIRED_VARS
+ MBEDTLS_INCLUDE_DIR
+ MBEDTLS_LIBRARY
+ MBEDX509_LIBRARY
+ MBEDCRYPTO_LIBRARY
+ VERSION_VAR
+ MBEDTLS_VERSION
+ )
+
+ if(MBEDTLS_FOUND)
+ set(MBEDTLS_INCLUDE_DIRS ${MBEDTLS_INCLUDE_DIR})
+ set(MBEDTLS_LIBRARIES ${MBEDTLS_LIBRARY} ${MBEDX509_LIBRARY} ${MBEDCRYPTO_LIBRARY})
+ endif()
+
+ mark_as_advanced(MBEDTLS_INCLUDE_DIR MBEDTLS_LIBRARY MBEDX509_LIBRARY MBEDCRYPTO_LIBRARY)
+endif()
diff --git a/curl/CMake/FindNGHTTP2.cmake b/curl/CMake/FindNGHTTP2.cmake
index 4e566cf02..b8f37fdae 100644
--- a/curl/CMake/FindNGHTTP2.cmake
+++ b/curl/CMake/FindNGHTTP2.cmake
@@ -1,18 +1,82 @@
-include(FindPackageHandleStandardArgs)
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the nghttp2 library
+#
+# Input variables:
+#
+# - `NGHTTP2_INCLUDE_DIR`: The nghttp2 include directory.
+# - `NGHTTP2_LIBRARY`: Path to `nghttp2` library.
+#
+# Result variables:
+#
+# - `NGHTTP2_FOUND`: System has nghttp2.
+# - `NGHTTP2_INCLUDE_DIRS`: The nghttp2 include directories.
+# - `NGHTTP2_LIBRARIES`: The nghttp2 library names.
+# - `NGHTTP2_LIBRARY_DIRS`: The nghttp2 library directories.
+# - `NGHTTP2_PC_REQUIRES`: The nghttp2 pkg-config packages.
+# - `NGHTTP2_CFLAGS`: Required compiler flags.
+# - `NGHTTP2_VERSION`: Version of nghttp2.
-find_path(NGHTTP2_INCLUDE_DIR "nghttp2/nghttp2.h")
+set(NGHTTP2_PC_REQUIRES "libnghttp2")
-find_library(NGHTTP2_LIBRARY NAMES nghttp2)
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED NGHTTP2_INCLUDE_DIR AND
+ NOT DEFINED NGHTTP2_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(NGHTTP2 ${NGHTTP2_PC_REQUIRES})
+endif()
-find_package_handle_standard_args(NGHTTP2
- FOUND_VAR
- NGHTTP2_FOUND
+if(NGHTTP2_FOUND)
+ string(REPLACE ";" " " NGHTTP2_CFLAGS "${NGHTTP2_CFLAGS}")
+ message(STATUS "Found NGHTTP2 (via pkg-config): ${NGHTTP2_INCLUDE_DIRS} (found version \"${NGHTTP2_VERSION}\")")
+else()
+ find_path(NGHTTP2_INCLUDE_DIR NAMES "nghttp2/nghttp2.h")
+ find_library(NGHTTP2_LIBRARY NAMES "nghttp2" "nghttp2_static")
+
+ unset(NGHTTP2_VERSION CACHE)
+ if(NGHTTP2_INCLUDE_DIR AND EXISTS "${NGHTTP2_INCLUDE_DIR}/nghttp2/nghttp2ver.h")
+ set(_version_regex "#[\t ]*define[\t ]+NGHTTP2_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${NGHTTP2_INCLUDE_DIR}/nghttp2/nghttp2ver.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(NGHTTP2_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(NGHTTP2
REQUIRED_VARS
- NGHTTP2_LIBRARY
NGHTTP2_INCLUDE_DIR
- FAIL_MESSAGE
- "Could NOT find NGHTTP2"
-)
+ NGHTTP2_LIBRARY
+ VERSION_VAR
+ NGHTTP2_VERSION
+ )
+
+ if(NGHTTP2_FOUND)
+ set(NGHTTP2_INCLUDE_DIRS ${NGHTTP2_INCLUDE_DIR})
+ set(NGHTTP2_LIBRARIES ${NGHTTP2_LIBRARY})
+ endif()
-set(NGHTTP2_INCLUDE_DIRS ${NGHTTP2_INCLUDE_DIR} )
-set(NGHTTP2_LIBRARIES ${NGHTTP2_LIBRARY})
+ mark_as_advanced(NGHTTP2_INCLUDE_DIR NGHTTP2_LIBRARY)
+endif()
diff --git a/curl/CMake/FindNGHTTP3.cmake b/curl/CMake/FindNGHTTP3.cmake
new file mode 100644
index 000000000..99edd1995
--- /dev/null
+++ b/curl/CMake/FindNGHTTP3.cmake
@@ -0,0 +1,82 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the nghttp3 library
+#
+# Input variables:
+#
+# - `NGHTTP3_INCLUDE_DIR`: The nghttp3 include directory.
+# - `NGHTTP3_LIBRARY`: Path to `nghttp3` library.
+#
+# Result variables:
+#
+# - `NGHTTP3_FOUND`: System has nghttp3.
+# - `NGHTTP3_INCLUDE_DIRS`: The nghttp3 include directories.
+# - `NGHTTP3_LIBRARIES`: The nghttp3 library names.
+# - `NGHTTP3_LIBRARY_DIRS`: The nghttp3 library directories.
+# - `NGHTTP3_PC_REQUIRES`: The nghttp3 pkg-config packages.
+# - `NGHTTP3_CFLAGS`: Required compiler flags.
+# - `NGHTTP3_VERSION`: Version of nghttp3.
+
+set(NGHTTP3_PC_REQUIRES "libnghttp3")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED NGHTTP3_INCLUDE_DIR AND
+ NOT DEFINED NGHTTP3_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(NGHTTP3 ${NGHTTP3_PC_REQUIRES})
+endif()
+
+if(NGHTTP3_FOUND)
+ string(REPLACE ";" " " NGHTTP3_CFLAGS "${NGHTTP3_CFLAGS}")
+ message(STATUS "Found NGHTTP3 (via pkg-config): ${NGHTTP3_INCLUDE_DIRS} (found version \"${NGHTTP3_VERSION}\")")
+else()
+ find_path(NGHTTP3_INCLUDE_DIR NAMES "nghttp3/nghttp3.h")
+ find_library(NGHTTP3_LIBRARY NAMES "nghttp3")
+
+ unset(NGHTTP3_VERSION CACHE)
+ if(NGHTTP3_INCLUDE_DIR AND EXISTS "${NGHTTP3_INCLUDE_DIR}/nghttp3/version.h")
+ set(_version_regex "#[\t ]*define[\t ]+NGHTTP3_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${NGHTTP3_INCLUDE_DIR}/nghttp3/version.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(NGHTTP3_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(NGHTTP3
+ REQUIRED_VARS
+ NGHTTP3_INCLUDE_DIR
+ NGHTTP3_LIBRARY
+ VERSION_VAR
+ NGHTTP3_VERSION
+ )
+
+ if(NGHTTP3_FOUND)
+ set(NGHTTP3_INCLUDE_DIRS ${NGHTTP3_INCLUDE_DIR})
+ set(NGHTTP3_LIBRARIES ${NGHTTP3_LIBRARY})
+ endif()
+
+ mark_as_advanced(NGHTTP3_INCLUDE_DIR NGHTTP3_LIBRARY)
+endif()
diff --git a/curl/CMake/FindNGTCP2.cmake b/curl/CMake/FindNGTCP2.cmake
new file mode 100644
index 000000000..02e7652ab
--- /dev/null
+++ b/curl/CMake/FindNGTCP2.cmake
@@ -0,0 +1,128 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the ngtcp2 library
+#
+# This module accepts optional COMPONENTS to control the crypto library (these are
+# mutually exclusive):
+#
+# - quictls: Use `libngtcp2_crypto_quictls`. (choose this for LibreSSL)
+# - BoringSSL: Use `libngtcp2_crypto_boringssl`. (choose this for AWS-LC)
+# - wolfSSL: Use `libngtcp2_crypto_wolfssl`.
+# - GnuTLS: Use `libngtcp2_crypto_gnutls`.
+# - ossl: Use `libngtcp2_crypto_ossl`.
+#
+# Input variables:
+#
+# - `NGTCP2_INCLUDE_DIR`: The ngtcp2 include directory.
+# - `NGTCP2_LIBRARY`: Path to `ngtcp2` library.
+# - `NGTCP2_CRYPTO_BORINGSSL_LIBRARY`: Path to `ngtcp2_crypto_boringssl` library.
+# - `NGTCP2_CRYPTO_GNUTLS_LIBRARY`: Path to `ngtcp2_crypto_gnutls` library.
+# - `NGTCP2_CRYPTO_OSSL_LIBRARY`: Path to `ngtcp2_crypto_ossl` library.
+# - `NGTCP2_CRYPTO_QUICTLS_LIBRARY`: Path to `ngtcp2_crypto_quictls` library.
+# - `NGTCP2_CRYPTO_WOLFSSL_LIBRARY`: Path to `ngtcp2_crypto_wolfssl` library.
+#
+# Result variables:
+#
+# - `NGTCP2_FOUND`: System has ngtcp2.
+# - `NGTCP2_INCLUDE_DIRS`: The ngtcp2 include directories.
+# - `NGTCP2_LIBRARIES`: The ngtcp2 library names.
+# - `NGTCP2_LIBRARY_DIRS`: The ngtcp2 library directories.
+# - `NGTCP2_PC_REQUIRES`: The ngtcp2 pkg-config packages.
+# - `NGTCP2_CFLAGS`: Required compiler flags.
+# - `NGTCP2_VERSION`: Version of ngtcp2.
+
+if(NGTCP2_FIND_COMPONENTS)
+ set(_ngtcp2_crypto_backend "")
+ foreach(_component IN LISTS NGTCP2_FIND_COMPONENTS)
+ if(_component MATCHES "^(BoringSSL|GnuTLS|ossl|quictls|wolfSSL)")
+ if(_ngtcp2_crypto_backend)
+ message(FATAL_ERROR "NGTCP2: Only one crypto library can be selected")
+ endif()
+ set(_ngtcp2_crypto_backend ${_component})
+ endif()
+ endforeach()
+
+ if(_ngtcp2_crypto_backend)
+ string(TOLOWER "ngtcp2_crypto_${_ngtcp2_crypto_backend}" _crypto_library_lower)
+ string(TOUPPER "ngtcp2_crypto_${_ngtcp2_crypto_backend}" _crypto_library_upper)
+ endif()
+endif()
+
+set(NGTCP2_PC_REQUIRES "libngtcp2")
+if(_ngtcp2_crypto_backend)
+ list(APPEND NGTCP2_PC_REQUIRES "lib${_crypto_library_lower}")
+endif()
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED NGTCP2_INCLUDE_DIR AND
+ NOT DEFINED NGTCP2_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(NGTCP2 ${NGTCP2_PC_REQUIRES})
+endif()
+
+if(NGTCP2_FOUND)
+ set(NGTCP2_VERSION "${NGTCP2_libngtcp2_VERSION}")
+ string(REPLACE ";" " " NGTCP2_CFLAGS "${NGTCP2_CFLAGS}")
+ message(STATUS "Found NGTCP2 (via pkg-config): ${NGTCP2_INCLUDE_DIRS} (found version \"${NGTCP2_VERSION}\")")
+else()
+ find_path(NGTCP2_INCLUDE_DIR NAMES "ngtcp2/ngtcp2.h")
+ find_library(NGTCP2_LIBRARY NAMES "ngtcp2")
+
+ unset(NGTCP2_VERSION CACHE)
+ if(NGTCP2_INCLUDE_DIR AND EXISTS "${NGTCP2_INCLUDE_DIR}/ngtcp2/version.h")
+ set(_version_regex "#[\t ]*define[\t ]+NGTCP2_VERSION[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${NGTCP2_INCLUDE_DIR}/ngtcp2/version.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(NGTCP2_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ if(_ngtcp2_crypto_backend)
+ get_filename_component(_ngtcp2_library_dir "${NGTCP2_LIBRARY}" DIRECTORY)
+ find_library(${_crypto_library_upper}_LIBRARY NAMES ${_crypto_library_lower} HINTS ${_ngtcp2_library_dir})
+
+ if(${_crypto_library_upper}_LIBRARY)
+ set(NGTCP2_${_ngtcp2_crypto_backend}_FOUND TRUE)
+ set(NGTCP2_CRYPTO_LIBRARY ${${_crypto_library_upper}_LIBRARY})
+ endif()
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(NGTCP2
+ REQUIRED_VARS
+ NGTCP2_INCLUDE_DIR
+ NGTCP2_LIBRARY
+ VERSION_VAR
+ NGTCP2_VERSION
+ HANDLE_COMPONENTS
+ )
+
+ if(NGTCP2_FOUND)
+ set(NGTCP2_INCLUDE_DIRS ${NGTCP2_INCLUDE_DIR})
+ set(NGTCP2_LIBRARIES ${NGTCP2_LIBRARY} ${NGTCP2_CRYPTO_LIBRARY})
+ endif()
+
+ mark_as_advanced(NGTCP2_INCLUDE_DIR NGTCP2_LIBRARY NGTCP2_CRYPTO_LIBRARY)
+endif()
diff --git a/curl/CMake/FindNettle.cmake b/curl/CMake/FindNettle.cmake
new file mode 100644
index 000000000..c2decf6e7
--- /dev/null
+++ b/curl/CMake/FindNettle.cmake
@@ -0,0 +1,88 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the nettle library
+#
+# Input variables:
+#
+# - `NETTLE_INCLUDE_DIR`: The nettle include directory.
+# - `NETTLE_LIBRARY`: Path to `nettle` library.
+#
+# Result variables:
+#
+# - `NETTLE_FOUND`: System has nettle.
+# - `NETTLE_INCLUDE_DIRS`: The nettle include directories.
+# - `NETTLE_LIBRARIES`: The nettle library names.
+# - `NETTLE_LIBRARY_DIRS`: The nettle library directories.
+# - `NETTLE_PC_REQUIRES`: The nettle pkg-config packages.
+# - `NETTLE_CFLAGS`: Required compiler flags.
+# - `NETTLE_VERSION`: Version of nettle.
+
+set(NETTLE_PC_REQUIRES "nettle")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED NETTLE_INCLUDE_DIR AND
+ NOT DEFINED NETTLE_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(NETTLE ${NETTLE_PC_REQUIRES})
+endif()
+
+if(NETTLE_FOUND)
+ set(Nettle_FOUND TRUE)
+ string(REPLACE ";" " " NETTLE_CFLAGS "${NETTLE_CFLAGS}")
+ message(STATUS "Found Nettle (via pkg-config): ${NETTLE_INCLUDE_DIRS} (found version \"${NETTLE_VERSION}\")")
+else()
+ find_path(NETTLE_INCLUDE_DIR NAMES "nettle/sha2.h")
+ find_library(NETTLE_LIBRARY NAMES "nettle")
+
+ unset(NETTLE_VERSION CACHE)
+ if(NETTLE_INCLUDE_DIR AND EXISTS "${NETTLE_INCLUDE_DIR}/nettle/version.h")
+ set(_version_regex1 "#[\t ]*define[ \t]+NETTLE_VERSION_MAJOR[ \t]+([0-9]+).*")
+ set(_version_regex2 "#[\t ]*define[ \t]+NETTLE_VERSION_MINOR[ \t]+([0-9]+).*")
+ file(STRINGS "${NETTLE_INCLUDE_DIR}/nettle/version.h" _version_str1 REGEX "${_version_regex1}")
+ file(STRINGS "${NETTLE_INCLUDE_DIR}/nettle/version.h" _version_str2 REGEX "${_version_regex2}")
+ string(REGEX REPLACE "${_version_regex1}" "\\1" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "${_version_regex2}" "\\1" _version_str2 "${_version_str2}")
+ set(NETTLE_VERSION "${_version_str1}.${_version_str2}")
+ unset(_version_regex1)
+ unset(_version_regex2)
+ unset(_version_str1)
+ unset(_version_str2)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Nettle
+ REQUIRED_VARS
+ NETTLE_INCLUDE_DIR
+ NETTLE_LIBRARY
+ VERSION_VAR
+ NETTLE_VERSION
+ )
+
+ if(NETTLE_FOUND)
+ set(NETTLE_INCLUDE_DIRS ${NETTLE_INCLUDE_DIR})
+ set(NETTLE_LIBRARIES ${NETTLE_LIBRARY})
+ endif()
+
+ mark_as_advanced(NETTLE_INCLUDE_DIR NETTLE_LIBRARY)
+endif()
diff --git a/curl/CMake/FindQUICHE.cmake b/curl/CMake/FindQUICHE.cmake
new file mode 100644
index 000000000..6939c64e0
--- /dev/null
+++ b/curl/CMake/FindQUICHE.cmake
@@ -0,0 +1,71 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the quiche library
+#
+# Input variables:
+#
+# - `QUICHE_INCLUDE_DIR`: The quiche include directory.
+# - `QUICHE_LIBRARY`: Path to `quiche` library.
+#
+# Result variables:
+#
+# - `QUICHE_FOUND`: System has quiche.
+# - `QUICHE_INCLUDE_DIRS`: The quiche include directories.
+# - `QUICHE_LIBRARIES`: The quiche library names.
+# - `QUICHE_LIBRARY_DIRS`: The quiche library directories.
+# - `QUICHE_PC_REQUIRES`: The quiche pkg-config packages.
+# - `QUICHE_CFLAGS`: Required compiler flags.
+# - `QUICHE_VERSION`: Version of quiche.
+
+set(QUICHE_PC_REQUIRES "quiche")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED QUICHE_INCLUDE_DIR AND
+ NOT DEFINED QUICHE_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(QUICHE ${QUICHE_PC_REQUIRES})
+endif()
+
+if(QUICHE_FOUND)
+ set(Quiche_FOUND TRUE)
+ string(REPLACE ";" " " QUICHE_CFLAGS "${QUICHE_CFLAGS}")
+ message(STATUS "Found Quiche (via pkg-config): ${QUICHE_INCLUDE_DIRS} (found version \"${QUICHE_VERSION}\")")
+else()
+ find_path(QUICHE_INCLUDE_DIR NAMES "quiche.h")
+ find_library(QUICHE_LIBRARY NAMES "quiche")
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Quiche
+ REQUIRED_VARS
+ QUICHE_INCLUDE_DIR
+ QUICHE_LIBRARY
+ )
+
+ if(QUICHE_FOUND)
+ set(QUICHE_INCLUDE_DIRS ${QUICHE_INCLUDE_DIR})
+ set(QUICHE_LIBRARIES ${QUICHE_LIBRARY})
+ endif()
+
+ mark_as_advanced(QUICHE_INCLUDE_DIR QUICHE_LIBRARY)
+endif()
diff --git a/curl/CMake/FindRustls.cmake b/curl/CMake/FindRustls.cmake
new file mode 100644
index 000000000..564b08ce1
--- /dev/null
+++ b/curl/CMake/FindRustls.cmake
@@ -0,0 +1,109 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the Rustls library
+#
+# Input variables:
+#
+# - `RUSTLS_INCLUDE_DIR`: The Rustls include directory.
+# - `RUSTLS_LIBRARY`: Path to `rustls` library.
+#
+# Result variables:
+#
+# - `RUSTLS_FOUND`: System has Rustls.
+# - `RUSTLS_INCLUDE_DIRS`: The Rustls include directories.
+# - `RUSTLS_LIBRARIES`: The Rustls library names.
+# - `RUSTLS_LIBRARY_DIRS`: The Rustls library directories.
+# - `RUSTLS_PC_REQUIRES`: The Rustls pkg-config packages.
+# - `RUSTLS_CFLAGS`: Required compiler flags.
+# - `RUSTLS_VERSION`: Version of Rustls.
+
+set(RUSTLS_PC_REQUIRES "rustls")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED RUSTLS_INCLUDE_DIR AND
+ NOT DEFINED RUSTLS_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(RUSTLS ${RUSTLS_PC_REQUIRES})
+endif()
+
+if(RUSTLS_FOUND)
+ set(Rustls_FOUND TRUE)
+ string(REPLACE ";" " " RUSTLS_CFLAGS "${RUSTLS_CFLAGS}")
+ message(STATUS "Found Rustls (via pkg-config): ${RUSTLS_INCLUDE_DIRS} (found version \"${RUSTLS_VERSION}\")")
+else()
+ set(RUSTLS_PC_REQUIRES "") # Depend on pkg-config only when found via pkg-config
+
+ find_path(RUSTLS_INCLUDE_DIR NAMES "rustls.h")
+ find_library(RUSTLS_LIBRARY NAMES "rustls")
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Rustls
+ REQUIRED_VARS
+ RUSTLS_INCLUDE_DIR
+ RUSTLS_LIBRARY
+ )
+
+ if(RUSTLS_FOUND)
+ set(RUSTLS_INCLUDE_DIRS ${RUSTLS_INCLUDE_DIR})
+ set(RUSTLS_LIBRARIES ${RUSTLS_LIBRARY})
+ endif()
+
+ mark_as_advanced(RUSTLS_INCLUDE_DIR RUSTLS_LIBRARY)
+endif()
+
+if(RUSTLS_FOUND)
+ if(APPLE)
+ find_library(SECURITY_FRAMEWORK NAMES "Security")
+ mark_as_advanced(SECURITY_FRAMEWORK)
+ if(NOT SECURITY_FRAMEWORK)
+ message(FATAL_ERROR "Security framework not found")
+ endif()
+ list(APPEND RUSTLS_LIBRARIES "-framework Security")
+
+ find_library(FOUNDATION_FRAMEWORK NAMES "Foundation")
+ mark_as_advanced(FOUNDATION_FRAMEWORK)
+ if(NOT FOUNDATION_FRAMEWORK)
+ message(FATAL_ERROR "Foundation framework not found")
+ endif()
+ list(APPEND RUSTLS_LIBRARIES "-framework Foundation")
+ elseif(NOT WIN32)
+ find_library(PTHREAD_LIBRARY NAMES "pthread")
+ if(PTHREAD_LIBRARY)
+ list(APPEND RUSTLS_LIBRARIES ${PTHREAD_LIBRARY})
+ endif()
+ mark_as_advanced(PTHREAD_LIBRARY)
+
+ find_library(DL_LIBRARY NAMES "dl")
+ if(DL_LIBRARY)
+ list(APPEND RUSTLS_LIBRARIES ${DL_LIBRARY})
+ endif()
+ mark_as_advanced(DL_LIBRARY)
+
+ find_library(MATH_LIBRARY NAMES "m")
+ if(MATH_LIBRARY)
+ list(APPEND RUSTLS_LIBRARIES ${MATH_LIBRARY})
+ endif()
+ mark_as_advanced(MATH_LIBRARY)
+ endif()
+endif()
diff --git a/curl/CMake/FindWolfSSH.cmake b/curl/CMake/FindWolfSSH.cmake
new file mode 100644
index 000000000..98de656b9
--- /dev/null
+++ b/curl/CMake/FindWolfSSH.cmake
@@ -0,0 +1,65 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the wolfSSH library
+#
+# Input variables:
+#
+# - `WOLFSSH_INCLUDE_DIR`: The wolfSSH include directory.
+# - `WOLFSSH_LIBRARY`: Path to `wolfssh` library.
+#
+# Result variables:
+#
+# - `WOLFSSH_FOUND`: System has wolfSSH.
+# - `WOLFSSH_INCLUDE_DIRS`: The wolfSSH include directories.
+# - `WOLFSSH_LIBRARIES`: The wolfSSH library names.
+# - `WOLFSSH_VERSION`: Version of wolfSSH.
+
+find_path(WOLFSSH_INCLUDE_DIR NAMES "wolfssh/ssh.h")
+find_library(WOLFSSH_LIBRARY NAMES "wolfssh" "libwolfssh")
+
+unset(WOLFSSH_VERSION CACHE)
+if(WOLFSSH_INCLUDE_DIR AND EXISTS "${WOLFSSH_INCLUDE_DIR}/wolfssh/version.h")
+ set(_version_regex "#[\t ]*define[\t ]+LIBWOLFSSH_VERSION_STRING[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${WOLFSSH_INCLUDE_DIR}/wolfssh/version.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(WOLFSSH_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+endif()
+
+include(FindPackageHandleStandardArgs)
+find_package_handle_standard_args(WolfSSH
+ REQUIRED_VARS
+ WOLFSSH_INCLUDE_DIR
+ WOLFSSH_LIBRARY
+ VERSION_VAR
+ WOLFSSH_VERSION
+)
+
+if(WOLFSSH_FOUND)
+ set(WOLFSSH_INCLUDE_DIRS ${WOLFSSH_INCLUDE_DIR})
+ set(WOLFSSH_LIBRARIES ${WOLFSSH_LIBRARY})
+endif()
+
+mark_as_advanced(WOLFSSH_INCLUDE_DIR WOLFSSH_LIBRARY)
diff --git a/curl/CMake/FindWolfSSL.cmake b/curl/CMake/FindWolfSSL.cmake
new file mode 100644
index 000000000..e33fef871
--- /dev/null
+++ b/curl/CMake/FindWolfSSL.cmake
@@ -0,0 +1,100 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the wolfSSL library
+#
+# Input variables:
+#
+# - `WOLFSSL_INCLUDE_DIR`: The wolfSSL include directory.
+# - `WOLFSSL_LIBRARY`: Path to `wolfssl` library.
+#
+# Result variables:
+#
+# - `WOLFSSL_FOUND`: System has wolfSSL.
+# - `WOLFSSL_INCLUDE_DIRS`: The wolfSSL include directories.
+# - `WOLFSSL_LIBRARIES`: The wolfSSL library names.
+# - `WOLFSSL_LIBRARY_DIRS`: The wolfSSL library directories.
+# - `WOLFSSL_PC_REQUIRES`: The wolfSSL pkg-config packages.
+# - `WOLFSSL_CFLAGS`: Required compiler flags.
+# - `WOLFSSL_VERSION`: Version of wolfSSL.
+
+if(DEFINED WolfSSL_INCLUDE_DIR AND NOT DEFINED WOLFSSL_INCLUDE_DIR)
+ message(WARNING "WolfSSL_INCLUDE_DIR is deprecated, use WOLFSSL_INCLUDE_DIR instead.")
+ set(WOLFSSL_INCLUDE_DIR "${WolfSSL_INCLUDE_DIR}")
+endif()
+if(DEFINED WolfSSL_LIBRARY AND NOT DEFINED WOLFSSL_LIBRARY)
+ message(WARNING "WolfSSL_LIBRARY is deprecated, use WOLFSSL_LIBRARY instead.")
+ set(WOLFSSL_LIBRARY "${WolfSSL_LIBRARY}")
+endif()
+
+set(WOLFSSL_PC_REQUIRES "wolfssl")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED WOLFSSL_INCLUDE_DIR AND
+ NOT DEFINED WOLFSSL_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(WOLFSSL ${WOLFSSL_PC_REQUIRES})
+endif()
+
+if(WOLFSSL_FOUND)
+ set(WolfSSL_FOUND TRUE)
+ string(REPLACE ";" " " WOLFSSL_CFLAGS "${WOLFSSL_CFLAGS}")
+ message(STATUS "Found WolfSSL (via pkg-config): ${WOLFSSL_INCLUDE_DIRS} (found version \"${WOLFSSL_VERSION}\")")
+else()
+ find_path(WOLFSSL_INCLUDE_DIR NAMES "wolfssl/ssl.h")
+ find_library(WOLFSSL_LIBRARY NAMES "wolfssl")
+
+ unset(WOLFSSL_VERSION CACHE)
+ if(WOLFSSL_INCLUDE_DIR AND EXISTS "${WOLFSSL_INCLUDE_DIR}/wolfssl/version.h")
+ set(_version_regex "#[\t ]*define[\t ]+LIBWOLFSSL_VERSION_STRING[\t ]+\"([^\"]*)\"")
+ file(STRINGS "${WOLFSSL_INCLUDE_DIR}/wolfssl/version.h" _version_str REGEX "${_version_regex}")
+ string(REGEX REPLACE "${_version_regex}" "\\1" _version_str "${_version_str}")
+ set(WOLFSSL_VERSION "${_version_str}")
+ unset(_version_regex)
+ unset(_version_str)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(WolfSSL
+ REQUIRED_VARS
+ WOLFSSL_INCLUDE_DIR
+ WOLFSSL_LIBRARY
+ VERSION_VAR
+ WOLFSSL_VERSION
+ )
+
+ if(WOLFSSL_FOUND)
+ set(WOLFSSL_INCLUDE_DIRS ${WOLFSSL_INCLUDE_DIR})
+ set(WOLFSSL_LIBRARIES ${WOLFSSL_LIBRARY})
+ endif()
+
+ mark_as_advanced(WOLFSSL_INCLUDE_DIR WOLFSSL_LIBRARY)
+endif()
+
+if(WOLFSSL_FOUND AND NOT WIN32)
+ find_library(MATH_LIBRARY NAMES "m")
+ if(MATH_LIBRARY)
+ list(APPEND WOLFSSL_LIBRARIES ${MATH_LIBRARY}) # for log and pow
+ endif()
+ mark_as_advanced(MATH_LIBRARY)
+endif()
diff --git a/curl/CMake/FindZstd.cmake b/curl/CMake/FindZstd.cmake
new file mode 100644
index 000000000..0ea1fef46
--- /dev/null
+++ b/curl/CMake/FindZstd.cmake
@@ -0,0 +1,102 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Find the zstd library
+#
+# Input variables:
+#
+# - `ZSTD_INCLUDE_DIR`: The zstd include directory.
+# - `ZSTD_LIBRARY`: Path to `zstd` library.
+#
+# Result variables:
+#
+# - `ZSTD_FOUND`: System has zstd.
+# - `ZSTD_INCLUDE_DIRS`: The zstd include directories.
+# - `ZSTD_LIBRARIES`: The zstd library names.
+# - `ZSTD_LIBRARY_DIRS`: The zstd library directories.
+# - `ZSTD_PC_REQUIRES`: The zstd pkg-config packages.
+# - `ZSTD_CFLAGS`: Required compiler flags.
+# - `ZSTD_VERSION`: Version of zstd.
+
+if(DEFINED Zstd_INCLUDE_DIR AND NOT DEFINED ZSTD_INCLUDE_DIR)
+ message(WARNING "Zstd_INCLUDE_DIR is deprecated, use ZSTD_INCLUDE_DIR instead.")
+ set(ZSTD_INCLUDE_DIR "${Zstd_INCLUDE_DIR}")
+endif()
+if(DEFINED Zstd_LIBRARY AND NOT DEFINED ZSTD_LIBRARY)
+ message(WARNING "Zstd_LIBRARY is deprecated, use ZSTD_LIBRARY instead.")
+ set(ZSTD_LIBRARY "${Zstd_LIBRARY}")
+endif()
+
+set(ZSTD_PC_REQUIRES "libzstd")
+
+if(CURL_USE_PKGCONFIG AND
+ NOT DEFINED ZSTD_INCLUDE_DIR AND
+ NOT DEFINED ZSTD_LIBRARY)
+ find_package(PkgConfig QUIET)
+ pkg_check_modules(ZSTD ${ZSTD_PC_REQUIRES})
+endif()
+
+if(ZSTD_FOUND)
+ set(Zstd_FOUND TRUE)
+ string(REPLACE ";" " " ZSTD_CFLAGS "${ZSTD_CFLAGS}")
+ message(STATUS "Found Zstd (via pkg-config): ${ZSTD_INCLUDE_DIRS} (found version \"${ZSTD_VERSION}\")")
+else()
+ find_path(ZSTD_INCLUDE_DIR NAMES "zstd.h")
+ find_library(ZSTD_LIBRARY NAMES "zstd")
+
+ unset(ZSTD_VERSION CACHE)
+ if(ZSTD_INCLUDE_DIR AND EXISTS "${ZSTD_INCLUDE_DIR}/zstd.h")
+ set(_version_regex1 "#[\t ]*define[ \t]+ZSTD_VERSION_MAJOR[ \t]+([0-9]+).*")
+ set(_version_regex2 "#[\t ]*define[ \t]+ZSTD_VERSION_MINOR[ \t]+([0-9]+).*")
+ set(_version_regex3 "#[\t ]*define[ \t]+ZSTD_VERSION_RELEASE[ \t]+([0-9]+).*")
+ file(STRINGS "${ZSTD_INCLUDE_DIR}/zstd.h" _version_str1 REGEX "${_version_regex1}")
+ file(STRINGS "${ZSTD_INCLUDE_DIR}/zstd.h" _version_str2 REGEX "${_version_regex2}")
+ file(STRINGS "${ZSTD_INCLUDE_DIR}/zstd.h" _version_str3 REGEX "${_version_regex3}")
+ string(REGEX REPLACE "${_version_regex1}" "\\1" _version_str1 "${_version_str1}")
+ string(REGEX REPLACE "${_version_regex2}" "\\1" _version_str2 "${_version_str2}")
+ string(REGEX REPLACE "${_version_regex3}" "\\1" _version_str3 "${_version_str3}")
+ set(ZSTD_VERSION "${_version_str1}.${_version_str2}.${_version_str3}")
+ unset(_version_regex1)
+ unset(_version_regex2)
+ unset(_version_regex3)
+ unset(_version_str1)
+ unset(_version_str2)
+ unset(_version_str3)
+ endif()
+
+ include(FindPackageHandleStandardArgs)
+ find_package_handle_standard_args(Zstd
+ REQUIRED_VARS
+ ZSTD_INCLUDE_DIR
+ ZSTD_LIBRARY
+ VERSION_VAR
+ ZSTD_VERSION
+ )
+
+ if(ZSTD_FOUND)
+ set(ZSTD_INCLUDE_DIRS ${ZSTD_INCLUDE_DIR})
+ set(ZSTD_LIBRARIES ${ZSTD_LIBRARY})
+ endif()
+
+ mark_as_advanced(ZSTD_INCLUDE_DIR ZSTD_LIBRARY)
+endif()
diff --git a/curl/CMake/Macros.cmake b/curl/CMake/Macros.cmake
index 82aadca9d..710df7011 100644
--- a/curl/CMake/Macros.cmake
+++ b/curl/CMake/Macros.cmake
@@ -1,124 +1,174 @@
-#File defines convenience macros for available feature testing
-
-# This macro checks if the symbol exists in the library and if it
-# does, it prepends library to the list. It is intended to be called
-# multiple times with a sequence of possibly dependent libraries in
-# order of least-to-most-dependent. Some libraries depend on others
-# to link correctly.
-macro(CHECK_LIBRARY_EXISTS_CONCAT LIBRARY SYMBOL VARIABLE)
- check_library_exists("${LIBRARY};${CURL_LIBS}" ${SYMBOL} "${CMAKE_LIBRARY_PATH}"
- ${VARIABLE})
- if(${VARIABLE})
- set(CURL_LIBS ${LIBRARY} ${CURL_LIBS})
- endif(${VARIABLE})
-endmacro(CHECK_LIBRARY_EXISTS_CONCAT)
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# File defines convenience macros for available feature testing
# Check if header file exists and add it to the list.
# This macro is intended to be called multiple times with a sequence of
# possibly dependent header files. Some headers depend on others to be
# compiled correctly.
-macro(CHECK_INCLUDE_FILE_CONCAT FILE VARIABLE)
- check_include_files("${CURL_INCLUDES};${FILE}" ${VARIABLE})
- if(${VARIABLE})
- set(CURL_INCLUDES ${CURL_INCLUDES} ${FILE})
- set(CURL_TEST_DEFINES "${CURL_TEST_DEFINES} -D${VARIABLE}")
- endif(${VARIABLE})
-endmacro(CHECK_INCLUDE_FILE_CONCAT)
+macro(check_include_file_concat_curl _file _variable)
+ check_include_files("${CURL_INCLUDES};${_file}" ${_variable})
+ if(${_variable})
+ list(APPEND CURL_INCLUDES ${_file})
+ endif()
+endmacro()
+
+set(CURL_TEST_DEFINES "") # Initialize global variable
# For other curl specific tests, use this macro.
-macro(CURL_INTERNAL_TEST CURL_TEST)
- if(NOT DEFINED "${CURL_TEST}")
- set(MACRO_CHECK_FUNCTION_DEFINITIONS
- "-D${CURL_TEST} ${CURL_TEST_DEFINES} ${CMAKE_REQUIRED_FLAGS}")
+# Return result in variable: CURL_TEST_OUTPUT
+macro(curl_internal_test _curl_test)
+ if(NOT DEFINED "${_curl_test}")
+ string(REPLACE ";" " " _cmake_required_definitions "${CMAKE_REQUIRED_DEFINITIONS}")
+ set(_curl_test_add_libraries "")
if(CMAKE_REQUIRED_LIBRARIES)
- set(CURL_TEST_ADD_LIBRARIES
+ set(_curl_test_add_libraries
"-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}")
- endif(CMAKE_REQUIRED_LIBRARIES)
-
- message(STATUS "Performing Curl Test ${CURL_TEST}")
- try_compile(${CURL_TEST}
- ${CMAKE_BINARY_DIR}
- ${CMAKE_CURRENT_SOURCE_DIR}/CMake/CurlTests.c
- CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
- "${CURL_TEST_ADD_LIBRARIES}"
- OUTPUT_VARIABLE OUTPUT)
- if(${CURL_TEST})
- set(${CURL_TEST} 1 CACHE INTERNAL "Curl test ${FUNCTION}")
- message(STATUS "Performing Curl Test ${CURL_TEST} - Success")
- file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
- "Performing Curl Test ${CURL_TEST} passed with the following output:\n"
- "${OUTPUT}\n")
- else(${CURL_TEST})
- message(STATUS "Performing Curl Test ${CURL_TEST} - Failed")
- set(${CURL_TEST} "" CACHE INTERNAL "Curl test ${FUNCTION}")
- file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
- "Performing Curl Test ${CURL_TEST} failed with the following output:\n"
- "${OUTPUT}\n")
- endif(${CURL_TEST})
+ endif()
+
+ message(STATUS "Performing Test ${_curl_test}")
+ try_compile(${_curl_test}
+ ${PROJECT_BINARY_DIR}
+ "${CMAKE_CURRENT_SOURCE_DIR}/CMake/CurlTests.c"
+ CMAKE_FLAGS
+ "-DCOMPILE_DEFINITIONS:STRING=-D${_curl_test} ${CURL_TEST_DEFINES} ${CMAKE_REQUIRED_FLAGS} ${_cmake_required_definitions}"
+ "${_curl_test_add_libraries}"
+ OUTPUT_VARIABLE CURL_TEST_OUTPUT)
+ if(${_curl_test})
+ set(${_curl_test} 1 CACHE INTERNAL "Curl test")
+ message(STATUS "Performing Test ${_curl_test} - Success")
+ else()
+ set(${_curl_test} "" CACHE INTERNAL "Curl test")
+ message(STATUS "Performing Test ${_curl_test} - Failed")
+ endif()
endif()
-endmacro(CURL_INTERNAL_TEST)
+endmacro()
-macro(CURL_INTERNAL_TEST_RUN CURL_TEST)
- if(NOT DEFINED "${CURL_TEST}_COMPILE")
- set(MACRO_CHECK_FUNCTION_DEFINITIONS
- "-D${CURL_TEST} ${CMAKE_REQUIRED_FLAGS}")
- if(CMAKE_REQUIRED_LIBRARIES)
- set(CURL_TEST_ADD_LIBRARIES
- "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}")
- endif(CMAKE_REQUIRED_LIBRARIES)
-
- message(STATUS "Performing Curl Test ${CURL_TEST}")
- try_run(${CURL_TEST} ${CURL_TEST}_COMPILE
- ${CMAKE_BINARY_DIR}
- ${CMAKE_CURRENT_SOURCE_DIR}/CMake/CurlTests.c
- CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_FUNCTION_DEFINITIONS}
- "${CURL_TEST_ADD_LIBRARIES}"
- OUTPUT_VARIABLE OUTPUT)
- if(${CURL_TEST}_COMPILE AND NOT ${CURL_TEST})
- set(${CURL_TEST} 1 CACHE INTERNAL "Curl test ${FUNCTION}")
- message(STATUS "Performing Curl Test ${CURL_TEST} - Success")
- else(${CURL_TEST}_COMPILE AND NOT ${CURL_TEST})
- message(STATUS "Performing Curl Test ${CURL_TEST} - Failed")
- set(${CURL_TEST} "" CACHE INTERNAL "Curl test ${FUNCTION}")
- file(APPEND "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
- "Performing Curl Test ${CURL_TEST} failed with the following output:\n"
- "${OUTPUT}")
- if(${CURL_TEST}_COMPILE)
- file(APPEND
- "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
- "There was a problem running this test\n")
- endif(${CURL_TEST}_COMPILE)
- file(APPEND "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log"
- "\n\n")
- endif(${CURL_TEST}_COMPILE AND NOT ${CURL_TEST})
+# Option for dependencies that accepts an 'AUTO' value, which enables the dependency if detected.
+macro(curl_dependency_option _option_name _find_name _desc_name)
+ set(${_option_name} "AUTO" CACHE STRING "Build curl with ${_desc_name} support (AUTO, ON or OFF)")
+ set_property(CACHE ${_option_name} PROPERTY STRINGS "AUTO" "ON" "OFF")
+
+ if(${_option_name} STREQUAL "AUTO")
+ find_package(${_find_name})
+ elseif(${_option_name})
+ find_package(${_find_name} REQUIRED)
+ endif()
+endmacro()
+
+# Convert the passed paths to libpath linker options and add them to CMAKE_REQUIRED_*.
+macro(curl_required_libpaths _libpaths_arg)
+ if(CMAKE_VERSION VERSION_LESS 3.31)
+ set(_libpaths "${_libpaths_arg}")
+ foreach(_libpath IN LISTS _libpaths)
+ list(APPEND CMAKE_REQUIRED_LINK_OPTIONS "${CMAKE_LIBRARY_PATH_FLAG}${_libpath}")
+ endforeach()
+ else()
+ list(APPEND CMAKE_REQUIRED_LINK_DIRECTORIES "${_libpaths_arg}")
+ endif()
+endmacro()
+
+# Pre-fill variables set by a check_type_size() call.
+macro(curl_prefill_type_size _type _size)
+ set(HAVE_SIZEOF_${_type} TRUE)
+ set(SIZEOF_${_type} ${_size})
+ set(SIZEOF_${_type}_CODE "#define SIZEOF_${_type} ${_size}")
+endmacro()
+
+# Internal: Recurse into target libraries and collect their include directories
+# and macro definitions.
+macro(curl_collect_target_options _target)
+ get_target_property(_val ${_target} INTERFACE_INCLUDE_DIRECTORIES)
+ if(_val)
+ list(APPEND _includes ${_val})
+ endif()
+ get_target_property(_val ${_target} INCLUDE_DIRECTORIES)
+ if(_val)
+ list(APPEND _includes ${_val})
endif()
-endmacro(CURL_INTERNAL_TEST_RUN)
-
-macro(CURL_NROFF_CHECK)
- find_program(NROFF NAMES gnroff nroff)
- if(NROFF)
- # Need a way to write to stdin, this will do
- file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/nroff-input.txt" "test")
- # Tests for a valid nroff option to generate a manpage
- foreach(_MANOPT "-man" "-mandoc")
- execute_process(COMMAND "${NROFF}" ${_MANOPT}
- OUTPUT_VARIABLE NROFF_MANOPT_OUTPUT
- INPUT_FILE "${CMAKE_CURRENT_BINARY_DIR}/nroff-input.txt"
- ERROR_QUIET)
- # Save the option if it was valid
- if(NROFF_MANOPT_OUTPUT)
- message("Found *nroff option: -- ${_MANOPT}")
- set(NROFF_MANOPT ${_MANOPT})
- set(NROFF_USEFUL ON)
- break()
+ get_target_property(_val ${_target} COMPILE_DEFINITIONS)
+ if(_val)
+ list(APPEND _definitions ${_val})
+ endif()
+ get_target_property(_val ${_target} LINK_LIBRARIES)
+ if(_val)
+ foreach(_lib IN LISTS _val)
+ if(TARGET "${_lib}")
+ curl_collect_target_options(${_lib})
endif()
endforeach()
- # No need for the temporary file
- file(REMOVE "${CMAKE_CURRENT_BINARY_DIR}/nroff-input.txt")
- if(NOT NROFF_USEFUL)
- message(WARNING "Found no *nroff option to get plaintext from man pages")
+ endif()
+ unset(_val)
+endmacro()
+
+# Create a clang-tidy target for test targets
+macro(curl_add_clang_tidy_test_target _target_clang_tidy _target)
+ if(CURL_CLANG_TIDY)
+
+ set(_includes "")
+ set(_definitions "")
+
+ # Collect header directories and macro definitions applying to the directory
+ get_directory_property(_val INCLUDE_DIRECTORIES)
+ if(_val)
+ list(APPEND _includes ${_val})
endif()
- else()
- message(WARNING "Found no *nroff program")
+ get_directory_property(_val COMPILE_DEFINITIONS)
+ if(_val)
+ list(APPEND _definitions ${_val})
+ endif()
+ unset(_val)
+
+ # Collect header directories and macro definitions from lib dependencies
+ curl_collect_target_options(${_target})
+
+ list(REMOVE_ITEM _includes "")
+ string(REPLACE ";" ";-I" _includes ";${_includes}")
+ list(REMOVE_DUPLICATES _includes)
+
+ list(REMOVE_ITEM _definitions "")
+ string(REPLACE ";" ";-D" _definitions ";${_definitions}")
+ list(REMOVE_DUPLICATES _definitions)
+ list(SORT _definitions) # Sort like CMake does
+
+ # Assemble source list
+ set(_sources "")
+ foreach(_source IN ITEMS ${ARGN})
+ if(NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/${_source}") # if not in source tree
+ set(_source "${CMAKE_CURRENT_BINARY_DIR}/${_source}") # look in the build tree, for generated files, e.g. lib1521.c
+ endif()
+ list(APPEND _sources "${_source}")
+ endforeach()
+
+ add_custom_target(${_target_clang_tidy} USES_TERMINAL
+ WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}"
+ COMMAND ${CMAKE_C_CLANG_TIDY} ${_sources} -- ${_includes} ${_definitions}
+ DEPENDS ${_sources})
+ add_dependencies(tests-clang-tidy ${_target_clang_tidy})
+
+ unset(_includes)
+ unset(_definitions)
+ unset(_sources)
endif()
-endmacro(CURL_NROFF_CHECK)
+endmacro()
diff --git a/curl/CMake/OtherTests.cmake b/curl/CMake/OtherTests.cmake
index 989f04eb2..9f59e0dc8 100644
--- a/curl/CMake/OtherTests.cmake
+++ b/curl/CMake/OtherTests.cmake
@@ -1,232 +1,162 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
include(CheckCSourceCompiles)
-# The begin of the sources (macros and includes)
-set(_source_epilogue "#undef inline")
-
-macro(add_header_include check header)
- if(${check})
- set(_source_epilogue "${_source_epilogue}\n#include <${header}>")
- endif(${check})
-endmacro(add_header_include)
-
-set(signature_call_conv)
-if(HAVE_WINDOWS_H)
- add_header_include(HAVE_WINSOCK2_H "winsock2.h")
- add_header_include(HAVE_WINDOWS_H "windows.h")
- add_header_include(HAVE_WINSOCK_H "winsock.h")
- set(_source_epilogue
- "${_source_epilogue}\n#ifndef WIN32_LEAN_AND_MEAN\n#define WIN32_LEAN_AND_MEAN\n#endif")
- set(signature_call_conv "PASCAL")
- if(HAVE_LIBWS2_32)
- set(CMAKE_REQUIRED_LIBRARIES ws2_32)
- endif()
-else(HAVE_WINDOWS_H)
- add_header_include(HAVE_SYS_TYPES_H "sys/types.h")
- add_header_include(HAVE_SYS_SOCKET_H "sys/socket.h")
-endif(HAVE_WINDOWS_H)
+include(CheckCSourceRuns)
+include(CheckTypeSize)
-check_c_source_compiles("${_source_epilogue}
-int main(void) {
- recv(0, 0, 0, 0);
- return 0;
-}" curl_cv_recv)
-if(curl_cv_recv)
- if(NOT DEFINED curl_cv_func_recv_args OR "${curl_cv_func_recv_args}" STREQUAL "unknown")
- foreach(recv_retv "int" "ssize_t" )
- foreach(recv_arg1 "SOCKET" "int" )
- foreach(recv_arg2 "char *" "void *" )
- foreach(recv_arg3 "int" "size_t" "socklen_t" "unsigned int")
- foreach(recv_arg4 "int" "unsigned int")
- if(NOT curl_cv_func_recv_done)
- unset(curl_cv_func_recv_test CACHE)
- check_c_source_compiles("
- ${_source_epilogue}
- extern ${recv_retv} ${signature_call_conv}
- recv(${recv_arg1}, ${recv_arg2}, ${recv_arg3}, ${recv_arg4});
- int main(void) {
- ${recv_arg1} s=0;
- ${recv_arg2} buf=0;
- ${recv_arg3} len=0;
- ${recv_arg4} flags=0;
- ${recv_retv} res = recv(s, buf, len, flags);
- (void) res;
- return 0;
- }"
- curl_cv_func_recv_test)
- message(STATUS
- "Tested: ${recv_retv} recv(${recv_arg1}, ${recv_arg2}, ${recv_arg3}, ${recv_arg4})")
- if(curl_cv_func_recv_test)
- set(curl_cv_func_recv_args
- "${recv_arg1},${recv_arg2},${recv_arg3},${recv_arg4},${recv_retv}")
- set(RECV_TYPE_ARG1 "${recv_arg1}")
- set(RECV_TYPE_ARG2 "${recv_arg2}")
- set(RECV_TYPE_ARG3 "${recv_arg3}")
- set(RECV_TYPE_ARG4 "${recv_arg4}")
- set(RECV_TYPE_RETV "${recv_retv}")
- set(HAVE_RECV 1)
- set(curl_cv_func_recv_done 1)
- endif(curl_cv_func_recv_test)
- endif(NOT curl_cv_func_recv_done)
- endforeach(recv_arg4)
- endforeach(recv_arg3)
- endforeach(recv_arg2)
- endforeach(recv_arg1)
- endforeach(recv_retv)
- else()
- string(REGEX REPLACE "^([^,]*),[^,]*,[^,]*,[^,]*,[^,]*$" "\\1" RECV_TYPE_ARG1 "${curl_cv_func_recv_args}")
- string(REGEX REPLACE "^[^,]*,([^,]*),[^,]*,[^,]*,[^,]*$" "\\1" RECV_TYPE_ARG2 "${curl_cv_func_recv_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,([^,]*),[^,]*,[^,]*$" "\\1" RECV_TYPE_ARG3 "${curl_cv_func_recv_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,([^,]*),[^,]*$" "\\1" RECV_TYPE_ARG4 "${curl_cv_func_recv_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,[^,]*,([^,]*)$" "\\1" RECV_TYPE_RETV "${curl_cv_func_recv_args}")
+# #include header if condition is true
+macro(curl_add_header_include _check _header)
+ if(${_check})
+ set(_source_epilogue "${_source_epilogue}
+ #include <${_header}>")
endif()
+endmacro()
- if("${curl_cv_func_recv_args}" STREQUAL "unknown")
- message(FATAL_ERROR "Cannot find proper types to use for recv args")
- endif("${curl_cv_func_recv_args}" STREQUAL "unknown")
-else(curl_cv_recv)
- message(FATAL_ERROR "Unable to link function recv")
-endif(curl_cv_recv)
-set(curl_cv_func_recv_args "${curl_cv_func_recv_args}" CACHE INTERNAL "Arguments for recv")
-set(HAVE_RECV 1)
+set(_cmake_try_compile_target_type_save ${CMAKE_TRY_COMPILE_TARGET_TYPE})
+set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
-check_c_source_compiles("${_source_epilogue}
-int main(void) {
- send(0, 0, 0, 0);
- return 0;
-}" curl_cv_send)
-if(curl_cv_send)
- if(NOT DEFINED curl_cv_func_send_args OR "${curl_cv_func_send_args}" STREQUAL "unknown")
- foreach(send_retv "int" "ssize_t" )
- foreach(send_arg1 "SOCKET" "int" "ssize_t" )
- foreach(send_arg2 "const char *" "const void *" "void *" "char *")
- foreach(send_arg3 "int" "size_t" "socklen_t" "unsigned int")
- foreach(send_arg4 "int" "unsigned int")
- if(NOT curl_cv_func_send_done)
- unset(curl_cv_func_send_test CACHE)
- check_c_source_compiles("
- ${_source_epilogue}
- extern ${send_retv} ${signature_call_conv}
- send(${send_arg1}, ${send_arg2}, ${send_arg3}, ${send_arg4});
- int main(void) {
- ${send_arg1} s=0;
- ${send_arg2} buf=0;
- ${send_arg3} len=0;
- ${send_arg4} flags=0;
- ${send_retv} res = send(s, buf, len, flags);
- (void) res;
- return 0;
- }"
- curl_cv_func_send_test)
- message(STATUS
- "Tested: ${send_retv} send(${send_arg1}, ${send_arg2}, ${send_arg3}, ${send_arg4})")
- if(curl_cv_func_send_test)
- string(REGEX REPLACE "(const) .*" "\\1" send_qual_arg2 "${send_arg2}")
- string(REGEX REPLACE "const (.*)" "\\1" send_arg2 "${send_arg2}")
- set(curl_cv_func_send_args
- "${send_arg1},${send_arg2},${send_arg3},${send_arg4},${send_retv},${send_qual_arg2}")
- set(SEND_TYPE_ARG1 "${send_arg1}")
- set(SEND_TYPE_ARG2 "${send_arg2}")
- set(SEND_TYPE_ARG3 "${send_arg3}")
- set(SEND_TYPE_ARG4 "${send_arg4}")
- set(SEND_TYPE_RETV "${send_retv}")
- set(HAVE_SEND 1)
- set(curl_cv_func_send_done 1)
- endif(curl_cv_func_send_test)
- endif(NOT curl_cv_func_send_done)
- endforeach(send_arg4)
- endforeach(send_arg3)
- endforeach(send_arg2)
- endforeach(send_arg1)
- endforeach(send_retv)
+if(NOT DEFINED HAVE_STRUCT_SOCKADDR_STORAGE)
+ cmake_push_check_state()
+ set(CMAKE_EXTRA_INCLUDE_FILES "")
+ if(WIN32)
+ set(CMAKE_EXTRA_INCLUDE_FILES "winsock2.h")
+ list(APPEND CMAKE_REQUIRED_LIBRARIES "ws2_32")
else()
- string(REGEX REPLACE "^([^,]*),[^,]*,[^,]*,[^,]*,[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG1 "${curl_cv_func_send_args}")
- string(REGEX REPLACE "^[^,]*,([^,]*),[^,]*,[^,]*,[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG2 "${curl_cv_func_send_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,([^,]*),[^,]*,[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG3 "${curl_cv_func_send_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,([^,]*),[^,]*,[^,]*$" "\\1" SEND_TYPE_ARG4 "${curl_cv_func_send_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,[^,]*,([^,]*),[^,]*$" "\\1" SEND_TYPE_RETV "${curl_cv_func_send_args}")
- string(REGEX REPLACE "^[^,]*,[^,]*,[^,]*,[^,]*,[^,]*,([^,]*)$" "\\1" SEND_QUAL_ARG2 "${curl_cv_func_send_args}")
+ set(CMAKE_EXTRA_INCLUDE_FILES "sys/socket.h")
endif()
+ check_type_size("struct sockaddr_storage" SIZEOF_STRUCT_SOCKADDR_STORAGE)
+ set(HAVE_STRUCT_SOCKADDR_STORAGE ${HAVE_SIZEOF_STRUCT_SOCKADDR_STORAGE})
+ cmake_pop_check_state()
+endif()
- if("${curl_cv_func_send_args}" STREQUAL "unknown")
- message(FATAL_ERROR "Cannot find proper types to use for send args")
- endif("${curl_cv_func_send_args}" STREQUAL "unknown")
- set(SEND_QUAL_ARG2 "const")
-else(curl_cv_send)
- message(FATAL_ERROR "Unable to link function send")
-endif(curl_cv_send)
-set(curl_cv_func_send_args "${curl_cv_func_send_args}" CACHE INTERNAL "Arguments for send")
-set(HAVE_SEND 1)
+if(NOT WIN32)
+ set(_source_epilogue "#undef inline")
+ curl_add_header_include(HAVE_SYS_TYPES_H "sys/types.h")
+ check_c_source_compiles("${_source_epilogue}
+ #include
+ int main(void)
+ {
+ int flag = MSG_NOSIGNAL;
+ (void)flag;
+ return 0;
+ }" HAVE_MSG_NOSIGNAL)
+endif()
+set(_source_epilogue "#undef inline")
check_c_source_compiles("${_source_epilogue}
- int main(void) {
- int flag = MSG_NOSIGNAL;
- (void)flag;
+ #ifdef _MSC_VER
+ #include
+ #endif
+ #ifndef _WIN32
+ #include
+ #endif
+ #include
+ int main(void)
+ {
+ struct timeval ts;
+ ts.tv_sec = 0;
+ ts.tv_usec = 0;
+ (void)ts;
return 0;
- }" HAVE_MSG_NOSIGNAL)
+ }" HAVE_STRUCT_TIMEVAL)
-if(NOT HAVE_WINDOWS_H)
- add_header_include(HAVE_SYS_TIME_H "sys/time.h")
- add_header_include(TIME_WITH_SYS_TIME "time.h")
- add_header_include(HAVE_TIME_H "time.h")
-endif()
-check_c_source_compiles("${_source_epilogue}
-int main(void) {
- struct timeval ts;
- ts.tv_sec = 0;
- ts.tv_usec = 0;
- (void)ts;
- return 0;
-}" HAVE_STRUCT_TIMEVAL)
+set(CMAKE_TRY_COMPILE_TARGET_TYPE ${_cmake_try_compile_target_type_save})
+unset(_cmake_try_compile_target_type_save)
+# Detect HAVE_GETADDRINFO_THREADSAFE
-include(CheckCSourceRuns)
-# See HAVE_POLL in CMakeLists.txt for why poll is disabled on macOS
-if(NOT APPLE)
- set(CMAKE_REQUIRED_FLAGS)
- if(HAVE_SYS_POLL_H)
- set(CMAKE_REQUIRED_FLAGS "-DHAVE_SYS_POLL_H")
- endif(HAVE_SYS_POLL_H)
- check_c_source_runs("
- #ifdef HAVE_SYS_POLL_H
- # include
- #endif
- int main(void) {
- return poll((void *)0, 0, 10 /*ms*/);
- }" HAVE_POLL_FINE)
+if(WIN32)
+ set(HAVE_GETADDRINFO_THREADSAFE ${HAVE_GETADDRINFO})
+elseif(NOT HAVE_GETADDRINFO)
+ set(HAVE_GETADDRINFO_THREADSAFE FALSE)
+elseif(APPLE OR
+ CMAKE_SYSTEM_NAME STREQUAL "AIX" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "HP-UX" OR
+ CMAKE_SYSTEM_NAME STREQUAL "MidnightBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "SunOS")
+ set(HAVE_GETADDRINFO_THREADSAFE TRUE)
+elseif(BSD OR CMAKE_SYSTEM_NAME MATCHES "BSD")
+ set(HAVE_GETADDRINFO_THREADSAFE FALSE)
endif()
-set(HAVE_SIG_ATOMIC_T 1)
-set(CMAKE_REQUIRED_FLAGS)
-if(HAVE_SIGNAL_H)
- set(CMAKE_REQUIRED_FLAGS "-DHAVE_SIGNAL_H")
- set(CMAKE_EXTRA_INCLUDE_FILES "signal.h")
-endif(HAVE_SIGNAL_H)
-check_type_size("sig_atomic_t" SIZEOF_SIG_ATOMIC_T)
-if(HAVE_SIZEOF_SIG_ATOMIC_T)
- check_c_source_compiles("
- #ifdef HAVE_SIGNAL_H
- # include
+if(NOT DEFINED HAVE_GETADDRINFO_THREADSAFE)
+ set(_source_epilogue "#undef inline
+ #ifndef _WIN32
+ #include
+ #include
+ #endif")
+ curl_add_header_include(HAVE_NETDB_H "netdb.h")
+ check_c_source_compiles("${_source_epilogue}
+ int main(void)
+ {
+ #ifndef h_errno
+ #error force compilation error
#endif
- int main(void) {
- static volatile sig_atomic_t dummy = 0;
- (void)dummy;
return 0;
- }" HAVE_SIG_ATOMIC_T_NOT_VOLATILE)
- if(NOT HAVE_SIG_ATOMIC_T_NOT_VOLATILE)
- set(HAVE_SIG_ATOMIC_T_VOLATILE 1)
- endif(NOT HAVE_SIG_ATOMIC_T_NOT_VOLATILE)
-endif(HAVE_SIZEOF_SIG_ATOMIC_T)
+ }" HAVE_H_ERRNO)
-if(HAVE_WINDOWS_H)
- set(CMAKE_EXTRA_INCLUDE_FILES winsock2.h)
-else()
- set(CMAKE_EXTRA_INCLUDE_FILES)
- if(HAVE_SYS_SOCKET_H)
- set(CMAKE_EXTRA_INCLUDE_FILES sys/socket.h)
- endif(HAVE_SYS_SOCKET_H)
+ if(NOT HAVE_H_ERRNO)
+ check_c_source_compiles("${_source_epilogue}
+ int main(void)
+ {
+ h_errno = 2;
+ return h_errno != 0 ? 1 : 0;
+ }" HAVE_H_ERRNO_ASSIGNABLE)
+
+ if(NOT HAVE_H_ERRNO_ASSIGNABLE)
+ check_c_source_compiles("${_source_epilogue}
+ int main(void)
+ {
+ #if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE >= 200809L)
+ #elif defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 700)
+ #else
+ #error force compilation error
+ #endif
+ return 0;
+ }" HAVE_H_ERRNO_SBS_ISSUE_7)
+ endif()
+ endif()
+
+ if(HAVE_H_ERRNO OR HAVE_H_ERRNO_ASSIGNABLE OR HAVE_H_ERRNO_SBS_ISSUE_7)
+ set(HAVE_GETADDRINFO_THREADSAFE TRUE)
+ endif()
endif()
-check_type_size("struct sockaddr_storage" SIZEOF_STRUCT_SOCKADDR_STORAGE)
-if(HAVE_SIZEOF_STRUCT_SOCKADDR_STORAGE)
- set(HAVE_STRUCT_SOCKADDR_STORAGE 1)
-endif(HAVE_SIZEOF_STRUCT_SOCKADDR_STORAGE)
+if(NOT WIN32 AND NOT DEFINED HAVE_CLOCK_GETTIME_MONOTONIC_RAW)
+ set(_source_epilogue "#undef inline")
+ curl_add_header_include(HAVE_SYS_TYPES_H "sys/types.h")
+ check_c_source_compiles("${_source_epilogue}
+ #include
+ #include
+ int main(void)
+ {
+ struct timespec ts;
+ (void)clock_gettime(CLOCK_MONOTONIC_RAW, &ts);
+ return 0;
+ }" HAVE_CLOCK_GETTIME_MONOTONIC_RAW)
+endif()
+unset(_source_epilogue)
diff --git a/curl/CMake/PickyWarnings.cmake b/curl/CMake/PickyWarnings.cmake
new file mode 100644
index 000000000..7838f6f8b
--- /dev/null
+++ b/curl/CMake/PickyWarnings.cmake
@@ -0,0 +1,361 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+include(CheckCCompilerFlag)
+
+set(_picky "")
+set(_picky_nocheck "") # not to pass to feature checks
+
+if(CURL_WERROR)
+ if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.24)
+ set(CMAKE_COMPILE_WARNING_AS_ERROR ON)
+ else()
+ if(MSVC)
+ list(APPEND _picky_nocheck "-WX")
+ else() # llvm/clang and gcc style options
+ list(APPEND _picky_nocheck "-Werror")
+ endif()
+ endif()
+
+ if((CMAKE_C_COMPILER_ID STREQUAL "GNU" AND
+ NOT DOS AND # Watt-32 headers use the '#include_next' GCC extension
+ CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 5.0) OR
+ CMAKE_C_COMPILER_ID MATCHES "Clang")
+ list(APPEND _picky_nocheck "-pedantic-errors")
+ endif()
+endif()
+
+if(APPLE AND
+ (CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 3.6) OR
+ (CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 6.3))
+ list(APPEND _picky "-Werror=partial-availability") # clang 3.6 appleclang 6.3
+endif()
+
+if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
+ list(APPEND _picky "-Werror-implicit-function-declaration") # clang 1.0 gcc 2.95
+endif()
+
+if(MSVC)
+ list(APPEND _picky "-W4") # Use the highest warning level for Visual Studio.
+elseif(BORLAND)
+ list(APPEND _picky "-w-") # Disable warnings on Borland to avoid changing 3rd party code.
+endif()
+
+if(PICKY_COMPILER)
+ if(CMAKE_C_COMPILER_ID STREQUAL "GNU" OR CMAKE_C_COMPILER_ID MATCHES "Clang")
+
+ # https://clang.llvm.org/docs/DiagnosticsReference.html
+ # https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html
+
+ # _picky_enable = Options we want to enable as-is.
+ # _picky_detect = Options we want to test first and enable if available.
+
+ # Prefer the -Wextra alias with clang.
+ if(CMAKE_C_COMPILER_ID MATCHES "Clang")
+ set(_picky_enable "-Wextra")
+ else()
+ set(_picky_enable "-W")
+ endif()
+
+ list(APPEND _picky_enable
+ -Wall -pedantic
+ )
+
+ # ----------------------------------
+ # Add new options here, if in doubt:
+ # ----------------------------------
+ set(_picky_detect
+ )
+
+ # Assume these options always exist with both clang and gcc.
+ # Require clang 3.0 / gcc 2.95 or later.
+ list(APPEND _picky_enable
+ -Wbad-function-cast # clang 2.7 gcc 2.95
+ -Wconversion # clang 2.7 gcc 2.95
+ -Wmissing-declarations # clang 1.0 gcc 2.7
+ -Wmissing-prototypes # clang 1.0 gcc 1.0
+ -Wnested-externs # clang 1.0 gcc 2.7
+ -Wno-long-long # clang 1.0 gcc 2.95
+ -Wno-multichar # clang 1.0 gcc 2.95
+ -Wpointer-arith # clang 1.0 gcc 1.4
+ -Wshadow # clang 1.0 gcc 2.95
+ -Wsign-compare # clang 1.0 gcc 2.95
+ -Wundef # clang 1.0 gcc 2.95
+ -Wunused # clang 1.1 gcc 2.95
+ -Wwrite-strings # clang 1.0 gcc 1.4
+ )
+
+ # Always enable with clang, version dependent with gcc
+ set(_picky_common_old
+ -Waddress # clang 2.7 gcc 4.3
+ -Wattributes # clang 2.7 gcc 4.1
+ -Wcast-align # clang 1.0 gcc 4.2
+ -Wcast-qual # clang 3.0 gcc 3.4.6
+ -Wdeclaration-after-statement # clang 1.0 gcc 3.4
+ -Wdiv-by-zero # clang 2.7 gcc 4.1
+ -Wempty-body # clang 2.7 gcc 4.3
+ -Wendif-labels # clang 1.0 gcc 3.3
+ -Wfloat-equal # clang 1.0 gcc 2.96 (3.0)
+ -Wformat-security # clang 2.7 gcc 4.1
+ -Wignored-qualifiers # clang 2.8 gcc 4.3
+ -Wmissing-field-initializers # clang 2.7 gcc 4.1
+ -Wmissing-noreturn # clang 2.7 gcc 4.1
+ -Wno-format-nonliteral # clang 1.0 gcc 2.96 (3.0)
+ -Wno-sign-conversion # clang 2.9 gcc 4.3
+ -Wno-system-headers # clang 1.0 gcc 3.0
+ # -Wpadded # clang 2.9 gcc 4.1 # Not used: We cannot change public structs
+ -Wold-style-definition # clang 2.7 gcc 3.4
+ -Wredundant-decls # clang 2.7 gcc 4.1
+ -Wstrict-prototypes # clang 1.0 gcc 3.3
+ # -Wswitch-enum # clang 2.7 gcc 4.1 # Not used: It basically disallows default case
+ -Wtype-limits # clang 2.7 gcc 4.3
+ -Wunreachable-code # clang 2.7 gcc 4.1
+ # -Wunused-macros # clang 2.7 gcc 4.1 # Not practical
+ # -Wno-error=unused-macros # clang 2.7 gcc 4.1
+ -Wunused-parameter # clang 2.7 gcc 4.1
+ -Wvla # clang 2.8 gcc 4.3
+ )
+
+ if(CMAKE_C_COMPILER_ID MATCHES "Clang")
+ list(APPEND _picky_enable
+ ${_picky_common_old}
+ -Wshift-sign-overflow # clang 2.9
+ -Wshorten-64-to-32 # clang 1.0
+ -Wformat=2 # clang 3.0 gcc 4.8
+ )
+ if(NOT MSVC)
+ list(APPEND _picky_enable
+ -Wlanguage-extension-token # clang 3.0
+ )
+ endif()
+ # Enable based on compiler version
+ if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 3.6) OR
+ (CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 6.3))
+ list(APPEND _picky_enable
+ -Wdouble-promotion # clang 3.6 gcc 4.6 appleclang 6.3
+ -Wenum-conversion # clang 3.2 gcc 10.0 appleclang 4.6 g++ 11.0
+ -Wheader-guard # clang 3.4 appleclang 5.1
+ -Wpragmas # clang 3.5 gcc 4.1 appleclang 6.0
+ -Wsometimes-uninitialized # clang 3.2 appleclang 4.6
+ # -Wunreachable-code-break # clang 3.5 appleclang 6.0 # Not used: Silent in "unity" builds
+ -Wunused-const-variable # clang 3.4 gcc 6.0 appleclang 5.1
+ )
+ endif()
+ if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 3.9) OR
+ (CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 8.3))
+ list(APPEND _picky_enable
+ -Wcomma # clang 3.9 appleclang 8.3
+ -Wmissing-variable-declarations # clang 3.2 appleclang 4.6
+ )
+ endif()
+ if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 7.0) OR
+ (CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 10.3))
+ list(APPEND _picky_enable
+ -Wassign-enum # clang 7.0 appleclang 10.3
+ -Wextra-semi-stmt # clang 7.0 appleclang 10.3
+ )
+ endif()
+ if((CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 10.0) OR
+ (CMAKE_C_COMPILER_ID STREQUAL "AppleClang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 12.4))
+ list(APPEND _picky_enable
+ -Wimplicit-fallthrough # clang 4.0 gcc 7.0 appleclang 12.4 # We do silencing for clang 10.0 and above only
+ -Wxor-used-as-pow # clang 10.0 gcc 13.0
+ )
+ endif()
+ else() # gcc
+ # Enable based on compiler version
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.3)
+ list(APPEND _picky_enable
+ ${_picky_common_old}
+ -Wclobbered # gcc 4.3
+ -Wmissing-parameter-type # gcc 4.3
+ -Wold-style-declaration # gcc 4.3
+ -Wpragmas # clang 3.5 gcc 4.1 appleclang 6.0
+ -Wstrict-aliasing=3 # gcc 4.0
+ -ftree-vrp # gcc 4.3 (required for -Warray-bounds, included in -Wall)
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.5)
+ list(APPEND _picky_enable
+ -Wjump-misses-init # gcc 4.5
+ )
+ if(MINGW)
+ list(APPEND _picky_enable
+ -Wno-pedantic-ms-format # gcc 4.5 (MinGW-only)
+ )
+ endif()
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.8)
+ list(APPEND _picky_enable
+ -Wdouble-promotion # clang 3.6 gcc 4.6 appleclang 6.3
+ -Wformat=2 # clang 3.0 gcc 4.8
+ -Wtrampolines # gcc 4.6
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 5.0)
+ list(APPEND _picky_enable
+ -Warray-bounds=2 # clang 3.0 gcc 5.0 (clang default: -Warray-bounds)
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 6.0)
+ list(APPEND _picky_enable
+ -Wduplicated-cond # gcc 6.0
+ -Wnull-dereference # clang 3.0 gcc 6.0 (clang default)
+ -fdelete-null-pointer-checks
+ -Wshift-negative-value # clang 3.7 gcc 6.0 (clang default)
+ -Wshift-overflow=2 # clang 3.0 gcc 6.0 (clang default: -Wshift-overflow)
+ -Wunused-const-variable # clang 3.4 gcc 6.0 appleclang 5.1
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 7.0)
+ list(APPEND _picky_enable
+ -Walloc-zero # gcc 7.0
+ -Wduplicated-branches # gcc 7.0
+ -Wformat-truncation=2 # gcc 7.0
+ -Wimplicit-fallthrough # clang 4.0 gcc 7.0
+ -Wrestrict # gcc 7.0
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 10.0)
+ list(APPEND _picky_enable
+ -Warith-conversion # gcc 10.0
+ -Wenum-conversion # clang 3.2 gcc 10.0 appleclang 4.6 g++ 11.0
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 13.0)
+ list(APPEND _picky_enable
+ -Warray-compare # clang 20.0 gcc 12.0
+ -Wenum-int-mismatch # gcc 13.0
+ -Wxor-used-as-pow # clang 10.0 gcc 13.0
+ )
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 15.0)
+ list(APPEND _picky_enable
+ -Wleading-whitespace=spaces # gcc 15.0
+ -Wtrailing-whitespace=any # gcc 15.0
+ -Wunterminated-string-initialization # gcc 15.0
+ )
+ endif()
+ endif()
+
+ #
+
+ set(_picky_skipped "")
+ foreach(_ccopt IN LISTS _picky_enable)
+ string(REGEX MATCH "-W([a-z0-9-]+)" _ccmatch "${_ccopt}")
+ if(_ccmatch AND CMAKE_C_FLAGS MATCHES "-Wno-${CMAKE_MATCH_1}" AND NOT _ccopt STREQUAL "-Wall" AND NOT _ccopt MATCHES "^-Wno-")
+ string(APPEND _picky_skipped " ${_ccopt}")
+ else()
+ list(APPEND _picky "${_ccopt}")
+ endif()
+ endforeach()
+ if(_picky_skipped)
+ message(STATUS "Picky compiler options skipped due to CMAKE_C_FLAGS override:${_picky_skipped}")
+ endif()
+
+ foreach(_ccopt IN LISTS _picky_detect)
+ # Use a unique variable name 1. for meaningful log output 2. to have a fresh, undefined variable for each detection
+ string(MAKE_C_IDENTIFIER "OPT${_ccopt}" _optvarname)
+ # GCC only warns about unknown -Wno- options if there are also other diagnostic messages,
+ # so test for the positive form instead
+ string(REPLACE "-Wno-" "-W" _ccopt_on "${_ccopt}")
+ check_c_compiler_flag(${_ccopt_on} ${_optvarname})
+ if(${_optvarname})
+ list(APPEND _picky "${_ccopt}")
+ endif()
+ endforeach()
+
+ if(CMAKE_C_COMPILER_ID STREQUAL "GNU")
+ if(CMAKE_C_COMPILER_VERSION VERSION_LESS 4.5)
+ # Avoid false positives
+ list(APPEND _picky "-Wno-shadow")
+ list(APPEND _picky "-Wno-unreachable-code")
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.2 AND CMAKE_C_COMPILER_VERSION VERSION_LESS 4.6)
+ # GCC <4.6 do not support #pragma to suppress warnings locally. Disable them globally instead.
+ list(APPEND _picky "-Wno-overlength-strings")
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.0 AND CMAKE_C_COMPILER_VERSION VERSION_LESS 4.7)
+ list(APPEND _picky "-Wno-missing-field-initializers") # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=36750
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.3 AND CMAKE_C_COMPILER_VERSION VERSION_LESS 4.8)
+ list(APPEND _picky "-Wno-type-limits") # Avoid false positives
+ endif()
+ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 5.1 AND CMAKE_C_COMPILER_VERSION VERSION_LESS 5.5)
+ list(APPEND _picky "-Wno-conversion") # Avoid false positives
+ endif()
+ endif()
+ elseif(MSVC AND MSVC_VERSION LESS_EQUAL 1943) # Skip for untested/unreleased newer versions
+ list(APPEND _picky "-Wall")
+ list(APPEND _picky "-wd4061") # enumerator 'A' in switch of enum 'B' is not explicitly handled by a case label
+ list(APPEND _picky "-wd4191") # 'type cast': unsafe conversion from 'FARPROC' to 'void (__cdecl *)(void)'
+ list(APPEND _picky "-wd4255") # no function prototype given: converting '()' to '(void)' (in winuser.h)
+ list(APPEND _picky "-wd4464") # relative include path contains '..'
+ list(APPEND _picky "-wd4548") # expression before comma has no effect; expected expression with side-effect (in FD_SET())
+ list(APPEND _picky "-wd4574") # 'M' is defined to be '0': did you mean to use '#if M'? (in ws2tcpip.h)
+ list(APPEND _picky "-wd4668") # 'M' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' (in winbase.h)
+ list(APPEND _picky "-wd4710") # 'snprintf': function not inlined
+ list(APPEND _picky "-wd4711") # function 'A' selected for automatic inline expansion
+ # volatile access of '' is subject to /volatile: setting;
+ # consider using __iso_volatile_load/store intrinsic functions (ARM64)
+ list(APPEND _picky "-wd4746")
+ list(APPEND _picky "-wd4774") # 'snprintf': format string expected in argument 3 is not a string literal
+ list(APPEND _picky "-wd4820") # 'A': 'N' bytes padding added after data member 'B'
+ if(MSVC_VERSION GREATER_EQUAL 1900)
+ list(APPEND _picky "-wd5045") # Compiler will insert Spectre mitigation for memory load if /Qspectre switch specified
+ endif()
+ endif()
+endif()
+
+# clang-cl
+if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND MSVC)
+ list(APPEND _picky "-Wno-language-extension-token") # Allow __int64
+
+ foreach(_wlist IN ITEMS _picky_nocheck _picky)
+ set(_picky_tmp "")
+ foreach(_ccopt IN LISTS "${_wlist}")
+ # Prefix -Wall, otherwise clang-cl interprets it as an MSVC option and translates it to -Weverything
+ if(_ccopt MATCHES "^-W" AND NOT _ccopt STREQUAL "-Wall")
+ list(APPEND _picky_tmp ${_ccopt})
+ else()
+ list(APPEND _picky_tmp "-clang:${_ccopt}")
+ endif()
+ endforeach()
+ set("${_wlist}" ${_picky_tmp}) # cmake-lint: disable=C0103
+ endforeach()
+endif()
+
+if(_picky_nocheck OR _picky)
+ set(_picky_tmp "${_picky_nocheck}" "${_picky}")
+ string(REPLACE ";" " " _picky_tmp "${_picky_tmp}")
+ string(STRIP "${_picky_tmp}" _picky_tmp)
+ message(STATUS "Picky compiler options: ${_picky_tmp}")
+ set_property(DIRECTORY APPEND PROPERTY COMPILE_OPTIONS "${_picky_nocheck}" "${_picky}")
+
+ # Apply to all feature checks
+ string(REPLACE ";" " " _picky_tmp "${_picky}")
+ string(APPEND CMAKE_REQUIRED_FLAGS " ${_picky_tmp}")
+
+ unset(_picky)
+ unset(_picky_tmp)
+endif()
diff --git a/curl/CMake/Platforms/WindowsCache.cmake b/curl/CMake/Platforms/WindowsCache.cmake
deleted file mode 100644
index 6fc2991cd..000000000
--- a/curl/CMake/Platforms/WindowsCache.cmake
+++ /dev/null
@@ -1,125 +0,0 @@
-if(NOT UNIX)
- if(WIN32)
- set(HAVE_LIBDL 0)
- set(HAVE_LIBUCB 0)
- set(HAVE_LIBSOCKET 0)
- set(NOT_NEED_LIBNSL 0)
- set(HAVE_LIBNSL 0)
- set(HAVE_GETHOSTNAME 1)
- set(HAVE_LIBZ 0)
- set(HAVE_LIBCRYPTO 0)
-
- set(HAVE_DLOPEN 0)
-
- set(HAVE_ALLOCA_H 0)
- set(HAVE_ARPA_INET_H 0)
- set(HAVE_DLFCN_H 0)
- set(HAVE_FCNTL_H 1)
- set(HAVE_INTTYPES_H 0)
- set(HAVE_IO_H 1)
- set(HAVE_MALLOC_H 1)
- set(HAVE_MEMORY_H 1)
- set(HAVE_NETDB_H 0)
- set(HAVE_NETINET_IF_ETHER_H 0)
- set(HAVE_NETINET_IN_H 0)
- set(HAVE_NET_IF_H 0)
- set(HAVE_PROCESS_H 1)
- set(HAVE_PWD_H 0)
- set(HAVE_SETJMP_H 1)
- set(HAVE_SGTTY_H 0)
- set(HAVE_SIGNAL_H 1)
- set(HAVE_SOCKIO_H 0)
- set(HAVE_STDINT_H 0)
- set(HAVE_STDLIB_H 1)
- set(HAVE_STRINGS_H 0)
- set(HAVE_STRING_H 1)
- set(HAVE_SYS_PARAM_H 0)
- set(HAVE_SYS_POLL_H 0)
- set(HAVE_SYS_SELECT_H 0)
- set(HAVE_SYS_SOCKET_H 0)
- set(HAVE_SYS_SOCKIO_H 0)
- set(HAVE_SYS_STAT_H 1)
- set(HAVE_SYS_TIME_H 0)
- set(HAVE_SYS_TYPES_H 1)
- set(HAVE_SYS_UTIME_H 1)
- set(HAVE_TERMIOS_H 0)
- set(HAVE_TERMIO_H 0)
- set(HAVE_TIME_H 1)
- set(HAVE_UNISTD_H 0)
- set(HAVE_UTIME_H 0)
- set(HAVE_X509_H 0)
- set(HAVE_ZLIB_H 0)
-
- set(HAVE_SIZEOF_LONG_DOUBLE 1)
- set(SIZEOF_LONG_DOUBLE 8)
-
- set(HAVE_SOCKET 1)
- set(HAVE_POLL 0)
- set(HAVE_SELECT 1)
- set(HAVE_STRDUP 1)
- set(HAVE_STRSTR 1)
- set(HAVE_STRTOK_R 0)
- set(HAVE_STRFTIME 1)
- set(HAVE_UNAME 0)
- set(HAVE_STRCASECMP 0)
- set(HAVE_STRICMP 1)
- set(HAVE_STRCMPI 1)
- set(HAVE_GETHOSTBYADDR 1)
- set(HAVE_GETTIMEOFDAY 0)
- set(HAVE_INET_ADDR 1)
- set(HAVE_INET_NTOA 1)
- set(HAVE_INET_NTOA_R 0)
- set(HAVE_TCGETATTR 0)
- set(HAVE_TCSETATTR 0)
- set(HAVE_PERROR 1)
- set(HAVE_CLOSESOCKET 1)
- set(HAVE_SETVBUF 0)
- set(HAVE_SIGSETJMP 0)
- set(HAVE_GETPASS_R 0)
- set(HAVE_STRLCAT 0)
- set(HAVE_GETPWUID 0)
- set(HAVE_GETEUID 0)
- set(HAVE_UTIME 1)
- set(HAVE_RAND_EGD 0)
- set(HAVE_RAND_SCREEN 0)
- set(HAVE_RAND_STATUS 0)
- set(HAVE_GMTIME_R 0)
- set(HAVE_LOCALTIME_R 0)
- set(HAVE_GETHOSTBYADDR_R 0)
- set(HAVE_GETHOSTBYNAME_R 0)
- set(HAVE_SIGNAL_FUNC 1)
- set(HAVE_SIGNAL_MACRO 0)
-
- set(HAVE_GETHOSTBYADDR_R_5 0)
- set(HAVE_GETHOSTBYADDR_R_5_REENTRANT 0)
- set(HAVE_GETHOSTBYADDR_R_7 0)
- set(HAVE_GETHOSTBYADDR_R_7_REENTRANT 0)
- set(HAVE_GETHOSTBYADDR_R_8 0)
- set(HAVE_GETHOSTBYADDR_R_8_REENTRANT 0)
- set(HAVE_GETHOSTBYNAME_R_3 0)
- set(HAVE_GETHOSTBYNAME_R_3_REENTRANT 0)
- set(HAVE_GETHOSTBYNAME_R_5 0)
- set(HAVE_GETHOSTBYNAME_R_5_REENTRANT 0)
- set(HAVE_GETHOSTBYNAME_R_6 0)
- set(HAVE_GETHOSTBYNAME_R_6_REENTRANT 0)
-
- set(TIME_WITH_SYS_TIME 0)
- set(HAVE_O_NONBLOCK 0)
- set(HAVE_IN_ADDR_T 0)
- set(HAVE_INET_NTOA_R_DECL 0)
- set(HAVE_INET_NTOA_R_DECL_REENTRANT 0)
- if(ENABLE_IPV6)
- set(HAVE_GETADDRINFO 1)
- else()
- set(HAVE_GETADDRINFO 0)
- endif()
- set(STDC_HEADERS 1)
- set(RETSIGTYPE_TEST 1)
-
- set(HAVE_SIGACTION 0)
- set(HAVE_MACRO_SIGSETJMP 0)
- else(WIN32)
- message("This file should be included on Windows platform only")
- endif(WIN32)
-endif(NOT UNIX)
-
diff --git a/curl/CMake/Utilities.cmake b/curl/CMake/Utilities.cmake
index 8b6276df6..335713c84 100644
--- a/curl/CMake/Utilities.cmake
+++ b/curl/CMake/Utilities.cmake
@@ -1,44 +1,81 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
# File containing various utilities
-# Converts a CMake list to a string containing elements separated by spaces
-function(TO_LIST_SPACES _LIST_NAME OUTPUT_VAR)
- set(NEW_LIST_SPACE)
- foreach(ITEM ${${_LIST_NAME}})
- set(NEW_LIST_SPACE "${NEW_LIST_SPACE} ${ITEM}")
+# Return number of arguments that evaluate to true
+function(curl_count_true _output_count_var)
+ set(_list_len 0)
+ foreach(_option_var IN LISTS ARGN)
+ if(${_option_var})
+ math(EXPR _list_len "${_list_len} + 1")
+ endif()
endforeach()
- string(STRIP ${NEW_LIST_SPACE} NEW_LIST_SPACE)
- set(${OUTPUT_VAR} "${NEW_LIST_SPACE}" PARENT_SCOPE)
+ set(${_output_count_var} ${_list_len} PARENT_SCOPE)
endfunction()
-# Appends a lis of item to a string which is a space-separated list, if they don't already exist.
-function(LIST_SPACES_APPEND_ONCE LIST_NAME)
- string(REPLACE " " ";" _LIST ${${LIST_NAME}})
- list(APPEND _LIST ${ARGN})
- list(REMOVE_DUPLICATES _LIST)
- to_list_spaces(_LIST NEW_LIST_SPACE)
- set(${LIST_NAME} "${NEW_LIST_SPACE}" PARENT_SCOPE)
+# Dump all defined variables with their values
+function(curl_dumpvars)
+ message("::group::CMake Variable Dump")
+ get_cmake_property(_vars VARIABLES)
+ foreach(_var IN ITEMS ${_vars})
+ get_property(_var_type CACHE ${_var} PROPERTY TYPE)
+ get_property(_var_advanced CACHE ${_var} PROPERTY ADVANCED)
+ if(_var_type)
+ set(_var_type ":${_var_type}")
+ endif()
+ if(_var_advanced)
+ set(_var_advanced " [adv]")
+ endif()
+ message("${_var}${_var_type}${_var_advanced} = '${${_var}}'")
+ endforeach()
+ message("::endgroup::")
endfunction()
-# Convinience function that does the same as LIST(FIND ...) but with a TRUE/FALSE return value.
-# Ex: IN_STR_LIST(MY_LIST "Searched item" WAS_FOUND)
-function(IN_STR_LIST LIST_NAME ITEM_SEARCHED RETVAL)
- list(FIND ${LIST_NAME} ${ITEM_SEARCHED} FIND_POS)
- if(${FIND_POS} EQUAL -1)
- set(${RETVAL} FALSE PARENT_SCOPE)
- else()
- set(${RETVAL} TRUE PARENT_SCOPE)
+# Dump all target properties
+function(curl_dumptargetprops _target)
+ if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.19 AND TARGET "${_target}")
+ execute_process(COMMAND "${CMAKE_COMMAND}" "--help-property-list" OUTPUT_VARIABLE _cmake_property_list)
+ string(REPLACE "\n" ";" _cmake_property_list "${_cmake_property_list}")
+ list(REMOVE_DUPLICATES _cmake_property_list)
+ list(REMOVE_ITEM _cmake_property_list "")
+ foreach(_prop IN LISTS _cmake_property_list)
+ if(_prop MATCHES "")
+ foreach(_config IN ITEMS "DEBUG" "RELEASE" "MINSIZEREL" "RELWITHDEBINFO")
+ string(REPLACE "" "${_config}" _propconfig "${_prop}")
+ get_property(_is_set TARGET "${_target}" PROPERTY "${_propconfig}" SET)
+ if(_is_set)
+ get_target_property(_val "${_target}" "${_propconfig}")
+ message("${_target}.${_propconfig} = '${_val}'")
+ endif()
+ endforeach()
+ else()
+ get_property(_is_set TARGET "${_target}" PROPERTY "${_prop}" SET)
+ if(_is_set)
+ get_target_property(_val "${_target}" "${_prop}")
+ message("${_target}.${_prop} = '${_val}'")
+ endif()
+ endif()
+ endforeach()
endif()
endfunction()
-
-# Returns a list of arguments that evaluate to true
-function(collect_true output_var output_count_var)
- set(${output_var})
- foreach(option_var IN LISTS ARGN)
- if(${option_var})
- list(APPEND ${output_var} ${option_var})
- endif()
- endforeach()
- set(${output_var} ${${output_var}} PARENT_SCOPE)
- list(LENGTH ${output_var} ${output_count_var})
- set(${output_count_var} ${${output_count_var}} PARENT_SCOPE)
-endfunction()
diff --git a/curl/CMake/cmake_uninstall.cmake.in b/curl/CMake/cmake_uninstall.cmake.in
index d00a51665..bb95d85a0 100644
--- a/curl/CMake/cmake_uninstall.cmake.in
+++ b/curl/CMake/cmake_uninstall.cmake.in
@@ -1,26 +1,50 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
message(FATAL_ERROR "Cannot find install manifest: @CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
-endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt")
+endif()
-if (NOT DEFINED CMAKE_INSTALL_PREFIX)
- set (CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@")
-endif ()
- message(${CMAKE_INSTALL_PREFIX})
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@")
+endif()
+message(${CMAKE_INSTALL_PREFIX})
-file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files)
-string(REGEX REPLACE "\n" ";" files "${files}")
-foreach(file ${files})
- message(STATUS "Uninstalling $ENV{DESTDIR}${file}")
- if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
- exec_program(
- "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\""
- OUTPUT_VARIABLE rm_out
- RETURN_VALUE rm_retval
- )
+file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" _files)
+string(REGEX REPLACE "\n" ";" _files "${_files}")
+foreach(_file ${_files})
+ message(STATUS "Uninstalling $ENV{DESTDIR}${_file}")
+ if(IS_SYMLINK "$ENV{DESTDIR}${_file}" OR EXISTS "$ENV{DESTDIR}${_file}")
+ execute_process(
+ COMMAND "@CMAKE_COMMAND@" -E remove "$ENV{DESTDIR}${_file}"
+ RESULT_VARIABLE rm_retval
+ OUTPUT_QUIET
+ ERROR_QUIET
+ )
if(NOT "${rm_retval}" STREQUAL 0)
- message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}")
- endif(NOT "${rm_retval}" STREQUAL 0)
- else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
- message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
- endif(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
-endforeach(file)
+ message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${_file}")
+ endif()
+ else()
+ message(STATUS "File $ENV{DESTDIR}${_file} does not exist.")
+ endif()
+endforeach()
diff --git a/curl/CMake/curl-config.cmake.in b/curl/CMake/curl-config.cmake.in
new file mode 100644
index 000000000..d1582b8d4
--- /dev/null
+++ b/curl/CMake/curl-config.cmake.in
@@ -0,0 +1,77 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+@PACKAGE_INIT@
+
+include(CMakeFindDependencyMacro)
+if("@USE_OPENSSL@")
+ if("@OPENSSL_VERSION_MAJOR@")
+ find_dependency(OpenSSL "@OPENSSL_VERSION_MAJOR@")
+ else()
+ find_dependency(OpenSSL)
+ endif()
+endif()
+if("@HAVE_LIBZ@")
+ find_dependency(ZLIB "@ZLIB_VERSION_MAJOR@")
+endif()
+
+include("${CMAKE_CURRENT_LIST_DIR}/@TARGETS_EXPORT_NAME@.cmake")
+
+# Alias for either shared or static library
+if(NOT TARGET @PROJECT_NAME@::@LIB_NAME@)
+ if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.11 AND CMAKE_VERSION VERSION_LESS 3.18)
+ set_target_properties(@PROJECT_NAME@::@LIB_SELECTED@ PROPERTIES IMPORTED_GLOBAL TRUE)
+ endif()
+ add_library(@PROJECT_NAME@::@LIB_NAME@ ALIAS @PROJECT_NAME@::@LIB_SELECTED@)
+endif()
+
+# For compatibility with CMake's FindCURL.cmake
+set(CURL_VERSION_STRING "@CURLVERSION@")
+set(CURL_LIBRARIES @PROJECT_NAME@::@LIB_NAME@)
+set_and_check(CURL_INCLUDE_DIRS "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
+
+set(CURL_SUPPORTED_PROTOCOLS "@CURL_SUPPORTED_PROTOCOLS_LIST@")
+set(CURL_SUPPORTED_FEATURES "@CURL_SUPPORTED_FEATURES_LIST@")
+
+foreach(_item IN LISTS CURL_SUPPORTED_PROTOCOLS CURL_SUPPORTED_FEATURES)
+ set(CURL_SUPPORTS_${_item} TRUE)
+endforeach()
+
+set(_missing_req "")
+foreach(_item IN LISTS CURL_FIND_COMPONENTS)
+ if(CURL_SUPPORTS_${_item})
+ set(CURL_${_item}_FOUND TRUE)
+ elseif(CURL_FIND_REQUIRED_${_item})
+ list(APPEND _missing_req ${_item})
+ endif()
+endforeach()
+
+if(_missing_req)
+ string(REPLACE ";" " " _missing_req "${_missing_req}")
+ if(CURL_FIND_REQUIRED)
+ message(FATAL_ERROR "CURL: missing required components: ${_missing_req}")
+ endif()
+ unset(_missing_req)
+endif()
+
+check_required_components("@PROJECT_NAME@")
diff --git a/curl/CMake/unix-cache.cmake b/curl/CMake/unix-cache.cmake
new file mode 100644
index 000000000..2c85626a4
--- /dev/null
+++ b/curl/CMake/unix-cache.cmake
@@ -0,0 +1,313 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+# Based on CI runs for Cygwin/MSYS2, Linux, macOS, FreeBSD, NetBSD, OpenBSD
+if(NOT UNIX)
+ message(FATAL_ERROR "This file should be included on Unix platforms only")
+endif()
+
+if(APPLE OR
+ CYGWIN)
+ set(HAVE_ACCEPT4 0)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_ACCEPT4 1)
+endif()
+set(HAVE_ALARM 1)
+if(ANDROID)
+ set(HAVE_ARC4RANDOM 1)
+else()
+ set(HAVE_ARC4RANDOM 0)
+endif()
+set(HAVE_ARPA_INET_H 1)
+set(HAVE_ATOMIC 1)
+set(HAVE_BASENAME 1)
+set(HAVE_BOOL_T 1)
+if(NOT APPLE)
+ set(HAVE_CLOCK_GETTIME_MONOTONIC 1)
+ if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_CLOCK_GETTIME_MONOTONIC_RAW 1)
+ else()
+ set(HAVE_CLOCK_GETTIME_MONOTONIC_RAW 0)
+ endif()
+endif()
+set(HAVE_CLOSESOCKET 0)
+set(HAVE_DECL_FSEEKO 1)
+set(HAVE_DIRENT_H 1)
+if(APPLE OR
+ CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_EVENTFD 0)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
+ set(HAVE_EVENTFD 1)
+endif()
+set(HAVE_FCNTL 1)
+set(HAVE_FCNTL_H 1)
+set(HAVE_FCNTL_O_NONBLOCK 1)
+set(HAVE_FILE_OFFSET_BITS 1)
+set(HAVE_FNMATCH 1)
+set(HAVE_FREEADDRINFO 1)
+set(HAVE_FSEEKO 1)
+if(APPLE)
+ set(HAVE_FSETXATTR 1)
+ set(HAVE_FSETXATTR_5 0)
+ set(HAVE_FSETXATTR_6 1)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_FSETXATTR 0)
+ set(HAVE_FSETXATTR_5 0)
+ set(HAVE_FSETXATTR_6 0)
+elseif(CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
+ set(HAVE_FSETXATTR 1)
+ set(HAVE_FSETXATTR_5 1)
+ set(HAVE_FSETXATTR_6 0)
+endif()
+set(HAVE_FTRUNCATE 1)
+set(HAVE_GETADDRINFO 1)
+if(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_GETADDRINFO_THREADSAFE 0)
+elseif(CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
+ set(HAVE_GETADDRINFO_THREADSAFE 1)
+endif()
+set(HAVE_GETEUID 1)
+if(APPLE OR
+ CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_GETHOSTBYNAME_R 0)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
+ set(HAVE_GETHOSTBYNAME_R 1)
+endif()
+set(HAVE_GETHOSTBYNAME_R_3 0)
+set(HAVE_GETHOSTBYNAME_R_3_REENTRANT 0)
+set(HAVE_GETHOSTBYNAME_R_5 0)
+set(HAVE_GETHOSTBYNAME_R_5_REENTRANT 0)
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_GETHOSTBYNAME_R_6 1)
+ set(HAVE_GETHOSTBYNAME_R_6_REENTRANT 1)
+else()
+ set(HAVE_GETHOSTBYNAME_R_6 0)
+ set(HAVE_GETHOSTBYNAME_R_6_REENTRANT 0)
+endif()
+set(HAVE_GETHOSTNAME 1)
+if(NOT ANDROID OR ANDROID_PLATFORM_LEVEL GREATER_EQUAL 24)
+ set(HAVE_GETIFADDRS 1)
+else()
+ set(HAVE_GETIFADDRS 0)
+endif()
+if(APPLE OR
+ CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_GETPASS_R 0)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
+ set(HAVE_GETPASS_R 1)
+endif()
+set(HAVE_GETPEERNAME 1)
+set(HAVE_GETPPID 1)
+set(HAVE_GETPWUID 1)
+set(HAVE_GETPWUID_R 1)
+set(HAVE_GETRLIMIT 1)
+set(HAVE_GETSOCKNAME 1)
+set(HAVE_GETTIMEOFDAY 1)
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_GLIBC_STRERROR_R 1)
+else()
+ set(HAVE_GLIBC_STRERROR_R 0)
+endif()
+set(HAVE_GMTIME_R 1)
+set(HAVE_IFADDRS_H 1)
+set(HAVE_IF_NAMETOINDEX 1)
+set(HAVE_INET_NTOP 1)
+set(HAVE_INET_PTON 1)
+set(HAVE_IOCTLSOCKET 0)
+set(HAVE_IOCTLSOCKET_CAMEL 0)
+set(HAVE_IOCTLSOCKET_CAMEL_FIONBIO 0)
+set(HAVE_IOCTLSOCKET_FIONBIO 0)
+set(HAVE_IOCTL_FIONBIO 1)
+set(HAVE_IOCTL_SIOCGIFADDR 1)
+if(CYGWIN)
+ set(HAVE_IO_H 1)
+else()
+ set(HAVE_IO_H 0)
+endif()
+set(HAVE_LIBGEN_H 1)
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_LINUX_TCP_H 1)
+else()
+ set(HAVE_LINUX_TCP_H 0)
+endif()
+set(HAVE_LOCALE_H 1)
+set(HAVE_LONGLONG 1)
+if(APPLE)
+ set(HAVE_MACH_ABSOLUTE_TIME 1)
+endif()
+if(APPLE OR
+ CYGWIN)
+ set(HAVE_MEMRCHR 0)
+else()
+ set(HAVE_MEMRCHR 1)
+endif()
+set(HAVE_MSG_NOSIGNAL 1)
+set(HAVE_NETDB_H 1)
+if(ANDROID)
+ set(HAVE_NETINET_IN6_H 1)
+else()
+ set(HAVE_NETINET_IN6_H 0)
+endif()
+set(HAVE_NETINET_IN_H 1)
+set(HAVE_NETINET_TCP_H 1)
+set(HAVE_NETINET_UDP_H 1)
+set(HAVE_NET_IF_H 1)
+set(HAVE_OPENDIR 1)
+set(HAVE_PIPE 1)
+if(APPLE OR
+ CYGWIN)
+ set(HAVE_PIPE2 0)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_PIPE2 1)
+endif()
+set(HAVE_POLL 1)
+set(HAVE_POLL_H 1)
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_POSIX_STRERROR_R 0)
+else()
+ set(HAVE_POSIX_STRERROR_R 1)
+endif()
+set(HAVE_PWD_H 1)
+set(HAVE_REALPATH 1)
+set(HAVE_RECV 1)
+set(HAVE_SA_FAMILY_T 1)
+set(HAVE_SCHED_YIELD 1)
+set(HAVE_SELECT 1)
+set(HAVE_SEND 1)
+if(APPLE OR
+ CYGWIN)
+ set(HAVE_SENDMMSG 0)
+else()
+ set(HAVE_SENDMMSG 1)
+endif()
+set(HAVE_SENDMSG 1)
+set(HAVE_SETLOCALE 1)
+if(CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_SETMODE 0)
+else()
+ set(HAVE_SETMODE 1)
+endif()
+set(HAVE_SETRLIMIT 1)
+set(HAVE_SETSOCKOPT_SO_NONBLOCK 0)
+set(HAVE_SIGACTION 1)
+set(HAVE_SIGINTERRUPT 1)
+set(HAVE_SIGNAL 1)
+set(HAVE_SIGSETJMP 1)
+set(HAVE_SNPRINTF 1)
+set(HAVE_SOCKADDR_IN6_SIN6_ADDR 1)
+set(HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1)
+set(HAVE_SOCKET 1)
+set(HAVE_SOCKETPAIR 1)
+set(HAVE_STDATOMIC_H 1)
+set(HAVE_STDBOOL_H 1)
+set(HAVE_STDDEF_H 1)
+set(HAVE_STDINT_H 1)
+set(HAVE_STRCASECMP 1)
+set(HAVE_STRCMPI 0)
+set(HAVE_STRDUP 1)
+set(HAVE_STRERROR_R 1)
+set(HAVE_STRICMP 0)
+set(HAVE_STRINGS_H 1)
+if(_CURL_OLD_LINUX)
+ set(HAVE_STROPTS_H 1)
+else()
+ set(HAVE_STROPTS_H 0) # glibc 2.30 or newer. https://sourceware.org/legacy-ml/libc-alpha/2019-08/msg00029.html
+endif()
+set(HAVE_STRUCT_SOCKADDR_STORAGE 1)
+set(HAVE_STRUCT_TIMEVAL 1)
+if(ANDROID OR CMAKE_SYSTEM_NAME STREQUAL "iOS")
+ set(HAVE_SUSECONDS_T 1)
+endif()
+if(APPLE OR
+ CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+ set(HAVE_SYS_EVENTFD_H 0)
+elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR
+ CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" OR
+ CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
+ set(HAVE_SYS_EVENTFD_H 1)
+endif()
+if(CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_SYS_FILIO_H 0)
+else()
+ set(HAVE_SYS_FILIO_H 1)
+endif()
+set(HAVE_SYS_IOCTL_H 1)
+set(HAVE_SYS_PARAM_H 1)
+set(HAVE_SYS_POLL_H 1)
+set(HAVE_SYS_RESOURCE_H 1)
+set(HAVE_SYS_SELECT_H 1)
+if(CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_SYS_SOCKIO_H 0)
+else()
+ set(HAVE_SYS_SOCKIO_H 1)
+endif()
+set(HAVE_SYS_TYPES_H 1)
+set(HAVE_SYS_UN_H 1)
+if(CYGWIN)
+ set(HAVE_SYS_UTIME_H 1)
+else()
+ set(HAVE_SYS_UTIME_H 0)
+endif()
+set(HAVE_TERMIOS_H 1)
+if(CYGWIN OR
+ CMAKE_SYSTEM_NAME STREQUAL "Linux")
+ set(HAVE_TERMIO_H 1)
+else()
+ set(HAVE_TERMIO_H 0)
+endif()
+set(HAVE_TIME_T_UNSIGNED 0)
+set(HAVE_UNISTD_H 1)
+set(HAVE_UTIME 1)
+set(HAVE_UTIMES 1)
+set(HAVE_UTIME_H 1)
+set(HAVE_WRITABLE_ARGV 1)
+if(CYGWIN)
+ set(HAVE__SETMODE 1)
+endif()
+set(STDC_HEADERS 1)
+set(USE_UNIX_SOCKETS 1)
diff --git a/curl/CMake/win32-cache.cmake b/curl/CMake/win32-cache.cmake
new file mode 100644
index 000000000..4fe9eb113
--- /dev/null
+++ b/curl/CMake/win32-cache.cmake
@@ -0,0 +1,240 @@
+#***************************************************************************
+# _ _ ____ _
+# Project ___| | | | _ \| |
+# / __| | | | |_) | |
+# | (__| |_| | _ <| |___
+# \___|\___/|_| \_\_____|
+#
+# Copyright (C) Daniel Stenberg, , 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
+#
+###########################################################################
+if(NOT WIN32)
+ message(FATAL_ERROR "This file should be included on Windows platform only")
+endif()
+
+if(MINGW)
+ set(HAVE_BASENAME 1)
+ set(HAVE_BOOL_T 1) # = HAVE_STDBOOL_H
+ set(HAVE_DIRENT_H 1)
+ set(HAVE_FTRUNCATE 1)
+ set(HAVE_GETTIMEOFDAY 1)
+ set(HAVE_LIBGEN_H 1)
+ set(HAVE_OPENDIR 1)
+ set(HAVE_SNPRINTF 1)
+ set(HAVE_STDBOOL_H 1)
+ set(HAVE_STDDEF_H 1) # detected by CMake internally in check_type_size()
+ set(HAVE_STDINT_H 1) # detected by CMake internally in check_type_size()
+ set(HAVE_STRINGS_H 1) # wrapper to string.h
+ set(HAVE_SYS_PARAM_H 1)
+ set(HAVE_UNISTD_H 1)
+ set(HAVE_UTIME_H 1) # wrapper to sys/utime.h
+else()
+ set(HAVE_DIRENT_H 0)
+ set(HAVE_FTRUNCATE 0)
+ set(HAVE_GETTIMEOFDAY 0)
+ set(HAVE_LIBGEN_H 0)
+ set(HAVE_OPENDIR 0)
+ set(HAVE_STRINGS_H 0)
+ set(HAVE_SYS_PARAM_H 0)
+ set(HAVE_UTIME_H 0)
+ if(MSVC)
+ set(HAVE_UNISTD_H 0)
+ set(HAVE_STDDEF_H 1) # detected by CMake internally in check_type_size()
+ if(MSVC_VERSION GREATER_EQUAL 1600)
+ set(HAVE_STDINT_H 1) # detected by CMake internally in check_type_size()
+ else()
+ set(HAVE_STDINT_H 0) # detected by CMake internally in check_type_size()
+ endif()
+ if(MSVC_VERSION GREATER_EQUAL 1800)
+ set(HAVE_STDBOOL_H 1)
+ else()
+ set(HAVE_STDBOOL_H 0)
+ endif()
+ set(HAVE_BOOL_T "${HAVE_STDBOOL_H}")
+ if(MSVC_VERSION GREATER_EQUAL 1900)
+ set(HAVE_SNPRINTF 1)
+ else()
+ set(HAVE_SNPRINTF 0)
+ endif()
+ set(HAVE_BASENAME 0)
+ endif()
+endif()
+
+if((CMAKE_C_COMPILER_ID STREQUAL "GNU" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 4.9) OR
+ (CMAKE_C_COMPILER_ID STREQUAL "Clang" AND CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 3.6))
+ # MinGW or clang-cl
+ set(HAVE_STDATOMIC_H 1)
+ set(HAVE_ATOMIC 1)
+else()
+ set(HAVE_STDATOMIC_H 0)
+ set(HAVE_ATOMIC 0)
+endif()
+
+set(HAVE_ACCEPT4 0)
+set(HAVE_ALARM 0)
+set(HAVE_ARC4RANDOM 0)
+set(HAVE_ARPA_INET_H 0)
+set(HAVE_CLOSESOCKET 1)
+set(HAVE_EVENTFD 0)
+set(HAVE_FCNTL 0)
+set(HAVE_FCNTL_H 1)
+set(HAVE_FCNTL_O_NONBLOCK 0)
+set(HAVE_FNMATCH 0)
+set(HAVE_FREEADDRINFO 1) # Available in Windows XP and newer
+set(HAVE_FSETXATTR 0)
+set(HAVE_GETADDRINFO 1) # Available in Windows XP and newer
+set(HAVE_GETEUID 0)
+set(HAVE_GETHOSTBYNAME_R 0)
+set(HAVE_GETHOSTBYNAME_R_3 0)
+set(HAVE_GETHOSTBYNAME_R_3_REENTRANT 0)
+set(HAVE_GETHOSTBYNAME_R_5 0)
+set(HAVE_GETHOSTBYNAME_R_5_REENTRANT 0)
+set(HAVE_GETHOSTBYNAME_R_6 0)
+set(HAVE_GETHOSTBYNAME_R_6_REENTRANT 0)
+set(HAVE_GETHOSTNAME 1)
+set(HAVE_GETIFADDRS 0)
+set(HAVE_GETPASS_R 0)
+set(HAVE_GETPEERNAME 1)
+set(HAVE_GETPPID 0)
+set(HAVE_GETPWUID 0)
+set(HAVE_GETPWUID_R 0)
+set(HAVE_GETRLIMIT 0)
+set(HAVE_GETSOCKNAME 1)
+set(HAVE_GLIBC_STRERROR_R 0)
+set(HAVE_GMTIME_R 0)
+set(HAVE_IFADDRS_H 0)
+set(HAVE_INET_NTOP 0)
+set(HAVE_INET_PTON 0)
+set(HAVE_IOCTLSOCKET 1)
+set(HAVE_IOCTLSOCKET_CAMEL 0)
+set(HAVE_IOCTLSOCKET_CAMEL_FIONBIO 0)
+set(HAVE_IOCTLSOCKET_FIONBIO 1)
+set(HAVE_IOCTL_FIONBIO 0)
+set(HAVE_IOCTL_SIOCGIFADDR 0)
+set(HAVE_IO_H 1)
+set(HAVE_LINUX_TCP_H 0)
+set(HAVE_LOCALE_H 1)
+set(HAVE_MEMRCHR 0)
+set(HAVE_MSG_NOSIGNAL 0)
+set(HAVE_NETDB_H 0)
+set(HAVE_NETINET_IN6_H 0)
+set(HAVE_NETINET_IN_H 0)
+set(HAVE_NETINET_TCP_H 0)
+set(HAVE_NETINET_UDP_H 0)
+set(HAVE_NET_IF_H 0)
+set(HAVE_PIPE 0)
+set(HAVE_PIPE2 0)
+set(HAVE_POLL 0)
+set(HAVE_POLL_H 0)
+set(HAVE_POSIX_STRERROR_R 0)
+set(HAVE_PWD_H 0)
+set(HAVE_RECV 1)
+set(HAVE_SELECT 1)
+set(HAVE_SEND 1)
+set(HAVE_SENDMMSG 0)
+set(HAVE_SENDMSG 0)
+set(HAVE_SETLOCALE 1)
+set(HAVE_SETMODE 1)
+set(HAVE_SETRLIMIT 0)
+set(HAVE_SETSOCKOPT_SO_NONBLOCK 0)
+set(HAVE_SIGACTION 0)
+set(HAVE_SIGINTERRUPT 0)
+set(HAVE_SIGNAL 1)
+set(HAVE_SIGSETJMP 0)
+set(HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 1)
+set(HAVE_SOCKET 1)
+set(HAVE_SOCKETPAIR 0)
+set(HAVE_STRDUP 1)
+set(HAVE_STRERROR_R 0)
+set(HAVE_STROPTS_H 0)
+set(HAVE_STRUCT_SOCKADDR_STORAGE 1)
+set(HAVE_STRUCT_TIMEVAL 1)
+set(HAVE_SYS_EVENTFD_H 0)
+set(HAVE_SYS_FILIO_H 0)
+set(HAVE_SYS_IOCTL_H 0)
+set(HAVE_SYS_POLL_H 0)
+set(HAVE_SYS_RESOURCE_H 0)
+set(HAVE_SYS_SELECT_H 0)
+set(HAVE_SYS_SOCKIO_H 0)
+set(HAVE_SYS_TYPES_H 1)
+set(HAVE_SYS_UN_H 0)
+set(HAVE_SYS_UTIME_H 1)
+set(HAVE_TERMIOS_H 0)
+set(HAVE_TERMIO_H 0)
+set(HAVE_TIME_T_UNSIGNED 0)
+set(HAVE_UTIME 1)
+set(HAVE_UTIMES 0)
+set(HAVE__SETMODE 1)
+set(STDC_HEADERS 1)
+
+# Types and sizes
+
+set(HAVE_SIZEOF_SA_FAMILY_T 0)
+set(HAVE_SIZEOF_SUSECONDS_T 0)
+
+if(MINGW OR MSVC)
+ curl_prefill_type_size("INT" 4)
+ curl_prefill_type_size("LONG" 4)
+ curl_prefill_type_size("LONG_LONG" 8)
+ curl_prefill_type_size("__INT64" 8)
+ curl_prefill_type_size("CURL_OFF_T" 8)
+ # CURL_SOCKET_T, SIZE_T: 8 for _WIN64, 4 otherwise
+ # TIME_T: 8 for _WIN64 or UCRT or MSVC and not Windows CE, 4 otherwise
+ # Also 4 for non-UCRT 32-bit when _USE_32BIT_TIME_T is set.
+ # mingw-w64 sets _USE_32BIT_TIME_T unless __MINGW_USE_VC2005_COMPAT is explicit defined.
+ if(MSVC)
+ set(HAVE_SIZEOF_SSIZE_T 0)
+ set(HAVE_FILE_OFFSET_BITS 0)
+ curl_prefill_type_size("OFF_T" 4)
+ curl_prefill_type_size("ADDRESS_FAMILY" 2)
+ else()
+ # SSIZE_T: 8 for _WIN64, 4 otherwise
+ if(MINGW64_VERSION)
+ if(MINGW64_VERSION VERSION_GREATER_EQUAL 3.0)
+ set(HAVE_FILE_OFFSET_BITS 1)
+ curl_prefill_type_size("OFF_T" 8)
+ endif()
+ if(MINGW64_VERSION VERSION_GREATER_EQUAL 2.0)
+ curl_prefill_type_size("ADDRESS_FAMILY" 2)
+ else()
+ set(HAVE_SIZEOF_ADDRESS_FAMILY 0)
+ endif()
+ endif()
+ endif()
+endif()
+
+# Windows CE exceptions
+
+if(WINCE)
+ set(HAVE_FREEADDRINFO 0)
+ set(HAVE_GETADDRINFO 0)
+ set(HAVE_LOCALE_H 0)
+ set(HAVE_SETLOCALE 0)
+ set(HAVE_SETMODE 0)
+ set(HAVE_SIGNAL 0)
+ set(HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID 0)
+ curl_prefill_type_size("CURL_SOCKET_T" 4)
+ curl_prefill_type_size("TIME_T" 4)
+ curl_prefill_type_size("SIZE_T" 4)
+ if(MINGW32CE)
+ set(HAVE_STRTOK_R 0)
+ set(HAVE__SETMODE 0)
+ set(HAVE_FILE_OFFSET_BITS 0)
+ set(HAVE_SIZEOF_ADDRESS_FAMILY 0)
+ curl_prefill_type_size("SSIZE_T" 4)
+ curl_prefill_type_size("OFF_T" 4)
+ endif()
+endif()
diff --git a/curl/CMakeLists.txt b/curl/CMakeLists.txt
index 3bfb5febd..c0cc0c57b 100644
--- a/curl/CMakeLists.txt
+++ b/curl/CMakeLists.txt
@@ -5,11 +5,11 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 1998 - 2017, Daniel Stenberg, , et al.
+# Copyright (C) Daniel Stenberg, , 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.haxx.se/docs/copyright.html.
+# 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
@@ -18,472 +18,1248 @@
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
# KIND, either express or implied.
#
+# SPDX-License-Identifier: curl
+#
###########################################################################
-# curl/libcurl CMake script
# by Tetetest and Sukender (Benoit Neil)
-# TODO:
-# The output .so file lacks the soname number which we currently have within the lib/Makefile.am file
-# Add full (4 or 5 libs) SSL support
-# Add INSTALL target (EXTRA_DIST variables in Makefile.am may be moved to Makefile.inc so that CMake/CPack is aware of what's to include).
-# Add CTests(?)
-# Check on all possible platforms
-# Test with as many configurations possible (With or without any option)
-# Create scripts that help keeping the CMake build system up to date (to reduce maintenance). According to Tetetest:
-# - lists of headers that 'configure' checks for;
-# - curl-specific tests (the ones that are in m4/curl-*.m4 files);
-# - (most obvious thing:) curl version numbers.
-# Add documentation subproject
-#
-# To check:
-# (From Daniel Stenberg) The cmake build selected to run gcc with -fPIC on my box while the plain configure script did not.
-# (From Daniel Stenberg) The gcc command line use neither -g nor any -O options. As a developer, I also treasure our configure scripts's --enable-debug option that sets a long range of "picky" compiler options.
-cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
-set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake;${CMAKE_MODULE_PATH}")
+cmake_minimum_required(VERSION 3.7...3.16 FATAL_ERROR)
+message(STATUS "Using CMake version ${CMAKE_VERSION}")
+
+# Collect command-line arguments for buildinfo.txt.
+# Must reside at the top of the script to work as expected.
+set(_cmake_args "")
+if(NOT "$ENV{CURL_BUILDINFO}$ENV{CURL_CI}$ENV{CI}" STREQUAL "")
+ get_cmake_property(_cache_vars CACHE_VARIABLES)
+ foreach(_cache_var IN ITEMS ${_cache_vars})
+ get_property(_cache_var_helpstring CACHE ${_cache_var} PROPERTY HELPSTRING)
+ if(_cache_var_helpstring STREQUAL "No help, variable specified on the command line.")
+ get_property(_cache_var_type CACHE ${_cache_var} PROPERTY TYPE)
+ get_property(_cache_var_value CACHE ${_cache_var} PROPERTY VALUE)
+ if(_cache_var_type STREQUAL "UNINITIALIZED")
+ set(_cache_var_type)
+ else()
+ set(_cache_var_type ":${_cache_var_type}")
+ endif()
+ string(APPEND _cmake_args " -D${_cache_var}${_cache_var_type}=\"${_cache_var_value}\"")
+ endif()
+ endforeach()
+endif()
+
+set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake" ${CMAKE_MODULE_PATH})
include(Utilities)
include(Macros)
include(CMakeDependentOption)
include(CheckCCompilerFlag)
-project( CURL C )
+file(STRINGS "${CMAKE_CURRENT_SOURCE_DIR}/include/curl/curlver.h" _curl_version_h_contents REGEX "#define LIBCURL_VERSION( |_NUM )")
+string(REGEX MATCH "#define LIBCURL_VERSION \"[^\"]*" _curl_version ${_curl_version_h_contents})
+string(REGEX REPLACE "[^\"]+\"" "" _curl_version ${_curl_version})
+string(REGEX MATCH "#define LIBCURL_VERSION_NUM 0x[0-9a-fA-F]+" _curl_version_num ${_curl_version_h_contents})
+string(REGEX REPLACE "[^0]+0x" "" _curl_version_num ${_curl_version_num})
+unset(_curl_version_h_contents)
+
+message(STATUS "curl version=[${_curl_version}]")
+
+string(REGEX REPLACE "([0-9]+\.[0-9]+\.[0-9]+).+" "\\1" _curl_version_sem "${_curl_version}")
+project(CURL
+ VERSION "${_curl_version_sem}"
+ LANGUAGES C)
+
+# CMake does not recognize some targets accurately. Touch up configuration manually as a workaround.
+if(WINDOWS_STORE AND MINGW) # mingw UWP build
+ # CMake (as of v3.31.2) gets confused and applies the MSVC rc.exe command-line
+ # template to windres. Reset it to the windres template via 'Modules/Platform/Windows-windres.cmake':
+ set(CMAKE_RC_COMPILE_OBJECT " -O coff