diff options
author | joerg <joerg@pkgsrc.org> | 2011-09-21 13:38:48 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2011-09-21 13:38:48 +0000 |
commit | dcba7e2374fa0f9eb7f01ffaf3586fe8171fe826 (patch) | |
tree | 5895e759ac59a05e541732693416d0adc32e15ae /lang | |
parent | 42179dd4d2b221667589f521f6ac171c3ed4cf9f (diff) | |
download | pkgsrc-dcba7e2374fa0f9eb7f01ffaf3586fe8171fe826.tar.gz |
Fix build on NetBSD/current by copying gcc34's patch-ac.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc3/distinfo | 3 | ||||
-rw-r--r-- | lang/gcc3/patches/patch-au | 39 |
2 files changed, 41 insertions, 1 deletions
diff --git a/lang/gcc3/distinfo b/lang/gcc3/distinfo index dd829ddcd72..f430e47ec85 100644 --- a/lang/gcc3/distinfo +++ b/lang/gcc3/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.25 2009/02/28 18:37:22 joerg Exp $ +$NetBSD: distinfo,v 1.26 2011/09/21 13:38:48 joerg Exp $ SHA1 (gcc-3.3.6.tar.bz2) = 2cc43978bb09af6c2ccfdf74797d10d7cc2596fb RMD160 (gcc-3.3.6.tar.bz2) = b32c7a08c690857f0ac52dda3deb47cf5775d967 @@ -22,3 +22,4 @@ SHA1 (patch-aq) = 1ee8d951e464a154c4f2a3f48d4c2101c2f3d79d SHA1 (patch-ar) = 1ed0338bde1e863ddcfbc0bdfb77aeafdbef7220 SHA1 (patch-as) = 35e1649aed1744be5cdd7caa0b246e74dd9df0aa SHA1 (patch-at) = a8a310b85e661bbf2cb832027b84b72c1db27a0c +SHA1 (patch-au) = 801818472ae456e4e21abd2010b24d3814b77314 diff --git a/lang/gcc3/patches/patch-au b/lang/gcc3/patches/patch-au new file mode 100644 index 00000000000..0f2212f8ec7 --- /dev/null +++ b/lang/gcc3/patches/patch-au @@ -0,0 +1,39 @@ +$NetBSD: patch-au,v 1.1 2011/09/21 13:38:48 joerg Exp $ + +--- libstdc++-v3/config/os/bsd/netbsd/ctype_base.h.orig 2002-06-24 05:48:58.000000000 +0000 ++++ libstdc++-v3/config/os/bsd/netbsd/ctype_base.h +@@ -36,6 +36,8 @@ + // anoncvs@anoncvs.netbsd.org:/cvsroot/basesrc/include/ctype.h + // See www.netbsd.org for details of access. + ++#include <sys/param.h> ++ + struct ctype_base + { + // Non-standard typedefs. +@@ -44,6 +46,7 @@ + // NB: Offsets into ctype<char>::_M_table force a particular size + // on the mask type. Because of this, we don't use an enum. + typedef unsigned char mask; ++#if __NetBSD_Version__ < 599004100 + static const mask upper = _U; + static const mask lower = _L; + static const mask alpha = _U | _L; +@@ -55,4 +58,17 @@ + static const mask cntrl = _C; + static const mask punct = _P; + static const mask alnum = _U | _L | _N; ++#else ++ static const mask upper = _CTYPE_U; ++ static const mask lower = _CTYPE_L; ++ static const mask alpha = _CTYPE_U | _CTYPE_L; ++ static const mask digit = _CTYPE_N; ++ static const mask xdigit = _CTYPE_N | _CTYPE_X; ++ static const mask space = _CTYPE_S; ++ static const mask print = _CTYPE_P | _CTYPE_U | _CTYPE_L | _CTYPE_N | _CTYPE_B; ++ static const mask graph = _CTYPE_P | _CTYPE_U | _CTYPE_L | _CTYPE_N; ++ static const mask cntrl = _CTYPE_C; ++ static const mask punct = _CTYPE_P; ++ static const mask alnum = _CTYPE_U | _CTYPE_L | _CTYPE_N; ++#endif + }; |