diff options
author | jlam <jlam@pkgsrc.org> | 2004-11-12 06:39:19 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-11-12 06:39:19 +0000 |
commit | 08bd1482c890f3a621b3f77885975cf276bb0264 (patch) | |
tree | ddbacf3026d39d6b23e622ac51745a4f7db32d44 /lang | |
parent | 3690d543baf9ce61bf3eeacf827697fb7dc431a9 (diff) | |
download | pkgsrc-08bd1482c890f3a621b3f77885975cf276bb0264.tar.gz |
Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added
automatically by pthread.buildlink3.mk. Also, factor out the pthread
library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS
and use it in packages where necessary (usually the ones that don't
have a GNU configure script).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/guile/Makefile | 6 | ||||
-rw-r--r-- | lang/guile14/Makefile | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/lang/guile/Makefile b/lang/guile/Makefile index f2481199eb8..87e955d416b 100644 --- a/lang/guile/Makefile +++ b/lang/guile/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.56 2004/10/15 14:50:06 tv Exp $ +# $NetBSD: Makefile,v 1.57 2004/11/12 06:39:20 jlam Exp $ DISTNAME= guile-1.6.4 PKGREVISION= 4 @@ -23,10 +23,6 @@ INFO_FILES= guile.info guile-tut.info goops.info r5rs.info TEST_DIRS= ${WRKSRC} TEST_TARGET= check -# Link the native thread so that Guile processes won't die when -# libpthread.so is dl_open(3)'ed. -CFLAGS+= ${PTHREAD_CFLAGS} - .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "Darwin" diff --git a/lang/guile14/Makefile b/lang/guile14/Makefile index 7c5a7c41fa9..1bc50c30020 100644 --- a/lang/guile14/Makefile +++ b/lang/guile14/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2004/10/15 14:50:06 tv Exp $ +# $NetBSD: Makefile,v 1.21 2004/11/12 06:39:20 jlam Exp $ DISTNAME= guile-1.4.1 PKGNAME= guile14-1.4.1 @@ -22,10 +22,6 @@ INFO_FILES= guile.info BUILDLINK_PASSTHRU_DIRS= ${LOCALBASE}/guile/1.4 -# Link the native thread so that Guile processes won't die when libpthread.so -# is dl_open(3)'ed. -CFLAGS+= ${PTHREAD_CFLAGS} - .include "../../devel/libltdl/buildlink3.mk" .include "../../devel/ncurses/buildlink3.mk" .include "../../devel/readline/buildlink3.mk" |