From 672e81e8de0a72824a9c7c0bc1356de5b592d4fb Mon Sep 17 00:00:00 2001 From: RElesgoe Date: Sat, 28 Jul 2018 18:15:47 -0700 Subject: [PATCH] Fixed file existence check in CMake --- ConfigureChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake index 2f336ca..fdb7e8a 100644 --- a/ConfigureChecks.cmake +++ b/ConfigureChecks.cmake @@ -106,7 +106,7 @@ message(STATUS "Checking optional POSIX/required SUS headers") check_include_file_cxx(sys/timeb.h HAVE_SYS_TIMEB_H) message(STATUS "Checking FreeBSD-based headers") -check_include_files("sys/types.h;sys/event.h" HAVE_SYS_EVENT_H) +check_include_file_cxx(sys/event.h HAVE_SYS_EVENT_H) check_include_file_cxx(sys/param.h HAVE_SYS_PARAM_H) message(STATUS "Checking BSD headers")