1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-30 05:59:07 +00:00

Fixes typo in ConkyPlatformChecks

Fixes #162 by changing CheckInlcudeFile to
CheckIncludeFiles so that CMake can correctly include
the module.  Change calls to check_include_file to
check_include_files.
This commit is contained in:
Casey Webster 2015-11-16 17:57:43 +00:00
parent 7ae6b00f30
commit 3a574ba88b

View File

@ -22,7 +22,7 @@
include(FindPkgConfig) include(FindPkgConfig)
include(CheckFunctionExists) include(CheckFunctionExists)
include(CheckIncludeFile) include(CheckIncludeFiles)
include(CheckSymbolExists) include(CheckSymbolExists)
# Check for some headers # Check for some headers
@ -119,7 +119,7 @@ if(BUILD_HTTP)
endif(BUILD_HTTP) endif(BUILD_HTTP)
if(BUILD_NCURSES) if(BUILD_NCURSES)
check_include_file(ncurses.h NCURSES_H) check_include_files(ncurses.h NCURSES_H)
find_library(NCURSES_LIB NAMES ncurses) find_library(NCURSES_LIB NAMES ncurses)
if(NOT NCURSES_H OR NOT NCURSES_LIB) if(NOT NCURSES_H OR NOT NCURSES_LIB)
message(FATAL_ERROR "Unable to find ncurses library") message(FATAL_ERROR "Unable to find ncurses library")
@ -141,7 +141,7 @@ if(BUILD_MYSQL)
endif(BUILD_MYSQL) endif(BUILD_MYSQL)
if(BUILD_WLAN) if(BUILD_WLAN)
check_include_file(iwlib.h IWLIB_H -D_GNU_SOURCE) check_include_files(iwlib.h IWLIB_H -D_GNU_SOURCE)
if(NOT IWLIB_H) if(NOT IWLIB_H)
message(FATAL_ERROR "Unable to find iwlib.h") message(FATAL_ERROR "Unable to find iwlib.h")
endif(NOT IWLIB_H) endif(NOT IWLIB_H)
@ -167,7 +167,7 @@ endif(BUILD_PORT_MONITORS)
# Check for iconv # Check for iconv
if(BUILD_ICONV) if(BUILD_ICONV)
check_include_file(iconv.h HAVE_ICONV_H) check_include_files(iconv.h HAVE_ICONV_H)
find_library(ICONV_LIBRARY NAMES iconv) find_library(ICONV_LIBRARY NAMES iconv)
if(NOT ICONV_LIBRARY) if(NOT ICONV_LIBRARY)
# maybe iconv() is provided by libc # maybe iconv() is provided by libc