Include CheckFunctionExists explicitly
authorManuel Nickschas <sputnick@quassel-irc.org>
Mon, 27 Feb 2012 21:33:47 +0000 (22:33 +0100)
committerManuel Nickschas <sputnick@quassel-irc.org>
Mon, 27 Feb 2012 21:33:47 +0000 (22:33 +0100)
Seems to be included transitively not in all configurations.

Also fix capitalization of the call to adhere to our cmake style.

CMakeLists.txt

index 291e21c..9899915 100644 (file)
@@ -23,6 +23,7 @@
 
 project(QuasselIRC)
 
+include(CheckFunctionExists)
 include(CheckIncludeFile)
 
 # cmake 2.6.2 is required for KDE >=4.2 and should be widespread enough now
@@ -398,7 +399,7 @@ if(HAVE_INDICATEQT)
   add_definitions(-DXDG_APPS_INSTALL_DIR=${XDG_APPS_INSTALL_DIR})
 endif(HAVE_INDICATEQT)
 
-CHECK_FUNCTION_EXISTS(umask HAVE_UMASK)
+check_function_exists(umask HAVE_UMASK)
 if(HAVE_UMASK)
   add_definitions(-DHAVE_UMASK)
 endif(HAVE_UMASK)