diff options
author | recht <recht> | 2005-01-24 19:50:43 +0000 |
---|---|---|
committer | recht <recht> | 2005-01-24 19:50:43 +0000 |
commit | a5108f7834d09dc1cb39d145fe7fce4064ab96e5 (patch) | |
tree | efb21d33827d609d65d86e733a2ddc78e0676486 /lang/python23 | |
parent | 74f7aa26a6cc1caab9f04c851387402089e191e6 (diff) | |
download | pkgsrc-a5108f7834d09dc1cb39d145fe7fce4064ab96e5.tar.gz |
Really enable threads for python23.
Noted by:
Jeffery Lee ravenix2 <at> yahoo <dot> com
Bump PKGREVISION
Diffstat (limited to 'lang/python23')
-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 |