From a5ac6eb5247f6489f56cea332fdf73798df7d062 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 18 Jun 2012 02:04:10 -0700 Subject: [PATCH] Remove an outdated comment about _REENTRANT --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e91eab84..2262e87c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -358,8 +358,7 @@ IF(NOT HAVE_WINDOWS_H) # Some systems need pthread_np.h to get recursive mutexes CHECK_INCLUDE_FILES("pthread.h;pthread_np.h" HAVE_PTHREAD_NP_H) - # _GNU_SOURCE is needed on some systems for extra attributes, and - # _REENTRANT is needed for libc thread-safety + # _GNU_SOURCE is needed on some systems for extra attributes ADD_DEFINITIONS(-D_GNU_SOURCE=1) CHECK_LIBRARY_EXISTS(pthread pthread_create "" HAVE_LIBPTHREAD) IF(HAVE_LIBPTHREAD)