diff options
author | Chris Robinson <[email protected]> | 2014-05-01 14:15:31 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-01 14:15:31 -0700 |
commit | d90f684f162d4b91a58b61bb2a60ec1257c1dd70 (patch) | |
tree | aa209d2a153ddb4574b86bc31c9a8060531bb90a /CMakeLists.txt | |
parent | 804b08e0ca7931c304d6a2686b036a397cb65b0e (diff) |
Use a backup in case pthread_mutex_timedlock isn't available
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e42288ad..3f1674a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -460,6 +460,8 @@ IF(NOT HAVE_WINDOWS_H) CHECK_SYMBOL_EXISTS(pthread_mutexattr_setkind_np "pthread.h;pthread_np.h" HAVE_PTHREAD_MUTEXATTR_SETKIND_NP) ENDIF() + CHECK_SYMBOL_EXISTS(pthread_mutex_timedlock pthread.h HAVE_PTHREAD_MUTEX_TIMEDLOCK) + CHECK_LIBRARY_EXISTS(rt clock_gettime "" HAVE_LIBRT) IF(HAVE_LIBRT) SET(EXTRA_LIBS rt ${EXTRA_LIBS}) |