head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.12 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.10 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.8 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.6 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.4 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.2 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.4.0.14 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.12 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.10 pkgsrc-2008Q2-base:1.4 cwrapper:1.4.0.8 pkgsrc-2008Q1:1.4.0.6 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.4 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.2 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.3.0.2 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.2.0.24 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.22 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.20 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.18 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.16 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.14 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.12 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.10 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.8 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.6 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.4 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.2 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.1.1.1.0.12 pkgsrc-2004Q1-base:1.1.1.1 pkgsrc-2003Q4:1.1.1.1.0.10 pkgsrc-2003Q4-base:1.1.1.1 netbsd-1-6-1:1.1.1.1.0.6 netbsd-1-6-1-base:1.1.1.1 netbsd-1-6:1.1.1.1.0.8 netbsd-1-6-RELEASE-base:1.1.1.1 pkgviews:1.1.1.1.0.4 pkgviews-base:1.1.1.1 buildlink2:1.1.1.1.0.2 buildlink2-base:1.1.1.1 netbsd-1-5-PATCH003:1.1.1.1 pkgsrc-base:1.1.1.1 TNF:1.1.1; locks; strict; comment @# @; 1.5 date 2008.10.16.13.55.53; author drochner; state dead; branches; next 1.4; 1.4 date 2007.10.03.20.42.50; author dmcmahill; state Exp; branches; next 1.3; 1.3 date 2007.05.13.14.39.25; author wiz; state dead; branches; next 1.2; 1.2 date 2004.04.27.15.19.53; author adam; state Exp; branches; next 1.1; 1.1 date 2001.05.14.17.47.27; author rh; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2001.05.14.17.47.27; author rh; state Exp; branches; next ; desc @@ 1.5 log @update to 2.22.3 changes: -build fixes -rendering improvements -bugfixes @ text @$NetBSD: patch-ac,v 1.4 2007/10/03 20:42:50 dmcmahill Exp $ --- tests/pdiff/perceptualdiff.c.orig 2007-04-23 18:45:34.000000000 -0400 +++ tests/pdiff/perceptualdiff.c @@@@ -16,8 +16,29 @@@@ if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "config.h" + #include -#include + +#ifdef HAVE_STDINT_H +# include +#elif defined(HAVE_INTTYPES_H) +# include +#elif defined(HAVE_SYS_INT_TYPES_H) +# include +#elif defined(_MSC_VER) + typedef __int8 int8_t; + typedef unsigned __int8 uint8_t; + typedef __int16 int16_t; + typedef unsigned __int16 uint16_t; + typedef __int32 int32_t; + typedef unsigned __int32 uint32_t; + typedef __int64 int64_t; + typedef unsigned __int64 uint64_t; +#else +# error Cannot find definitions for fixed-width integral types (uint8_t, uint32_t, etc.) +#endif + #include #include #include "lpyramid.h" @ 1.4 log @Actually use the results of some configure tests for stdint.h and inttypes.h. Fixes builds on SunOS-5.9. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Remove some GNOME1 packages that are unmaintained upstream and/or in pkgsrc, in preparation for gnome1-libs removal(*). There was no feedback for keeping these packages after my HEADS UP mail to pkgsrc-users a week ago. (*) More to come before that can happen, though. @ text @d1 1 a1 1 $NetBSD: patch-ac,v 1.2 2004/04/27 15:19:53 adam Exp $ d3 8 a10 3 --- test-ft.c.orig 2001-03-28 18:44:42.000000000 +0000 +++ test-ft.c @@@@ -25,11 +25,12 @@@@ d12 22 a33 4 #include #include -#include +#include d35 1 a35 7 #include +#include #include #include @ 1.2 log @Follow new FreeType2 build rules @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Initial revision @ text @d3 1 a3 1 --- test-ft.c.orig Wed May 9 23:27:41 2001 d5 1 a5 1 @@@@ -25,7 +25,7 @@@@ d14 5 @ 1.1.1.1 log @Initial import of librsvg-1.0.0, a library for scalable vector graphics. @ text @@