summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2018-09-21 09:40:56 +0200
committerDaniel Stenberg <daniel@haxx.se>2018-09-21 22:55:32 +0200
commit6f0afb842c733034bf36b553059270321b38c856 (patch)
tree3f5c51c6248249f9982ff7efccaac72536542c6c
parent39c9140cceaffd98c683e1f426cc451909703554 (diff)
downloadcurl-6f0afb842c733034bf36b553059270321b38c856.tar.gz
configure: force-use -lpthreads on HPUX
When trying to detect pthreads use on HPUX the checks will succeed without the correct -l option but then end up failing at run-time. Reported-by: Eason-Yu on github Fixes #2697 Closes #3025
-rwxr-xr-xconfigure.ac10
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index fdfd0897c..85b8b1465 100755
--- a/configure.ac
+++ b/configure.ac
@@ -3897,6 +3897,16 @@ if test "$want_pthreads" != "no"; then
dnl first check for function without lib
AC_CHECK_FUNC(pthread_create, [USE_THREADS_POSIX=1] )
+ dnl on HPUX, life is more complicated...
+ case $host in
+ *-hp-hpux*)
+ dnl it doesn't actually work without -lpthread
+ USE_THREADS_POSIX=""
+ ;;
+ *)
+ ;;
+ esac
+
dnl if it wasn't found without lib, search for it in pthread lib
if test "$USE_THREADS_POSIX" != "1"
then