From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Oct 20 23:50:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0013F16A4D0 for ; Wed, 20 Oct 2004 23:50:24 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B87BB43D48 for ; Wed, 20 Oct 2004 23:50:24 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i9KNoJX7030735 for ; Wed, 20 Oct 2004 23:50:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i9KNoJc1030734; Wed, 20 Oct 2004 23:50:19 GMT (envelope-from gnats) Resent-Date: Wed, 20 Oct 2004 23:50:19 GMT Resent-Message-Id: <200410202350.i9KNoJc1030734@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 235E416A4CE for ; Wed, 20 Oct 2004 23:45:32 +0000 (GMT) Received: from imf20aec.mail.bellsouth.net (imf20aec.mail.bellsouth.net [205.152.59.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 990D343D1D for ; Wed, 20 Oct 2004 23:45:31 +0000 (GMT) (envelope-from ahze@blueheron.ahze.net) Received: from blueheron.ahze.net ([68.209.163.3]) by imf20aec.mail.bellsouth.netESMTP <20041020234525.LLNF632.imf20aec.mail.bellsouth.net@blueheron.ahze.net> for ; Wed, 20 Oct 2004 19:45:25 -0400 Received: (from root@localhost) by blueheron.ahze.net (8.13.1/8.13.1/Submit) id i9KNjOiG071890; Wed, 20 Oct 2004 19:45:24 -0400 (EDT) (envelope-from ahze) Message-Id: <200410202345.i9KNjOiG071890@blueheron.ahze.net> Date: Wed, 20 Oct 2004 19:45:24 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/72943: [MAINTAINER] audio/faad2: fix build on amd64 6.x X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2004 23:50:25 -0000 >Number: 72943 >Category: ports >Synopsis: [MAINTAINER] audio/faad2: fix build on amd64 6.x >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Oct 20 23:50:19 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD blueheron.ahze.net 5.3-STABLE FreeBSD 5.3-STABLE #68: Sat Oct 16 21:30:18 EDT 2004 >Description: - fix build on amd64 Reported By: kris@ sean@mcneil.com Tested and Submitted by: sean@mcneil.com Added file(s): - files/patch-amd64-gcc34 Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- faad2-2.0_4,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/audio/faad.orig/files/patch-amd64-gcc34 /usr/ports/audio/faad/files/patch-amd64-gcc34 --- /usr/ports/audio/faad.orig/files/patch-amd64-gcc34 Wed Dec 31 19:00:00 1969 +++ /usr/ports/audio/faad/files/patch-amd64-gcc34 Wed Oct 20 19:41:59 2004 @@ -0,0 +1,47 @@ +--- common/mp4v2/mp4property.h.orig Sun Jun 29 17:41:00 2003 ++++ common/mp4v2/mp4property.h Wed Oct 20 19:41:16 2004 +@@ -58,7 +58,7 @@ + return m_name; + } + +- virtual MP4PropertyType GetType() = NULL; ++ virtual MP4PropertyType GetType() = 0; + + bool IsReadOnly() { + return m_readOnly; +@@ -74,17 +74,17 @@ + m_implicit = value; + } + +- virtual u_int32_t GetCount() = NULL; +- virtual void SetCount(u_int32_t count) = NULL; ++ virtual u_int32_t GetCount() = 0; ++ virtual void SetCount(u_int32_t count) = 0; + + virtual void Generate() { /* default is a no-op */ }; + +- virtual void Read(MP4File* pFile, u_int32_t index = 0) = NULL; ++ virtual void Read(MP4File* pFile, u_int32_t index = 0) = 0; + +- virtual void Write(MP4File* pFile, u_int32_t index = 0) = NULL; ++ virtual void Write(MP4File* pFile, u_int32_t index = 0) = 0; + + virtual void Dump(FILE* pFile, u_int8_t indent, +- bool dumpImplicits, u_int32_t index = 0) = NULL; ++ bool dumpImplicits, u_int32_t index = 0) = 0; + + virtual bool FindProperty(const char* name, + MP4Property** ppProperty, u_int32_t* pIndex = NULL); +--- common/mp4v2/rtphint.h.orig Sun Jun 29 17:41:00 2003 ++++ common/mp4v2/rtphint.h Wed Oct 20 19:41:16 2004 +@@ -35,8 +35,8 @@ + return m_pPacket; + } + +- virtual u_int16_t GetDataSize() = NULL; +- virtual void GetData(u_int8_t* pDest) = NULL; ++ virtual u_int16_t GetDataSize() = 0; ++ virtual void GetData(u_int8_t* pDest) = 0; + + MP4Track* FindTrackFromRefIndex(u_int8_t refIndex); + --- faad2-2.0_4,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: