From owner-freebsd-ports@FreeBSD.ORG Sat Dec 13 00:43:56 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51E5A16A4CE for ; Sat, 13 Dec 2003 00:43:56 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id E962843D1F for ; Sat, 13 Dec 2003 00:43:54 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from dhcp01.pn.xcllnt.net (dhcp01.pn.xcllnt.net [192.168.4.201]) by ns1.xcllnt.net (8.12.10/8.12.10) with ESMTP id hBD8hsOE054225; Sat, 13 Dec 2003 00:43:54 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp01.pn.xcllnt.net (localhost [127.0.0.1]) hBD8hsTw022020; Sat, 13 Dec 2003 00:43:54 -0800 (PST) (envelope-from marcel@dhcp01.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp01.pn.xcllnt.net (8.12.10/8.12.10/Submit) id hBD8hsS3022019; Sat, 13 Dec 2003 00:43:54 -0800 (PST) (envelope-from marcel) Date: Sat, 13 Dec 2003 00:43:53 -0800 From: Marcel Moolenaar To: Nakata Maho Message-ID: <20031213084353.GA63894@dhcp01.pn.xcllnt.net> References: <20031128212049.GG88233@xor.obsecurity.org> <20031213.172631.730554238.chat95@mbox.kyoto-inet.or.jp> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline In-Reply-To: <20031213.172631.730554238.chat95@mbox.kyoto-inet.or.jp> User-Agent: Mutt/1.5.5.1i cc: ports@freebsd.org Subject: Re: povray-3.5_2 broken on ia64 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Dec 2003 08:43:56 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Dec 13, 2003 at 05:26:31PM +0900, Nakata Maho wrote: > Hi, all > > povray for ia64 is broken. > > > http://bento.freebsd.org/errorlogs/ia64-5-latest/povray-3.5_2.log > > > > Can you please investigate and/or report to the developers? > > Does anybody here interested in this port for ia64? >From the log: : In file included from /usr/local/include/tiffio.h:33, from tiff_pov.cpp:46: /usr/local/include/tiff.h:83: error: conflicting types for `typedef int int32' frame.h:52: error: previous declaration as `typedef long int int32' It looks like povray is broken on any 64-bit platform. The attached patch should fix that. FYI, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-src::frame.h" --- src/frame.h.orig Sat Dec 13 00:37:32 2003 +++ src/frame.h Sat Dec 13 00:38:06 2003 @@ -44,12 +44,12 @@ class pov_istream_class; class pov_ostream_class; -typedef unsigned long u_int32 ; +typedef unsigned int u_int32 ; typedef unsigned short u_int16 ; typedef unsigned char u_int8 ; typedef unsigned char byte ; -typedef signed long int32 ; +typedef signed int int32 ; typedef signed short int16 ; typedef signed char int8 ; --OXfL5xGRrasGEqWY--