Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Utilities: Suppress warnings in third-party code with IBMClang | Aaron Liu | 2022-01-27 | 1 | -1/+1 |
| | |||||
* | cmnghttp2: check for HAVE_SIZEOF_SSIZE_T and not HAVE_SSIZE_T | Ali Mohammad Pur | 2022-01-06 | 1 | -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. | ||||
* | LCC: Add dedicated support for MCST LCC compiler | makise-homura | 2021-10-15 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | Divert LCC compiler as a new one, instead of treating it as GNU. Since old times, Elbrus C/C++/Fortran Compiler (LCC) by MCST has been passing checks for GNU compilers, so it has been identified as GNU. Now, with intent of seriously upstreaming its support, it has been added as a separate LCC compiler, and its version displays not a supported GCC version, but LCC version itself (e.g. LCC 1.25.19 instead of GNU 7.3.0). This commit adds its support for detection, and also converts basically every check like 'is this compiler GNU?' to 'is this compiler GNU or LCC?'. The only places where this check is untouched, is where it regards other platforms where LCC is unavailable (primarily non-Linux), and where it REALLY differs from GNU compiler. Note: this transition may break software that are already ported to Elbrus, but hardly relies that LCC will be detected as GNU; still such software is not known. | ||||
* | Utilities: Suppress warnings in third-party code with NVHPC | Brad King | 2021-04-20 | 1 | -1/+1 |
| | |||||
* | Utilities: Suppress warnings in third-party code when using IntelLLVM | Brad King | 2021-01-28 | 1 | -1/+1 |
| | |||||
* | Refactoring: Third-parties public headers are under cm3p prefix | Marc Chevrier | 2020-05-07 | 1 | -1/+2 |
| | | | | Fixes: #20666 | ||||
* | nghttp2: Build the library within CMake for use by our curl | Brad King | 2020-04-03 | 2 | -0/+69 |
| | | | | | | Provide our own minimal `config.h` since the upstream one is much larger to support other parts of its distribution. Compile with warnings disabled since this is third-party code. | ||||
* | Merge branch 'upstream-nghttp2' into curl-http2 | Brad King | 2020-04-01 | 48 | -0/+30985 |
# By nghttp2 upstream * upstream-nghttp2: nghttp2 2019-11-15 (cc05c5fe) |