From f8fd6412a94f5f4f0eb5f8a6c0fb2062daebfab8 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Mon, 20 Aug 2012 23:58:19 -0700 Subject: [PATCH] Remove special-casing for OpenBSD pthread handling Previously it was policy to use -pthread, but OpenBSD now recommends -lpthread. its been libpthread anyway and policy has changed to stop using -pthread. --- configure | 3 --- 1 file changed, 3 deletions(-) diff --git a/configure b/configure index 086b399c..01da01e4 100755 --- a/configure +++ b/configure @@ -764,9 +764,6 @@ if [ "$thread" = "auto" ]; then thread="win32" fi ;; - OPENBSD) - cc_check pthread.h -pthread && thread="posix" && libpthread="-pthread" - ;; *) cc_check pthread.h -lpthread && thread="posix" && libpthread="-lpthread" ;; -- 2.40.0