From owner-svn-ports-all@FreeBSD.ORG Thu Nov 6 06:58:11 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 813B828D; Thu, 6 Nov 2014 06:58:11 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6D923DD4; Thu, 6 Nov 2014 06:58:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sA66wB4M070779; Thu, 6 Nov 2014 06:58:11 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sA66wBHH070777; Thu, 6 Nov 2014 06:58:11 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201411060658.sA66wBHH070777@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Thu, 6 Nov 2014 06:58:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372216 - in head/net-p2p/gtkhx: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2014 06:58:11 -0000 Author: shurd Date: Thu Nov 6 06:58:10 2014 New Revision: 372216 URL: https://svnweb.freebsd.org/changeset/ports/372216 QAT: https://qat.redports.org/buildarchive/r372216/ Log: Add patch to fix icon file parsing on 64-bit systems. Submitted by: shurd Added: head/net-p2p/gtkhx/files/patch-src__cicn.h (contents, props changed) Modified: head/net-p2p/gtkhx/Makefile Modified: head/net-p2p/gtkhx/Makefile ============================================================================== --- head/net-p2p/gtkhx/Makefile Thu Nov 6 04:54:48 2014 (r372215) +++ head/net-p2p/gtkhx/Makefile Thu Nov 6 06:58:10 2014 (r372216) @@ -3,7 +3,7 @@ PORTNAME= gtkhx PORTVERSION= 0.9.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-p2p MASTER_SITES= SF Added: head/net-p2p/gtkhx/files/patch-src__cicn.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-p2p/gtkhx/files/patch-src__cicn.h Thu Nov 6 06:58:10 2014 (r372216) @@ -0,0 +1,23 @@ +--- src/cicn.h.orig 2014-11-05 22:52:21.000000000 -0800 ++++ src/cicn.h 2014-11-05 22:54:42.000000000 -0800 +@@ -1,7 +1,9 @@ ++#include ++ + #define TYPE_cicn 0x6369636e + +-typedef void *Ptr; +-typedef void **Handle; ++typedef uint32_t Ptr; ++typedef uint32_t Handle; + typedef guint32 Fixed; + + struct Rect { +@@ -39,7 +41,7 @@ + }; + + typedef struct ColorTable ColorTable; +-typedef ColorTable *CTabPtr, **CTabHandle; ++typedef uint32_t CTabHandle; + + struct PixMap { + Ptr baseAddr PACKED; /* pointer to pixels */