inttypes and stdint cleanup (#30)
* cleanup: remove references to no longer used stdint.h Since 19c50b9d (Unconditionally use inttypes.h instead of trying for stdint.h (simplification) and remove the now unnecessary inclusion in pcre2_internal.h., 2018-11-14), stdint.h is no longer used. Remove checks for it in autotools and CMake and document better the expected build failures for systems that might have stdint.h (C99) and not inttypes.h (from POSIX), like old Windows. * cleanup: remove detection for inttypes.h which is a hard dependency CMake checks for standard headers are not meant to be used for hard dependencies, so will prevent a possible fallback to work. Alternatively, the header could be checked to make the configuration fail instead of breaking the build, but that was punted, as it was missing anyway from autotools.
Showing
- CMakeLists.txt 0 additions, 2 deletionsCMakeLists.txt
- NON-AUTOTOOLS-BUILD 4 additions, 4 deletionsNON-AUTOTOOLS-BUILD
- config-cmake.h.in 0 additions, 2 deletionsconfig-cmake.h.in
- src/config.h.generic 0 additions, 6 deletionssrc/config.h.generic
- src/config.h.in 0 additions, 6 deletionssrc/config.h.in
- src/pcre2.h.generic 2 additions, 2 deletionssrc/pcre2.h.generic
- src/pcre2.h.in 2 additions, 2 deletionssrc/pcre2.h.in
Please register or sign in to comment