diff options
author | perky <perky@FreeBSD.org> | 2003-07-09 07:40:56 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-07-09 07:40:56 +0000 |
commit | bafc96909db22a1537ce66c565825c7a3ca8a2cf (patch) | |
tree | 5ad0250b8208a83e885d02ec04c7a0001b9b7dd4 /lang/python24/Makefile | |
parent | 645881e3b635888e9a690675c6daa48d63cd7320 (diff) | |
download | FreeBSD-ports-bafc96909db22a1537ce66c565825c7a3ca8a2cf.zip FreeBSD-ports-bafc96909db22a1537ce66c565825c7a3ca8a2cf.tar.gz |
Set per-thread stack size to 0x20000 (default) or 0x100000
(WITH_HUGE_STACK_SIZE=yes). This will enable python2.2 to
run Zope and its products.
Requested by: dwhite
Reviewed by: dwhite
Diffstat (limited to 'lang/python24/Makefile')
-rw-r--r-- | lang/python24/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/python24/Makefile b/lang/python24/Makefile index 9452e87..31dfb94 100644 --- a/lang/python24/Makefile +++ b/lang/python24/Makefile @@ -7,7 +7,7 @@ PORTNAME= python PORTVERSION= 2.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang python ipv6 MASTER_SITES= ${MASTER_SITE_PYTHON} MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -35,6 +35,11 @@ PYTHON_NO_DEPENDS= yes .if !defined(WITHOUT_THREADS) CONFIGURE_ARGS+= --with-threads CFLAGS+= ${PTHREAD_CFLAGS} +.if !defined(WANT_HUGE_STACK_SIZE) +CFLAGS+= -DTHREAD_STACK_SIZE=0x20000 +.else +CFLAGS+= -DTHREAD_STACK_SIZE=0x100000 +.endif CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}" .else CONFIGURE_ARGS+= --without-threads |