pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/sysutils/gnome-vfs2 Fix a build problem on OS X ('uint...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/798e4bbfbe0b
branches:  trunk
changeset: 503384:798e4bbfbe0b
user:      kristerw <kristerw%pkgsrc.org@localhost>
date:      Sat Nov 19 16:24:57 2005 +0000

description:
Fix a build problem on OS X ('uint32_t' undeclared) using a patch from
the upstrems repository.

diffstat:

 sysutils/gnome-vfs2/distinfo         |   3 ++-
 sysutils/gnome-vfs2/patches/patch-ac |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (35 lines):

diff -r d037ff985826 -r 798e4bbfbe0b sysutils/gnome-vfs2/distinfo
--- a/sysutils/gnome-vfs2/distinfo      Sat Nov 19 15:42:56 2005 +0000
+++ b/sysutils/gnome-vfs2/distinfo      Sat Nov 19 16:24:57 2005 +0000
@@ -1,10 +1,11 @@
-$NetBSD: distinfo,v 1.42 2005/10/07 16:10:44 drochner Exp $
+$NetBSD: distinfo,v 1.43 2005/11/19 16:24:57 kristerw Exp $
 
 SHA1 (gnome-vfs-2.12.1.1.tar.bz2) = 48e484663f0d0f5e2a858d2f6e6a5a702e831734
 RMD160 (gnome-vfs-2.12.1.1.tar.bz2) = b96cd620ce60131c0ff467fd277d89ac76419e09
 Size (gnome-vfs-2.12.1.1.tar.bz2) = 1726588 bytes
 SHA1 (patch-aa) = a5a3ac6be3e2a888eaaab108807d2aff651e62db
 SHA1 (patch-ab) = 6320180870f234a150dfe40f8f990deec7a2a0b5
+SHA1 (patch-ac) = b34fe25b6881aeb91ac2e36db82234347a0f655b
 SHA1 (patch-ad) = fe233b03b0fc97f7bd34b29d79fef38f900365f4
 SHA1 (patch-ae) = 572b40dfa035dab5ef374aa73d2acacfcb72d641
 SHA1 (patch-af) = 6724c4a43d0d9525f5361ba7380c91adbf656e56
diff -r d037ff985826 -r 798e4bbfbe0b sysutils/gnome-vfs2/patches/patch-ac
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sysutils/gnome-vfs2/patches/patch-ac      Sat Nov 19 16:24:57 2005 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ac,v 1.7 2005/11/19 16:24:57 kristerw Exp $
+
+--- libgnomevfs/xdgmimecache.c.orig    2005-11-19 16:35:49.000000000 +0100
++++ libgnomevfs/xdgmimecache.c 2005-11-19 16:36:26.000000000 +0100
+@@ -79,8 +79,8 @@
+   char   *buffer;
+ };
+ 
+-#define GET_UINT16(cache,offset) (ntohs(*(uint16_t*)((cache) + (offset))))
+-#define GET_UINT32(cache,offset) (ntohl(*(uint32_t*)((cache) + (offset))))
++#define GET_UINT16(cache,offset) (ntohs(*(xdg_uint16_t*)((cache) + (offset))))
++#define GET_UINT32(cache,offset) (ntohl(*(xdg_uint32_t*)((cache) + (offset))))
+ 
+ XdgMimeCache *
+ _xdg_mime_cache_ref (XdgMimeCache *cache)



Home | Main Index | Thread Index | Old Index