diff options
author | fredb <fredb> | 2000-09-29 15:40:27 +0000 |
---|---|---|
committer | fredb <fredb> | 2000-09-29 15:40:27 +0000 |
commit | 3bfd259a71252ac10c2791a93bed2b854ee17494 (patch) | |
tree | ebf9305e184527399397fbd4d41dd946ce600c18 /devel/lwp/Makefile | |
parent | e28a7b0056feb199654d62b3120ae589d48a1efa (diff) | |
download | pkgsrc-3bfd259a71252ac10c2791a93bed2b854ee17494.tar.gz |
Unify ONLY_FOR_PLATFORM to clarify conditions, somewhat, under which
coda/lwp may be built and run. "lwp" needs custom pmap handling in assy
language. Only "lwp" is needed to build and run a coda server; client's
also need to have the MI CODA filesystem enabled. In fact, it seems
that sparc64 has the CODA file system even the assembler in "lwp" is
only for sparc, and mac68k is the only m68k port with the CODA filesystem,
but such would be cumbersome to express with the present framework.
Diffstat (limited to 'devel/lwp/Makefile')
-rw-r--r-- | devel/lwp/Makefile | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/devel/lwp/Makefile b/devel/lwp/Makefile index fe92ba2e871..4b9c536aa05 100644 --- a/devel/lwp/Makefile +++ b/devel/lwp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2000/08/14 18:00:24 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2000/09/29 15:40:27 fredb Exp $ # DISTNAME= lwp-1.1 @@ -9,8 +9,9 @@ MASTER_SITES= ftp://ftp.coda.cs.cmu.edu/pub/coda/src/ \ MAINTAINER= fb@enteract.com HOMEPAGE= http://www.coda.cs.cmu.edu/ -# ${WRKDIR}/src/process.ss needs more work for mips -NOT_FOR_PLATFORM= *-*-mips* +# ${WRKSRC}/src/process.ss needs pmap handling assembly for +# each arch. Mips has it, but it evidently needs more work. +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-sparc* GNU_CONFIGURE= YES USE_LIBTOOL= YES @@ -19,16 +20,8 @@ LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig .include "../../mk/bsd.prefs.mk" -# XXX Not yet -#.if defined(LWP_USE_PTH) -#.if ${LWP_USE_PTH} == YES || ${LWP_USE_PTH} == yes -#BUILD_DEPENDS+= pth:../../devel/pth -#BUILD_DEFS+= LIBS -#CONFIGURE_ENV+= LIBS="-lpth -lpthreads" -#.else +# Don't even to try to use pthreaded version. pre-configure: ${CP} ${FILESDIR}/config.cache ${WRKSRC}/ -#.endif -#.endif .include "../../mk/bsd.pkg.mk" |