From 41ba28892a04ab8a35a2751b4b7801414706f284 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 6 May 2021 16:49:09 -0400 Subject: Forget about ARG_MAX. The likelihood of accepting an unfathomably large input from the environment is pretty low --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 04e6239..5929cff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,9 +8,6 @@ set(LIB_SOURCES lib/cleanpath.c) set(MAIN_SOURCES src/main.c) set(INCLUDES include/cleanpath.h) -CHECK_INCLUDE_FILE(sys/limits.h HAVE_SYS_LIMIT_H) -CHECK_INCLUDE_FILE(linux/limits.h HAVE_LINUX_LIMIT_H) - configure_file ("${PROJECT_SOURCE_DIR}/config.h.in" "${PROJECT_BINARY_DIR}/include/config.h") -- cgit