From: Brian Date: Tue, 8 May 2007 20:03:04 +0000 (-0600) Subject: special case for -pthread (bug 10876) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed2fddc98ef017d8b6460e326d08ce2635458812;p=mesa.git special case for -pthread (bug 10876) --- diff --git a/bin/mklib b/bin/mklib index 09f4fac9e51..21d48edd771 100755 --- a/bin/mklib +++ b/bin/mklib @@ -100,6 +100,10 @@ do -L*) DEPS="$DEPS $1" ;; + -pthread) + # this is a special case (see bugzilla 10876) + DEPS="$DEPS $1" + ;; '-cplusplus') CPLUSPLUS=1 ;;