diff options
author | jlam <jlam> | 2004-11-25 19:34:03 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-11-25 19:34:03 +0000 |
commit | a68655268ab7e698acc26780a2e5749651516348 (patch) | |
tree | f7cee64ed35cdc332c929fa10acc8fe0f2e1490e /mk | |
parent | 8033eab1aa8cdbcf6887f6cb8512a294fd242f70 (diff) | |
download | pkgsrc-a68655268ab7e698acc26780a2e5749651516348.tar.gz |
Default PTHREAD_AUTO_VARS to the safer value of "no". Most packages
that use pthreads already implement their own probes for pthreads, so
we don't need to auto-add the compiler/linker flags.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/pthread.buildlink3.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/pthread.buildlink3.mk b/mk/pthread.buildlink3.mk index 893f1742d27..51b2339fb2d 100644 --- a/mk/pthread.buildlink3.mk +++ b/mk/pthread.buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: pthread.buildlink3.mk,v 1.17 2004/11/17 21:05:24 jlam Exp $ +# $NetBSD: pthread.buildlink3.mk,v 1.18 2004/11/25 19:34:03 jlam Exp $ # # The pthreads strategy for pkgsrc is to "bless" a particular pthread # package as the Official Pthread Replacement (OPR). A package that uses @@ -144,7 +144,7 @@ PKG_SKIP_REASON= "${PKGNAME} requires a working pthreads implementation." . endif .endif -PTHREAD_AUTO_VARS?= yes +PTHREAD_AUTO_VARS?= no .if ${PTHREAD_TYPE} == "native" BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npthread} |