diff options
author | marino <marino@pkgsrc.org> | 2011-12-17 19:01:24 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-12-17 19:01:24 +0000 |
commit | a1b6961567999245232d9dfd4f9b1fc9a6e349a7 (patch) | |
tree | 2f4c80b0ecc659822b5f0bea23c8addb4b4eb770 /lang | |
parent | 13a04d813aac4c6cf3801af72412860afc92b908 (diff) | |
download | pkgsrc-a1b6961567999245232d9dfd4f9b1fc9a6e349a7.tar.gz |
lang/sr: Mask x86_64 platforms
http://www.cs.arizona.edu/sr/impl.html:
"SR does not run on 64-bit X86/AMD64 Linux".
Indeed, the arch.h file has no provision for the x86_64 architecture.
NetBSD x86_64 gets past the trap because it patched the arch.h file to
alway define the arch. Configuring on DragonFly64 illustrates the arch
is unsupported.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sr/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lang/sr/Makefile b/lang/sr/Makefile index 541564cd832..58bf63decdd 100644 --- a/lang/sr/Makefile +++ b/lang/sr/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.20 2011/08/03 09:30:48 cheusov Exp $ +# $NetBSD: Makefile,v 1.21 2011/12/17 19:01:24 marino Exp $ # DISTNAME= sr233 @@ -12,6 +12,7 @@ MAINTAINER= is@NetBSD.org HOMEPAGE= http://www.cs.arizona.edu/sr/ COMMENT= The SR language compiler and run time system +NOT_FOR_PLATFORM= *-*-x86_64 # site: "doesn't run on 64-bit/AMD64" PKG_DESTDIR_SUPPORT= user-destdir MAKE_JOBS_SAFE= no |