mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 13:26:01 +03:00
- Included Dockerfile to automate the setup process of prerequisites and build of libModSecurity binaries.
19 lines
740 B
CMake
19 lines
740 B
CMake
include(CheckIncludeFile)
|
|
include(CheckIncludeFiles)
|
|
|
|
check_include_file("dlfcn.h" HAVE_DLFCN_H)
|
|
check_include_file("inttypes.h" HAVE_INTTYPES_H)
|
|
check_include_file("stdint.h" HAVE_STDINT_H)
|
|
check_include_file("stdio.h" HAVE_STDIO_H)
|
|
check_include_file("stdlib.h" HAVE_STDLIB_H)
|
|
check_include_file("string" HAVE_STRING)
|
|
check_include_file("strings.h" HAVE_STRINGS_H)
|
|
check_include_file("string.h" HAVE_STRING_H)
|
|
check_include_file("sys/stat.h" HAVE_SYS_STAT_H)
|
|
check_include_file("sys/types.h" HAVE_SYS_TYPES_H)
|
|
check_include_file("sys/utsname.h" HAVE_SYS_UTSNAME_H)
|
|
check_include_file("unistd.h" HAVE_UNISTD_H)
|
|
|
|
#/* Define to 1 if you have the ANSI C header files. */
|
|
check_include_files("stdlib.h;stdarg.h;string.h;float.h" STDC_HEADERS)
|