diff options
author | tg <tg@FreeBSD.org> | 1998-01-07 08:32:54 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1998-01-07 08:32:54 +0000 |
commit | e58bce5a5b943f83ec3b8bd8b1633ba95f4c684a (patch) | |
tree | 6d4f192b5ec95e8f0e86304a741bb09ca80212c4 /lang/python21 | |
parent | 35278e9c20bfa83187314949a4ffaefa09ae2c3b (diff) | |
download | FreeBSD-ports-e58bce5a5b943f83ec3b8bd8b1633ba95f4c684a.zip FreeBSD-ports-e58bce5a5b943f83ec3b8bd8b1633ba95f4c684a.tar.gz |
Make python work with threads again. Looks like our libc_r implements
an older draft of the pthread standard.
Diffstat (limited to 'lang/python21')
-rw-r--r-- | lang/python21/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lang/python21/Makefile b/lang/python21/Makefile index ebccd69..2655723 100644 --- a/lang/python21/Makefile +++ b/lang/python21/Makefile @@ -3,7 +3,7 @@ # Date created: 08 August 1995 # Whom: jkh # -# $Id: Makefile,v 1.18 1997/11/24 15:12:43 tg Exp $ +# $Id: Makefile,v 1.19 1998/01/06 08:02:48 tg Exp $ # DISTNAME= python1.5 @@ -43,10 +43,9 @@ SETUP_LOCAL= Setup.tk # to 'yes', and you must have the FreeBSD threading c library (libc_r) # installed. See 'man 3 pthread' for details on libc_r. # -# This is now turned off by default because it doesn't work -# with our libc_r. +# This option is enabled by default. # -WITH_THREADS?= no +WITH_THREADS?= yes .if exists(/usr/lib/libc_r.a) && defined(WITH_THREADS) && ${WITH_THREADS} == yes CONFIGURE_ARGS+= --with-thread .endif |