head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.8 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.6 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.4 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.2 pkgsrc-2011Q2-base:1.3 pkgsrc-2010Q4:1.2.0.28 pkgsrc-2010Q4-base:1.2 pkgsrc-2010Q3:1.2.0.26 pkgsrc-2010Q3-base:1.2 pkgsrc-2010Q2:1.2.0.24 pkgsrc-2010Q2-base:1.2 pkgsrc-2010Q1:1.2.0.22 pkgsrc-2010Q1-base:1.2 pkgsrc-2009Q4:1.2.0.20 pkgsrc-2009Q4-base:1.2 pkgsrc-2009Q3:1.2.0.18 pkgsrc-2009Q3-base:1.2 pkgsrc-2009Q2:1.2.0.16 pkgsrc-2009Q2-base:1.2 pkgsrc-2009Q1:1.2.0.14 pkgsrc-2009Q1-base:1.2 pkgsrc-2008Q4:1.2.0.12 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.10 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.2.0.8 cube-native-xorg-base:1.2 pkgsrc-2008Q2:1.2.0.6 pkgsrc-2008Q2-base:1.2 cwrapper:1.2.0.4 pkgsrc-2008Q1:1.2.0.2 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.1.0.6 pkgsrc-2007Q4-base:1.1 pkgsrc-2007Q3:1.1.0.4 pkgsrc-2007Q3-base:1.1 pkgsrc-2007Q2:1.1.0.2 pkgsrc-2007Q2-base:1.1; locks; strict; comment @# @; 1.3 date 2011.03.19.19.59.47; author spz; state dead; branches; next 1.2; 1.2 date 2008.03.08.11.00.35; author spz; state Exp; branches; next 1.1; 1.1 date 2007.05.22.12.17.56; author spz; state Exp; branches; next ; desc @@ 1.3 log @remove obsolete irrtoolset-nox11 @ text @$NetBSD: patch-co,v 1.2 2008/03/08 11:00:35 spz Exp $ --- ./src/gnug++/int.defs.h.orig 2007-02-09 22:30:25.000000000 +0100 +++ ./src/gnug++/int.defs.h @@@@ -16,7 +16,13 @@@@ License along with this library; if not, Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#if defined( HAVE_STDINT_H ) #include +#elif defined( HAVE_INTTYPES_H ) +#include +#else +#include +#endif #ifndef _intdefs_h #define _intdefs_h 1 @@@@ -55,11 +61,6 @@@@ Foundation, 675 Mass Ave, Cambridge, MA #define HASHTABLE_TOO_CROWDED(COUNT, SIZE) ((SIZE) - ((SIZE) >> 3) <= (COUNT)) -// Allow portable address arithmetic -#if __WORDSIZE == 64 -typedef uint64_t addr_t; -#else -typedef uint32_t addr_t; -#endif +typedef char* addr_t; #endif @ 1.2 log @- update DESCR to match reality - add patch to src/gnug++/int.defs.h for Solaris compatibility (by Ian Dickinson, iand@@eng.pipex.net) - move Errors manpage to a less general name (suggested by Ian Dickinson) - add patch to src/RtConfig/f_cisco.cc by Hagen Boehm (fixes up the string that gets output instead of a copy of said string) - improve src/Makefile.in some more @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @new version, new patches: upstream adopted a bunch of ours, but gcc found new things to bitch about @ text @d5 16 a20 1 @@@@ -56,10 +56,15 @@@@ Foundation, 675 Mass Ave, Cambridge, MA d23 1 a23 1 // Allow portable address arithmetic a28 9 +//#if __WORDSIZE == 64 +//typedef uint64_t addr_t; +//#else +//typedef uint32_t addr_t; +//#endif + +// the previous might work if __WORDSIZE was portably defined. It's not. +// also, since all it ever gets used to is pointer arithmetic, char* is +// what is ought to be (and its name ought to be caddr_t really) @