diff options
author | drochner <drochner@pkgsrc.org> | 2004-06-15 16:17:48 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2004-06-15 16:17:48 +0000 |
commit | 96afdd875d27603231323efa19e0b443d1197982 (patch) | |
tree | 574db6fc97ef9679b76108b4ef37a1f704b6b778 /x11/tk/Makefile | |
parent | f16ab896b6d868845623b64d6ce749ef03c878a7 (diff) | |
download | pkgsrc-96afdd875d27603231323efa19e0b443d1197982.tar.gz |
Don't --enable-threads for now. If we do this, all potential users of
libtcl.so/libtk.so (whether linking it in or dlopen() it) must be linked
against libpthread. This is something we can't guarantee.
Fixes bulk build error in py-imagingtk and numerous runtime problems.
Diffstat (limited to 'x11/tk/Makefile')
-rw-r--r-- | x11/tk/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/x11/tk/Makefile b/x11/tk/Makefile index d1cef50a38a..045ffefecdc 100644 --- a/x11/tk/Makefile +++ b/x11/tk/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.33 2004/04/09 23:39:00 danw Exp $ +# $NetBSD: Makefile,v 1.34 2004/06/15 16:17:48 drochner Exp $ DISTNAME= tk8.4.6-src PKGNAME= tk-8.4.6 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tcl/} @@ -15,7 +15,8 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews WRKSRC= ${WRKDIR}/${DISTNAME:C/-src//}/unix GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl}/lib -CONFIGURE_ARGS+= --enable-threads +# see comment in lang/tcl/Makefile +#CONFIGURE_ARGS+= --enable-threads MAKE_ENV+= TOUCH="${TOUCH}" USE_X11= yes |