diff options
author | markd <markd@pkgsrc.org> | 2005-05-19 13:12:52 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2005-05-19 13:12:52 +0000 |
commit | 0a7118f7bbd357b48f84129b319729b3cf6b809b (patch) | |
tree | 4b17286418d9e07b8956b67b3788b46a3584d787 /math | |
parent | cf948aa77a112d0aaaf9cf996ad0c23bace123c3 (diff) | |
download | pkgsrc-0a7118f7bbd357b48f84129b319729b3cf6b809b.tar.gz |
Don't try and use wide chars on NetBSD 1.6 as the support isn't complete
enough. Fixes PR pkg/30274
Diffstat (limited to 'math')
-rw-r--r-- | math/R/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index a52925dd9dc..5732c7b8fd9 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.64 2005/05/02 16:57:19 drochner Exp $ +# $NetBSD: Makefile,v 1.65 2005/05/19 13:12:52 markd Exp $ DISTNAME= R-2.1.0 CATEGORIES= math @@ -94,6 +94,10 @@ SUBST_SED.fix-R= ${SUBST_SED.unwrap} \ BUILDLINK_DEPENDS.zlib+= zlib>=1.2.1 +.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M1.[0-6]*) +CONFIGURE_ARGS+= --enable-mbcs=no +.endif + .include "../../archivers/bzip2/buildlink3.mk" .include "../../devel/pcre/buildlink3.mk" .include "../../devel/readline/buildlink3.mk" |