summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2020-07-22 18:55:33 -0400
committerBradley Sepos <[email protected]>2020-07-22 18:55:33 -0400
commit603262aaa9c102c6632efd4266b275c64763d4b5 (patch)
tree113dedc7da50efe6efade17f8f4fddae922e8f01
parentcb5ec5df2f588dbd669d685b4147c1a7760e9fa4 (diff)
gtk: configure: Do not attempt to link pthreadGC2 when pthread is not found.
This is mostly a throwback to pthreads-w32 and afaict only worked where the static pthreadGC2 archive was symlinked to the static pthread archive. It is not a valid code path when using winpthreads or no pthreads library, and can lead to link failure.
-rw-r--r--gtk/configure.ac2
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/configure.ac b/gtk/configure.ac
index 0750fbf10..d808baa5f 100644
--- a/gtk/configure.ac
+++ b/gtk/configure.ac
@@ -230,8 +230,6 @@ case $host in
fi
if test "x$use_libpthread" = "xyes" ; then
HB_LIBS="$HB_LIBS -lpthread"
- else
- HB_LIBS="$HB_LIBS -lpthreadGC2"
fi
HB_LIBS="$HB_LIBS -lbcrypt -lregex -luuid -lole32"
;;