pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/glitz Interix has neither <stdint.h> nor <int...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2a835ba9b752
branches:  trunk
changeset: 502423:2a835ba9b752
user:      tv <tv%pkgsrc.org@localhost>
date:      Fri Nov 04 17:10:04 2005 +0000

description:
Interix has neither <stdint.h> nor <inttypes.h>.

diffstat:

 graphics/glitz/distinfo         |   3 ++-
 graphics/glitz/patches/patch-ac |  23 +++++++++++++++++++++++
 2 files changed, 25 insertions(+), 1 deletions(-)

diffs (40 lines):

diff -r 630bf6cc9262 -r 2a835ba9b752 graphics/glitz/distinfo
--- a/graphics/glitz/distinfo   Fri Nov 04 17:04:49 2005 +0000
+++ b/graphics/glitz/distinfo   Fri Nov 04 17:10:04 2005 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.10 2005/11/03 01:47:08 rillig Exp $
+$NetBSD: distinfo,v 1.11 2005/11/04 17:10:04 tv Exp $
 
 SHA1 (glitz-0.4.4.tar.gz) = 53d5df02aaf7c156ad62787a1ad9b3072f8dbd25
 RMD160 (glitz-0.4.4.tar.gz) = ffbdc0467c8ac727747eb430bcdde226f8fcce42
 Size (glitz-0.4.4.tar.gz) = 425742 bytes
 SHA1 (patch-aa) = d725f03f96082b6d9b31c608a0e4c1beb71e87f1
 SHA1 (patch-ab) = 6394ccfb9b0096ce33111cb7ca6b7afff1075be0
+SHA1 (patch-ac) = b28f7ed4458ffcf1192eb2db9733b7d00d05a5e2
diff -r 630bf6cc9262 -r 2a835ba9b752 graphics/glitz/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/glitz/patches/patch-ac   Fri Nov 04 17:10:04 2005 +0000
@@ -0,0 +1,23 @@
+$NetBSD: patch-ac,v 1.1 2005/11/04 17:10:04 tv Exp $
+
+--- src/glitz.h.orig   2005-07-04 06:33:01.000000000 -0400
++++ src/glitz.h
+@@ -28,12 +28,13 @@
+ 
+ #if defined(__SVR4) && defined(__sun)
+ #  include <sys/int_types.h>
++#elif defined(__OpenBSD__)
++#  include <inttypes.h>
++#elif defined(__INTERIX)
++#  include <sys/types.h>
++#  define uint64_t u_int64_t
+ #else
+-#  if defined(__OpenBSD__)
+-#    include <inttypes.h>
+-#  else
+-#    include <stdint.h>
+-#  endif
++#  include <stdint.h>
+ #endif
+ 
+ #define GLITZ_MAJOR    0



Home | Main Index | Thread Index | Old Index