diff options
author | recht <recht@pkgsrc.org> | 2005-01-24 19:50:43 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2005-01-24 19:50:43 +0000 |
commit | d5fee7491aa0d526678afb7e3e7c160cfac6f623 (patch) | |
tree | efb21d33827d609d65d86e733a2ddc78e0676486 /lang/python23/Makefile | |
parent | 4c74f4a834cec3e5f83837c60f3ea432317b16b2 (diff) | |
download | pkgsrc-d5fee7491aa0d526678afb7e3e7c160cfac6f623.tar.gz |
Really enable threads for python23.
Noted by:
Jeffery Lee ravenix2 <at> yahoo <dot> com
Bump PKGREVISION
Diffstat (limited to 'lang/python23/Makefile')
-rw-r--r-- | lang/python23/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lang/python23/Makefile b/lang/python23/Makefile index caea29fbacf..81619cc7011 100644 --- a/lang/python23/Makefile +++ b/lang/python23/Makefile @@ -1,12 +1,16 @@ -# $NetBSD: Makefile,v 1.23 2005/01/23 20:41:47 recht Exp $ +# $NetBSD: Makefile,v 1.24 2005/01/24 19:50:43 recht Exp $ # PKGNAME= python23-2.3.4 -PKGREVISION= 4 +PKGREVISION= 5 #PKG_INSTALLATION_TYPES= overwrite pkgviews -CONFIGURE_ARGS+= --without-threads +PTHREAD_OPTS= require +.include "../../mk/pthread.buildlink3.mk" +.if ${PTHREAD_TYPE} == "pth" +CONFIGURE_ARGS+= --with-pth +.endif PY_VER_SUFFIX= 2.3 |