aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-22 18:30:23 +0000
committerGravatar diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-01-22 18:30:23 +0000
commit20f5b528547e645175f50d3f652f237b17716b58 (patch)
tree68239f5a92d77181dd06cb9bcf2f00de7dac72db
parentd601428b9888a03610e3e1996ef92d2c38dc725c (diff)
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> git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14580 b3059339-0415-0410-9bf9-f77b7e298cf2
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 21184034d3..85a63abc37 100755
--- a/configure
+++ b/configure
@@ -2691,7 +2691,7 @@ if mingw32 ; then
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