diff options
author | markd <markd@pkgsrc.org> | 2011-02-05 20:33:43 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2011-02-05 20:33:43 +0000 |
commit | 4cad3113b9f223e1d0dc83b24fdc9f4eb3530004 (patch) | |
tree | d801e5f0e03c8d6ae7a09de00843d3efca34665c /x11 | |
parent | 1e552099c1602d0693a01eb6ec4d4f2e4ba17dc0 (diff) | |
download | pkgsrc-4cad3113b9f223e1d0dc83b24fdc9f4eb3530004.tar.gz |
In order to test HAVE_STDINT_H need to include <config.h>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xscreensaver/distinfo | 6 | ||||
-rw-r--r-- | x11/xscreensaver/patches/patch-ak | 7 | ||||
-rw-r--r-- | x11/xscreensaver/patches/patch-al | 7 |
3 files changed, 13 insertions, 7 deletions
diff --git a/x11/xscreensaver/distinfo b/x11/xscreensaver/distinfo index 4d379639202..ca95620868b 100644 --- a/x11/xscreensaver/distinfo +++ b/x11/xscreensaver/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.58 2010/11/29 18:04:35 drochner Exp $ +$NetBSD: distinfo,v 1.59 2011/02/05 20:33:43 markd Exp $ SHA1 (xscreensaver-5.12.tar.gz) = 7252540b1b1853459a56453714c0974de26fa4c5 RMD160 (xscreensaver-5.12.tar.gz) = c0fbd8cfad2919b06c8479bcebfa9af81aa97ae6 @@ -11,5 +11,5 @@ SHA1 (patch-ae) = 16d0c8b50b2601458aaec09d1c7425fb23308225 SHA1 (patch-af) = d8261f1c8fd01b455a151f97837712dc46aff6f3 SHA1 (patch-ai) = ceda5f16e4fca352a3c4cd6cbdc55d43d3e7b6d5 SHA1 (patch-aj) = 09c06207549ab5adf286dcf04e48a900f1ea9e1e -SHA1 (patch-ak) = 8b48c63575f6d186a65131586737ba31e3b91953 -SHA1 (patch-al) = 1a9b3ba359aecc30539a194c893abb7c35c66a31 +SHA1 (patch-ak) = e296e59bec9a11ddab8412751e91395b869686d1 +SHA1 (patch-al) = c1266ddbe4e0638579cde7ec0a7308ac7c463222 diff --git a/x11/xscreensaver/patches/patch-ak b/x11/xscreensaver/patches/patch-ak index c6441497827..269c925a7ce 100644 --- a/x11/xscreensaver/patches/patch-ak +++ b/x11/xscreensaver/patches/patch-ak @@ -1,11 +1,14 @@ -$NetBSD: patch-ak,v 1.1 2010/05/08 16:53:06 tez Exp $ +$NetBSD: patch-ak,v 1.2 2011/02/05 20:33:43 markd Exp $ + +fix build on solaris 9 --- hacks/m6502.c.orig Mon Mar 22 15:24:30 2010 +++ hacks/m6502.c Mon Mar 22 15:27:33 2010 -@@ -12,7 +12,11 @@ +@@ -12,7 +12,12 @@ * Created: 07-May-2007 */ ++#include <config.h> +#if defined(HAVE_STDINT_H) #include <stdint.h> +#elif defined(HAVE_INTTYPES_H) diff --git a/x11/xscreensaver/patches/patch-al b/x11/xscreensaver/patches/patch-al index 87b8160bee5..c56b63865bf 100644 --- a/x11/xscreensaver/patches/patch-al +++ b/x11/xscreensaver/patches/patch-al @@ -1,11 +1,14 @@ -$NetBSD: patch-al,v 1.1 2010/05/08 16:53:06 tez Exp $ +$NetBSD: patch-al,v 1.2 2011/02/05 20:33:43 markd Exp $ + +fix build on solaris 9 --- hacks/asm6502.c.orig Mon Mar 22 16:06:34 2010 +++ hacks/asm6502.c Mon Mar 22 16:07:18 2010 -@@ -31,7 +31,11 @@ +@@ -31,7 +31,12 @@ #include <assert.h> #include <ctype.h> #include <math.h> ++#include <config.h> +#if defined(HAVE_STDINT_H) #include <stdint.h> +#elif defined(HAVE_INTTYPES_H) |