diff options
author | seb <seb> | 2004-03-29 15:16:58 +0000 |
---|---|---|
committer | seb <seb> | 2004-03-29 15:16:58 +0000 |
commit | f896c76d236d95b39eca7bac8240b585a07d2751 (patch) | |
tree | 5ec72cda0b2deba7c53908b1c05874c45b836628 | |
parent | 1c47f3b80f41a0de8e6747280c7ef3b91a6ef5b4 (diff) | |
download | pkgsrc-f896c76d236d95b39eca7bac8240b585a07d2751.tar.gz |
When PTHREAD_TYPE is 'native' set USE_BUILTIN.pthread to YES and
add 'pthread' to BUILDLINK_PACKAGES so that
BUILDLINK_{{LD,C}FLAGS,LDADD}.pthread actually have an effect.
This should fix the build of at least tcl/tk related packages now
that tcl and tk packages are thread-aware.
Remove comments about linking native pthread libraries and headers into
${BUILDLINK_DIR} as this does not happen.
-rw-r--r-- | mk/pthread.buildlink3.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/pthread.buildlink3.mk b/mk/pthread.buildlink3.mk index 449e8ae9c75..4a0993a2d2d 100644 --- a/mk/pthread.buildlink3.mk +++ b/mk/pthread.buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: pthread.buildlink3.mk,v 1.3 2004/03/18 09:12:13 jlam Exp $ +# $NetBSD: pthread.buildlink3.mk,v 1.4 2004/03/29 15:16:58 seb Exp $ # # The pthreads strategy for pkgsrc is to "bless" a particular pthread # package as the Official Pthread Replacement (OPR). A package that uses @@ -141,9 +141,9 @@ PKG_SKIP_REASON= "${PKGNAME} requires a working pthreads implementation." .endif .if ${PTHREAD_TYPE} == "native" -# -# Link the native pthread libraries and headers into ${BUILDLINK_DIR}. -# +BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Npthread} +BUILDLINK_PACKAGES+= pthread +USE_BUILTIN.pthread= YES BUILDLINK_PREFIX.pthread= /usr BUILDLINK_CFLAGS.pthread= -pthread BUILDLINK_LDFLAGS.pthread= # empty |