diff options
author | minskim <minskim@pkgsrc.org> | 2005-05-09 04:29:16 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2005-05-09 04:29:16 +0000 |
commit | c4933146fb49fa4fa4b5c4e1569df0faa19285be (patch) | |
tree | 94f70c0b1ab9ed5c23d4795d3f75cbd62e7342d4 /x11 | |
parent | 1e0343b80bb7462092d5fb2b177a8487a3839b59 (diff) | |
download | pkgsrc-c4933146fb49fa4fa4b5c4e1569df0faa19285be.tar.gz |
Include stdint.h to use uint16_t on Darwin.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/gtk2/distinfo | 3 | ||||
-rw-r--r-- | x11/gtk2/patches/patch-ab | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/x11/gtk2/distinfo b/x11/gtk2/distinfo index dd0593867c0..ba29f8027a9 100644 --- a/x11/gtk2/distinfo +++ b/x11/gtk2/distinfo @@ -1,9 +1,10 @@ -$NetBSD: distinfo,v 1.45 2005/05/08 09:07:08 jmmv Exp $ +$NetBSD: distinfo,v 1.46 2005/05/09 04:29:16 minskim Exp $ SHA1 (gtk+-2.6.7.tar.bz2) = 3a583ae6b468ded5dfcdc87cbd4f487d56b3e2c7 RMD160 (gtk+-2.6.7.tar.bz2) = c664442d779f7fd1668a0294aa66d687f34601e4 Size (gtk+-2.6.7.tar.bz2) = 11424614 bytes SHA1 (patch-aa) = 4991da77c0d8ad79ca616c7e6d80449863725b00 +SHA1 (patch-ab) = 213b38a1a3939194ac5c54234a1deccf935db368 SHA1 (patch-ac) = d9a47653b8db5ffae28dc233aea0dc15399eea79 SHA1 (patch-ad) = 1c93a494fa2040a1ec936cfd1fe31756b0fe3847 SHA1 (patch-ae) = 1fdeeef405b2045f26335f0bb607e3c3d24b3ae6 diff --git a/x11/gtk2/patches/patch-ab b/x11/gtk2/patches/patch-ab new file mode 100644 index 00000000000..2edba5a55e0 --- /dev/null +++ b/x11/gtk2/patches/patch-ab @@ -0,0 +1,14 @@ +$NetBSD: patch-ab,v 1.12 2005/05/09 04:29:16 minskim Exp $ + +--- gtk/xdgmime/xdgmimecache.c.orig 2005-04-08 16:02:28.000000000 -0500 ++++ gtk/xdgmime/xdgmimecache.c +@@ -28,6 +28,9 @@ + #include <config.h> + #endif + ++#ifdef HAVE_STDINT_H ++#include <stdint.h> ++#endif + #include <stdio.h> + #include <stdlib.h> + #include <string.h> |