diff options
author | frueauf <frueauf@pkgsrc.org> | 1999-01-17 00:23:40 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 1999-01-17 00:23:40 +0000 |
commit | 456845aff11042b2d2f57966413316d0e2c55a0b (patch) | |
tree | 166ca2cdb541cffb282d3d0a70531078e0ade992 /lang/python | |
parent | f737b72e8ccc583ba5fa21437dfde782649dfa0c (diff) | |
download | pkgsrc-456845aff11042b2d2f57966413316d0e2c55a0b.tar.gz |
Make python work properly on pmax: with 1.3.3 it can do dynamic loading,
so don't set NOSHARED=#.
Diffstat (limited to 'lang/python')
-rw-r--r-- | lang/python/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile index 9e97e690ad1..5645486ab78 100644 --- a/lang/python/Makefile +++ b/lang/python/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.13 1998/12/16 22:44:07 tsarna Exp $ +# $NetBSD: Makefile,v 1.14 1999/01/17 00:23:40 frueauf Exp $ # DISTNAME= pyth151 PKGNAME= python-1.5.1 +WRKSRC= ${WRKDIR}/Python-1.5.1 CATEGORIES= lang MASTER_SITES= ftp://ftp.python.org/pub/python/src/ EXTRACT_SUFX= .tgz @@ -23,7 +24,6 @@ PATCHFILES= freeze.1.txt _tkinter.1.txt configure.1.txt \ MAINTAINER= tsarna@netbsd.org HOMEPAGE= http://www.python.org/ -WRKSRC= ${WRKDIR}/Python-1.5.1 GNU_CONFIGURE= yes MAKE_FLAGS+= 'OPT=${CFLAGS}' @@ -34,7 +34,7 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}' .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64" NO64BIT=\# .endif -.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "mips" || ${MACHINE_ARCH} == "vax" +.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "vax" NOSHARED=\# .endif |