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

Reverts a change from check_include_file to files

One of the check_include_file checks in ConkyPlatformChecks should
not have been changed to check_include_files because the latter
takes 2 arguments and this call gives 3 (and doens't work right
without the third).
This commit is contained in:
Casey Webster 2015-11-17 15:08:58 +00:00
parent 3a574ba88b
commit 2f362e44a5

View File

@ -141,7 +141,7 @@ if(BUILD_MYSQL)
endif(BUILD_MYSQL)
if(BUILD_WLAN)
check_include_files(iwlib.h IWLIB_H -D_GNU_SOURCE)
check_include_file(iwlib.h IWLIB_H -D_GNU_SOURCE)
if(NOT IWLIB_H)
message(FATAL_ERROR "Unable to find iwlib.h")
endif(NOT IWLIB_H)