summaryrefslogtreecommitdiffstats
path: root/Utilities
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'cmake-minimum'Brad King2022-02-242-2/+2
|\ | | | | | | | | | | | | | | | | 14eb8a6ab9 libarchive: Simplify hard-coded options for build within CMake d6b811fb82 Require CMake 3.13+ to configure CMake itself Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7016
| * Require CMake 3.13+ to configure CMake itselfBrad King2022-02-222-2/+2
| | | | | | | | | | | | In particular, guarantee that policy `CMP0077` has `NEW` behavior. This will be useful to hard-code options of third-party libraries without polluting our own cache.
* | Merge topic 'update-expat'Brad King2022-02-237-64/+134
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 07f9ce4f8c Merge branch 'upstream-expat' into update-expat 4c031b9417 expat 2022-02-20 (65a21f2b) 9d035ba28d expat: Update script to get Expat 2.4.6 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7015
| * | Merge branch 'upstream-expat' into update-expatBrad King2022-02-226-63/+133
| | | | | | | | | | | | | | | | | | # By Expat Upstream * upstream-expat: expat 2022-02-20 (65a21f2b)
| * | expat: Update script to get Expat 2.4.6Brad King2022-02-221-1/+1
| | |
* | | Utilities/Git: add a file for refs to ignore when blamingBen Boeckel2022-02-211-0/+38
| |/ |/| | | | | | | | | | | | | | | | | | | | | This file may be passed to `git blame` through either the `--ignore-revs-file` argument or the `blame.ignoreRevsFile` configuration to ignore certain commits when performing blames. Note that if Git is unable to find an older commit for a given line, commits in this file may still be given as the source of a line. The file uses features (namely empty lines and comments) which were added in Git 2.20, released Dec 2018.
* | Merge topic 'update-libarchive'Brad King2022-02-1875-1515/+3601
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be9ebc104a libarchive: Simplify code selecting CMake-specific build options 4a7a5718c6 libarchive: Update build within CMake after changes in 3.6.0 85cdeefc37 libarchive: include archive_platform.h first in blake2s sources b3644e460f Merge branch 'upstream-LibArchive' into update-libarchive 5d50940288 LibArchive 2022-02-09 (9147def1) 406503f620 libarchive: Update script to get 3.6.0 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !6988
| * | libarchive: Simplify code selecting CMake-specific build optionsBrad King2022-02-171-15/+0
| | | | | | | | | | | | | | | Reduce differences from upstream libarchive `CMakeLists.txt` code. Remove modifications inside code we disable anyway.
| * | libarchive: Update build within CMake after changes in 3.6.0Brad King2022-02-163-1/+4
| | |
| * | libarchive: include archive_platform.h first in blake2s sourcesBrad King2022-02-162-2/+4
| | | | | | | | | | | | | | | | | | Move the inclusion added in 3.6.0 to be first. This is the libarchive convention in all other `.c` sources. It ensures that the configured `_WIN32_WINNT` value is defined before including any system headers.
| * | Merge branch 'upstream-LibArchive' into update-libarchiveBrad King2022-02-1573-1500/+3596
| | | | | | | | | | | | | | | * upstream-LibArchive: LibArchive 2022-02-09 (9147def1)
| * | libarchive: Update script to get 3.6.0Brad King2022-02-151-1/+1
| | |
* | | Merge topic 'libarchive-openssl-crypto-checks'Brad King2022-02-181-0/+2
|\ \ \ | |/ / |/| / | |/ | | | | | | 483a1c248c libarchive: Fix OpenSSL crypto library checks for build inside CMake Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6997
| * libarchive: Fix OpenSSL crypto library checks for build inside CMakeBrad King2022-02-171-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libarchive's crypto library checks use its `config.h` inside the `try_compile` project. Since commit ade3b16e63 (libarchive: Use KWIML to get fixed-size integer types, 2020-06-01, v3.18.0-rc1~33^2), that header depends on KWIML inside CMake. Add the include directory for KWIML to the crypto library checks. Otherwise, they always fail due to not finding the KWIML headers, and libarchive decides not to link the crypto library. libarchive has other code besides the hash algorithms that depends on the crypto library if its ENABLE_OPENSSL option is enabled (which in CMake is controlled by CMAKE_USE_OPENSSL). It seems to be missing some conditions to link the crypto library in those cases, and instead relies on at least one of the above-mentioned checks to pass. If they all fail, and we are using system curl, we might not link the crypto library. Fixes: #23234
* | Merge topic 'post-rel-dev'Brad King2022-02-042-2/+2
|\ \ | |/ |/| | | | | | | | | | | | | | | 9a48012f93 Configure CMake itself with policies through CMake 3.22 a5a9687799 export: Increase maximum policy version in exported files to 3.22 a9ffded98c Add deprecation warnings for policies CMP0097 and below Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !6948
| * Configure CMake itself with policies through CMake 3.22Brad King2022-02-032-2/+2
| |
* | Tests: Run MFC test only when explicitly enabledBrad King2022-02-034-8/+0
|/ | | | | | | | Previously we used a complicated heuristic to decide whether or not to run the MFC test, but it sometimes decided incorrectly to run the test. Since that was first written, we have developed a convention for other tests to enable them via undocumented cache entries that are added only on machines known to meet the tests' requirements. Do that for MFC.
* Merge topic 'update-expat'Brad King2022-02-024-15/+27
|\ | | | | | | | | | | | | | | | | | | 338240fd21 Merge branch 'upstream-expat' into update-expat 8e0070b905 expat 2022-01-30 (81b89678) f06a4c2406 expat: Update script to get Expat 2.4.4 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !6933
| * Merge branch 'upstream-expat' into update-expatBrad King2022-02-013-14/+26
| | | | | | | | | | | | # By Expat Upstream * upstream-expat: expat 2022-01-30 (81b89678)
| * expat: Update script to get Expat 2.4.4Brad King2022-02-011-1/+1
| |
* | Utilities/Sphinx: Ignore warning in generated texinfo documentationBrad King2022-02-012-0/+4
|/
* Utilities: Suppress warnings in third-party code with IBMClangAaron Liu2022-01-2712-12/+12
|
* Merge topic 'ccmake-windows'Brad King2022-01-2059-0/+15556
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | e674e02c55 Help: Add release note for experimental ccmake support on Windows 5c9310c714 ci: Enable ccmake on Windows 9278c6e01a ccmake: Add Windows support using PDCurses b97c12babb ccmake: Refactor resizing logic into cmCursesForm bf11dab49d ccmake: Refactor BUILD_CursesDialog option logic bf94e01348 cmpdcurses: Add CMake build system 89703bc941 Merge branch 'upstream-PDCurses' into update-pdcurses f84c4112c3 PDCurses 2021-12-08 (f1cd4f45) ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6832
| * cmpdcurses: Add CMake build systemBrad King2022-01-181-0/+73
| |
| * Merge branch 'upstream-PDCurses' into update-pdcursesBrad King2022-01-1257-0/+15451
| | | | | | | | | | | | # By PDCurses Upstream * upstream-PDCurses: PDCurses 2021-12-08 (f1cd4f45)
| * pdcurses: Add script to import PDCurses from upstreamBrad King2022-01-121-0/+32
| |
* | Merge branch 'upstream-expat' into update-expatBrad King2022-01-187-19/+214
| | | | | | | | | | * upstream-expat: expat 2022-01-16 (57c7da69)
* | expat: Update script to get Expat 2.4.3Brad King2022-01-181-1/+1
| |
* | libuv: add cast to pass sockaddr_storage as sockaddr on windowsBrad King2022-01-131-1/+1
| | | | | | | | Tell the compiler the structs are layout-compatible.
* | Merge branch 'upstream-libuv' into update-libuvBrad King2022-01-1321-914/+169
| | | | | | | | | | | | # By libuv upstream * upstream-libuv: libuv 2022-01-13 (2fbfa035)
* | jsoncpp: Drop outdated CMake-specific READMEBrad King2022-01-121-66/+0
| | | | | | | | | | | | Since commit ee68d3eb8c (jsoncpp: Add script to update from upstream, 2017-08-28, v3.10.0-rc1~199^2~8) we use a script to maintain the jsoncpp vendor branch. Drop our readme that documented the old approach.
* | jsoncpp: Drop deprecation markupBrad King2022-01-121-2/+2
| | | | | | | | | | Apply the change from commit 0a0f71066f (jsoncpp: Drop deprecation markup, 2017-08-28, v3.10.0-rc1~199^2~3) to new markup instances.
* | Merge branch 'upstream-jsoncpp' into update-jsoncppBrad King2022-01-1211-81/+105
| | | | | | | | | | * upstream-jsoncpp: jsoncpp 2022-01-12 (42e892d9)
* | jsoncpp: Update script to get jsoncpp 1.9.5Brad King2022-01-121-1/+1
|/ | | | Use a few commits past the 1.9.5 release to get the CHERI alignment fix.
* curl: Set build options the way we need for CMakeBrad King2022-01-072-16/+19
|
* Merge branch 'upstream-curl' into update-curlBrad King2022-01-07101-2001/+3551
| | | | | * upstream-curl: curl 2022-01-05 (801bd513)
* curl: Update script to get curl 7.81.0Brad King2022-01-071-1/+1
|
* curl: Update script for new curl mailing list addressBrad King2022-01-071-1/+1
|
* cmnghttp2: check for HAVE_SIZEOF_SSIZE_T and not HAVE_SSIZE_TAli Mohammad Pur2022-01-061-4/+4
| | | | | | | | | The `check_type_size(ssize_t SIZEOF_SSIZE_T` call in cmcurl (referenced by the comment above) defines `HAVE_SIZEOF_SSIZE_T` and not `HAVE_SSIZE_T`. The `HAVE_SSIZE_T` variable *might* get defined, but via the `CHECK_TYPE_SIZE(ssize_t SSIZE_T)` call in cmlibarchive, which would be configured *after* cmnghttp2, and so the first configure would lead to an invalid `cmnghttp2/config.h` file.
* Utilities/Release: Update macOS signing script for CPack OSXX11 removalBrad King2021-12-061-1/+0
| | | | | | | Since commit 4ef974e6cb (CPack: Remove undocumented deprecated OSXX11 generator, 2021-11-05), the `CPack.OSXScriptLauncher.in` binary is no longer installed in the `CMake.app` bundle, so it does not need to be signed.
* Merge branch 'backport-3.22-rel-macos-sign-notarize' into ↵Brad King2021-12-061-0/+118
|\ | | | | | | rel-macos-sign-notarize
| * Utilities/Release: Add script to sign/notarize macOS application bundleBrad King2021-12-061-0/+118
| | | | | | | | | | | | | | We produce macOS binaries for `cmake.org` using GitLab CI jobs. Binaries for official releases are additionally signed and notarized manually by a maintainer with suitable signing certificates and Apple developer account credentials. Add a script to drive these steps.
| * libuv: Backport MinGW-w64 compilation fix to CMake 3.22 branchBrad King2021-11-161-0/+7
| | | | | | | | | | | | | | Backport libuv commit `3e90bc76` (build: fix build failures with MinGW new headers, 2021-11-03). Fixes: #22916
* | libuv: Fix clang-analyzer deadcode.DeadStores warning on LinuxBrad King2021-11-171-1/+2
| |
* | libuv: Convert C++-style comment to C-styleBrad King2021-11-171-1/+1
| |
* | libuv: Update CMake-internal buildsystemBrad King2021-11-171-0/+1
| |
* | libuv: Update uv__fs_copy_file_range signature in cmake-bootstrap.cBrad King2021-11-171-2/+2
| |
* | Merge branch 'upstream-libuv' into update-libuvBrad King2021-11-1758-1256/+2005
| | | | | | | | | | * upstream-libuv: libuv 2021-11-09 (0f696da5)
* | libuv: Build unix tcp support during CMake bootstrapBrad King2021-11-171-17/+0
| | | | | | | | | | | | Using the real `tcp.c` simplifies `cmake-bootstrap.c`, and its implementation doesn't seem to require any of the platform-specific definitions. Also, later it will be needed for `uv_socketpair`.
* | Merge topic 'lcc-compiler'Brad King2021-10-1912-20/+20
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 02b2607a5c Help: Add release note for MCST LCC compiler support e5d9fce03f LCC: Add dedicated support for MCST LCC compiler 2b9ef77944 CPack/DEB: deal with broken dpkg-shlibdeps on E2K architecture 0995c75301 Tests/RPM: skip tests tat rely on debugedit if it's not found ea55ac9a51 Tests/RunCMake/CommandLine: Deal with locales that are different from English Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6608