summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl/CMake/Macros.cmake
Commit message (Collapse)AuthorAgeFilesLines
* 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.