summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index 75d77b75b7..037aaf5132 100755
--- a/configure
+++ b/configure
@@ -1080,15 +1080,17 @@ else
fi
echores "$_dl"
-
echocheck "pthread"
cat > $TMPC << EOF
+#include <pthread.h>
int main(void) { (void) pthread_create (0, 0, 0, 0); return 0; }
EOF
if cc_check -lpthread ; then
_ld_pthread='-lpthread'
elif cc_check -pthread ; then
_ld_pthread='-pthread'
+elif cc_check ; then # QNX
+ _ld_pthread=''
else
die "Lib pthread not found."
fi