diff options
author | Nathan Moinvaziri <nathan@nathanm.com> | 2021-03-16 09:35:37 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2021-03-17 18:33:45 +0100 |
commit | b22bc515c2f220da0b583b979a354b3459dd3a09 (patch) | |
tree | 19af20fa88a79830dacc826bc38499ffbe901ad2 | |
parent | 681391885c98ce9edab23c154feeef8220c981c8 (diff) |
Remove unused header checks from CMake. These are legacy checks that zlib used to use.
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2283fa7..49f2e75 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -316,10 +316,7 @@ endif() # # Check for standard/system includes # -check_include_file(sys/types.h HAVE_SYS_TYPES_H) check_include_file(stdarg.h HAVE_STDARG_H) -check_include_file(stdint.h HAVE_STDINT_H) -check_include_file(stddef.h HAVE_STDDEF_H) check_include_file(sys/sdt.h HAVE_SYS_SDT_H) if(HAVE_SYS_SDT_H) add_definitions(-DHAVE_SYS_SDT_H) |