summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl/CMake/Macros.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'upstream-curl' into update-curlBrad King2024-01-311-5/+5
| | | | | * upstream-curl: curl 2024-01-31 (5ce164e0)
* Merge branch 'upstream-curl' into update-curlBrad King2023-12-121-13/+0
| | | | | * upstream-curl: curl 2023-12-06 (7161cb17)
* Merge branch 'upstream-curl' into update-curlBrad King2023-02-211-1/+1
| | | | | * upstream-curl: curl 2023-02-20 (046209e5)
* Merge branch 'upstream-curl' into update-curlBrad King2022-10-311-1/+3
| | | | | * upstream-curl: curl 2022-10-26 (cd95ee9f)
* Merge branch 'upstream-curl' into update-curlBrad King2020-12-091-1/+12
| | | | | * upstream-curl: curl 2020-12-09 (e0528597)
* Merge branch 'upstream-curl' into update-curlBrad King2020-06-241-0/+21
| | | | | * upstream-curl: curl 2020-06-23 (e9db32a0)
* Merge branch 'upstream-curl' into update-curlBrad King2018-10-221-49/+13
| | | | | * upstream-curl: curl 2018-09-04 (432eb5f5)
* Merge branch 'upstream-curl' into update-curlBrad King2017-10-101-0/+29
| | | | | * upstream-curl: curl 2017-10-04 (3ea76790)
* Merge branch 'curl-upstream' into update-curlBrad King2015-08-121-1/+7
| | | | | | | Resolve conflicts by taking upstream side when possible and otherwise integrating the changes from both sides. Be carful in CMakeLists.txt where the OPENSSL code block that we modified previously has moved, and preserve our previous modifications in the new location.
* curl: Fix detection of headers with dependenciesBrad King2014-11-101-1/+1
| | | | | | Restore the check_include_file_concat functionality broken in upstream curl. The <net/if.h> header on older OS X versions depends on <sys/socket.h> begin included first, for example.
* curl: Simplify if() conditions on check result variablesBrad King2014-10-301-4/+4
| | | | | | | | | | | Remove use of an old hack that takes advantage of the auto-dereference behavior of the if() command to detect if a variable is defined. The hack has the form: if("${VAR} MATCHES "^${VAR}$") where "${VAR}" is a macro argument reference. Use if(DEFINED) instead. This also avoids warnings for CMake Policy CMP0054.
* Merge branch 'curl-upstream' into update-curlBrad King2014-10-291-0/+89
Resolve all conflicts in favor of the upstream side. We can re-apply specific changes later.