From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jul 3 14:30:15 2003 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 D92C137B401 for ; Thu, 3 Jul 2003 14:30:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0A194400D for ; Thu, 3 Jul 2003 14:30:14 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h63LUEUp098316 for ; Thu, 3 Jul 2003 14:30:14 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h63LUEO1098315; Thu, 3 Jul 2003 14:30:14 -0700 (PDT) Resent-Date: Thu, 3 Jul 2003 14:30:14 -0700 (PDT) Resent-Message-Id: <200307032130.h63LUEO1098315@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, "Georg-W. Koltermann" Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2460B37B401 for ; Thu, 3 Jul 2003 14:21:29 -0700 (PDT) Received: from smtp.web.de (smtp02.web.de [217.72.192.151]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F52943FF5 for ; Thu, 3 Jul 2003 14:21:28 -0700 (PDT) (envelope-from g.w.k@web.de) Received: from [217.232.148.12] (helo=[217.232.148.12]) by smtp.web.de with asmtp (WEB.DE 4.98 #232) id 19YBW8-0005J9-00; Thu, 03 Jul 2003 23:21:24 +0200 Received: from hunter.muc.mscsoftware.com ([172.17.22.32]) byid 2003063017512071-238 ; Mon, 30 Jun 2003 17:51:20 +0200 Received: from hunter.muc.mscsoftware.com (localhost.muc.mscsoftware.com id h5UG1IdG025822; Mon, 30 Jun 2003 18:01:19 +0200 (CEST) (envelope-from gwk@hunter.muc.eu.mscsoftware.com) Received: (from gwk@localhost) by hunter.muc.mscsoftware.com (8.12.9/8.12.9/Submit) id h5UG1Iog025821; Mon, 30 Jun 2003 18:01:18 +0200 (CEST) Message-Id: <200306301601.h5UG1Iog025821@hunter.muc.mscsoftware.com> Date: 03 Jul 2003 23:22:37 +0200 From: "Georg-W. Koltermann" Sender: g.w.k@web.de To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: Georg.Koltermann@mscsoftware.com Subject: ports/54075: fix xxdiff port compile problems 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: Thu, 03 Jul 2003 21:30:16 -0000 >Number: 54075 >Category: ports >Synopsis: fix xxdiff port compile problems >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Jul 03 14:30:14 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Georg-W. Koltermann >Release: FreeBSD 5.1-RELEASE i386 >Organization: MSC.Software >Environment: System: FreeBSD hunter.muc.mscsoftware.com 5.1-RELEASE FreeBSD 5.1-RELEASE #0: Sun Jun 29 23:30:50 CEST 2003 gwk@hunter.muc.mscsoftware.com:/usr/obj/usr/src/sys/HUNTER i386 >Description: The xxdiff port is currently marked broken for FreeBSD 5.x. This patch fixes it. Just dump the patch into a "patch-xxxx" file in the files directory of the port, and remove the BROKEN from the Makefile. See Fix section for patch. >How-To-Repeat: >Fix: --- exceptions.h.orig Mon Jun 30 17:27:19 2003 +++ exceptions.h Mon Jun 30 17:29:00 2003 @@ -116,6 +116,8 @@ // Returns true if this is a benine exception. bool isBenine() const; + ~XxUsageError() throw() { } + private: /*----- data members -----*/ @@ -142,6 +144,7 @@ const QString& msg = QString::null // use errno string only. ); + ~XxIoError() throw() { } }; /*============================================================================== @@ -161,6 +164,8 @@ XxInternalError( XX_EXC_PARAMS_DECL(file,line) ); + + ~XxInternalError() throw() { } }; --- builderFiles3.cpp.orig Mon Jun 30 17:31:39 2003 +++ builderFiles3.cpp Mon Jun 30 17:32:00 2003 @@ -73,6 +73,8 @@ const XxFln f3n2 ); + ~XxParseDiffError() throw() { } + }; //------------------------------------------------------------------------------ --- builderDirs2.cpp.orig Mon Jun 30 17:32:25 2003 +++ builderDirs2.cpp Mon Jun 30 17:32:46 2003 @@ -94,6 +94,8 @@ const char* buf ); + ~XxParseDiffError() throw() { } + }; /*============================================================================== --- builderFiles2.cpp~ Tue Nov 6 07:30:32 2001 +++ builderFiles2.cpp Mon Jun 30 17:40:21 2003 @@ -150,6 +150,8 @@ const XxFln f2n2 ); + ~XxParseDiffError() throw() { } + }; //------------------------------------------------------------------------------ >Release-Note: >Audit-Trail: >Unformatted: