From: Brad Smith Date: Tue, 21 Aug 2012 06:58:19 +0000 (-0700) Subject: Remove special-casing for OpenBSD pthread handling X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8fd6412a94f5f4f0eb5f8a6c0fb2062daebfab8;p=libx264 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. --- 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" ;;