diff options
author | perky <perky@FreeBSD.org> | 2003-08-07 19:30:17 +0800 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-08-07 19:30:17 +0800 |
commit | 370f1221a9d709c7c27001376dc464ef706b9ac9 (patch) | |
tree | 0bdc20a1abc532ba10617773040d07f5a2f688bf /lang | |
parent | b3042c8241bde70ca5b1c107da463110a3c2df6f (diff) | |
download | freebsd-ports-gnome-370f1221a9d709c7c27001376dc464ef706b9ac9.tar.gz freebsd-ports-gnome-370f1221a9d709c7c27001376dc464ef706b9ac9.tar.zst freebsd-ports-gnome-370f1221a9d709c7c27001376dc464ef706b9ac9.zip |
- Remove somewhat buggy libc_r lackness detection. (at least for bento)
- Bump PORTREVISION to enable the thread support in the package
building environments.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python15/Makefile | 7 | ||||
-rw-r--r-- | lang/python20/Makefile | 5 | ||||
-rw-r--r-- | lang/python21/Makefile | 5 |
3 files changed, 7 insertions, 10 deletions
diff --git a/lang/python15/Makefile b/lang/python15/Makefile index cc97ed924740..ab065305ecaf 100644 --- a/lang/python15/Makefile +++ b/lang/python15/Makefile @@ -7,7 +7,7 @@ PORTNAME= python PORTVERSION= 1.5.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYTHON} MASTER_SITE_SUBDIR= ftp/python/src @@ -37,10 +37,9 @@ SETUP_FILE= Setup # # If you don't want to use Python's thread module, you need to set -# WITHOUT_THREADS. libc_r should be installed on nowadays' systems. +# WITHOUT_THREADS. # -LIBC_R!= /sbin/ldconfig -r | grep c_r || true -.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS) +.if !defined(NOLIBC_R) && !defined(WITHOUT_THREADS) CONFIGURE_ARGS+= --with-thread CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}" diff --git a/lang/python20/Makefile b/lang/python20/Makefile index b1a80b319f95..6fe205d041b1 100644 --- a/lang/python20/Makefile +++ b/lang/python20/Makefile @@ -7,7 +7,7 @@ PORTNAME= python PORTVERSION= 2.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYTHON} MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -39,8 +39,7 @@ SETUP_FILE= Setup # If you don't want to use Python's thread module, you need to set # WITHOUT_THREADS. # -LIBC_R!= /sbin/ldconfig -r | grep c_r || true -.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS) +.if !defined(NOLIBC_R) && !defined(WITHOUT_THREADS) CONFIGURE_ARGS+= --with-threads CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}" diff --git a/lang/python21/Makefile b/lang/python21/Makefile index 58278e42f66c..7e76fac90684 100644 --- a/lang/python21/Makefile +++ b/lang/python21/Makefile @@ -7,7 +7,7 @@ PORTNAME= python PORTVERSION= 2.1.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang python MASTER_SITES= ${MASTER_SITE_PYTHON} MASTER_SITE_SUBDIR= ftp/python/${PORTVERSION} @@ -33,8 +33,7 @@ LATEST_LINK= ${PYTHON_VERSION:S/.//} # If you don't want to use Python's thread module, you need to set # WITHOUT_THREADS. # -LIBC_R!= /sbin/ldconfig -r | grep c_r || true -.if (${LIBC_R} != "") && !defined(WITHOUT_THREADS) +.if !defined(NOLIBC_R) && !defined(WITHOUT_THREADS) CONFIGURE_ARGS+= --with-threads CFLAGS+= ${PTHREAD_CFLAGS} CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}" |