changeset 14579:aacd81655870

The test to check for working pthreads fails if the system can support pthreads without any gcc options (for instance, Darwin). patch by Alexander Strange <astrange at ithinksw dot com>
author diego
date Sat, 22 Jan 2005 18:30:23 +0000
parents 5f7fa0a7e4a8
children 5becfc1e6c16
files configure
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Sat Jan 22 18:12:40 2005 +0000
+++ b/configure	Sat Jan 22 18:30:23 2005 +0000
@@ -2691,7 +2691,7 @@
 elif hpux ; then
   _ld_pthread=''
 elif ( cc_check && $TMPO ) ; then              # QNX
-  _ld_pthread=''
+  _ld_pthread=' ' # _ld_pthread='' would disable pthreads, but the test worked
 elif ( cc_check -lpthread && $TMPO ) ; then
   _ld_pthread='-lpthread'
 elif ( cc_check -pthread && $TMPO ) ; then