diff options
author | tnn <tnn@pkgsrc.org> | 2007-04-13 09:12:02 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-04-13 09:12:02 +0000 |
commit | 41daa1d846d424835d24560a102266337da277a6 (patch) | |
tree | a87a0a9e074ae89f785a82cb7da596ec673e8121 /graphics | |
parent | da035a4533f64cb948bbdbe1a2d81f59af389f28 (diff) | |
download | pkgsrc-41daa1d846d424835d24560a102266337da277a6.tar.gz |
Need to include inttypes.h on Tru64. Submitted upstream in:
<https://bugs.freedesktop.org/show_bug.cgi?id=10635>
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/MesaLib/distinfo | 4 | ||||
-rw-r--r-- | graphics/MesaLib/patches/patch-am | 14 |
2 files changed, 11 insertions, 7 deletions
diff --git a/graphics/MesaLib/distinfo b/graphics/MesaLib/distinfo index 02646e2a660..857a4da917d 100644 --- a/graphics/MesaLib/distinfo +++ b/graphics/MesaLib/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.44 2007/01/24 19:55:01 tv Exp $ +$NetBSD: distinfo,v 1.45 2007/04/13 09:12:02 tnn Exp $ SHA1 (Mesa-6.4.2/MesaDemos-6.4.2.tar.bz2) = 35b1ff78fc1bd1c303be754ad2ff4252ad6c0258 RMD160 (Mesa-6.4.2/MesaDemos-6.4.2.tar.bz2) = 82e1dafd39abbe1c0e1de49adcff00dec19c6c1a @@ -21,4 +21,4 @@ SHA1 (patch-ai) = 3c5e4cc1e054514111d50c1d01257f4647b14558 SHA1 (patch-aj) = a805947e1aaf73a798fd3a8c6e39bf1bd62afc3a SHA1 (patch-ak) = 9f3480d08d2b6b7048b018956c57ad6e5d253174 SHA1 (patch-al) = 8ccbc370bc52882ee72ba76b72a99f163f7b89a7 -SHA1 (patch-am) = 9b5679fea4c98ce620386fb50ea787727aaed20b +SHA1 (patch-am) = a7a40d0d1f371cfa312ae504582ce0521172f85c diff --git a/graphics/MesaLib/patches/patch-am b/graphics/MesaLib/patches/patch-am index 78810323238..f881f15896f 100644 --- a/graphics/MesaLib/patches/patch-am +++ b/graphics/MesaLib/patches/patch-am @@ -1,9 +1,13 @@ -$NetBSD: patch-am,v 1.4 2006/10/01 20:31:13 schwarz Exp $ +$NetBSD: patch-am,v 1.5 2007/04/13 09:12:02 tnn Exp $ --- include/GL/glxext.h.orig 2005-11-07 22:20:29.000000000 +0100 -+++ include/GL/glxext.h 2006-10-01 17:27:07.000000000 +0200 -@@ -334,7 +334,7 @@ - #if defined(__sun__) ++++ include/GL/glxext.h +@@ -331,10 +331,10 @@ typedef struct { + } GLXBufferClobberEventSGIX; + #endif + +-#if defined(__sun__) ++#if defined(__sun__) || defined(__digital__) #include <inttypes.h> #if defined(__STDC__) -#if defined(__arch64__) @@ -11,7 +15,7 @@ $NetBSD: patch-am,v 1.4 2006/10/01 20:31:13 schwarz Exp $ typedef long int int64_t; #else typedef long long int int64_t; -@@ -343,7 +343,7 @@ +@@ -343,7 +343,7 @@ typedef long long int int64_t; #elif defined(__UNIXOS2__) || defined(__SOL64__) typedef long int int32_t; typedef long long int int64_t; |