summaryrefslogtreecommitdiff
path: root/ConfigureChecks.cmake
diff options
context:
space:
mode:
authorAllen Winter <allen.winter@kdab.com>2015-05-02 08:15:39 -0400
committerAllen Winter <allen.winter@kdab.com>2015-05-02 08:15:39 -0400
commit092c2f83891e7c3bd3a9a7b0b23add92d9af90d2 (patch)
treeb9dd725510201a6a538101c1195a9f22f4453f8a /ConfigureChecks.cmake
parentb9e3d247bc5f241190a4ee150f725728531c4255 (diff)
downloadlibical-git-092c2f83891e7c3bd3a9a7b0b23add92d9af90d2.tar.gz
WIP: porting to Windows with MSVC 2012
Diffstat (limited to 'ConfigureChecks.cmake')
-rw-r--r--ConfigureChecks.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index a032588e..85a4f5cb 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -18,6 +18,8 @@ check_function_exists(access HAVE_ACCESS) #Unix <unistd.h>
check_function_exists(_access HAVE__ACCESS) #Windows <io.h>
check_function_exists(backtrace HAVE_BACKTRACE)
check_function_exists(fork HAVE_FORK)
+check_function_exists(getpid HAVE_GETPID) #Unix <unistd.h>
+check_function_exists(_getpid HAVE__GETPID) #Windows <process.h>
check_function_exists(getpwent HAVE_GETPWENT)
check_function_exists(gmtime_r HAVE_GMTIME_R)
check_function_exists(isspace HAVE_ISSPACE)