From owner-cvs-ports@FreeBSD.ORG Sat Dec 16 13:26:11 2006 Return-Path: X-Original-To: cvs-ports@FreeBSD.org Delivered-To: cvs-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 125B616A403; Sat, 16 Dec 2006 13:26:11 +0000 (UTC) (envelope-from fjoe@neo.samodelkin.net) Received: from neo.samodelkin.net (samodelkin.net [195.62.0.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52A5A43CA9; Sat, 16 Dec 2006 13:26:07 +0000 (GMT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id D9D3D1704E; Sat, 16 Dec 2006 19:26:04 +0600 (NOVT) Date: Sat, 16 Dec 2006 19:26:04 +0600 From: Max Khon To: Edwin Groothuis Message-ID: <20061216132604.GA85341@samodelkin.net> References: <200612161108.kBGB8OEO038723@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="M9NhX3UHpAaciwkO" Content-Disposition: inline In-Reply-To: <200612161108.kBGB8OEO038723@repoman.freebsd.org> User-Agent: Mutt/1.4.2i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/games/groundhog Makefile X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Dec 2006 13:26:11 -0000 --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi! On Sat, Dec 16, 2006 at 11:08:24AM +0000, Edwin Groothuis wrote: > edwin 2006-12-16 11:08:24 UTC > > FreeBSD ports repository > > Modified files: > games/groundhog Makefile > Log: > mark as USE_GCC=3.4 to overcome 4.1 issues > > Revision Changes Path > 1.16 +1 -0 ports/games/groundhog/Makefile Attached patch fixes the problem with gcc 4.1. I think that USE_GCC should be used in very rare cases. /fjoe --M9NhX3UHpAaciwkO Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="groundhog.diff" Index: files/patch-src-element.h =================================================================== RCS file: files/patch-src-element.h diff -N files/patch-src-element.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src-element.h 16 Dec 2006 13:15:54 -0000 @@ -0,0 +1,10 @@ +--- src/element.h.orig Sat Dec 16 18:57:18 2006 ++++ src/element.h Sat Dec 16 18:57:31 2006 +@@ -24,6 +24,7 @@ + class Element { + public: + Element() {} ++ virtual ~Element() {} + virtual void PutBall(Ball* ball); + virtual void MoveBall(Ball* ball) = 0; + virtual void ConnectLeft(Element* element) = 0; Index: files/patch-src-options_dialog.h =================================================================== RCS file: files/patch-src-options_dialog.h diff -N files/patch-src-options_dialog.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-src-options_dialog.h 16 Dec 2006 13:16:14 -0000 @@ -0,0 +1,11 @@ +--- src/options_dialog.h.orig Sat Dec 16 18:57:43 2006 ++++ src/options_dialog.h Sat Dec 16 18:57:50 2006 +@@ -28,7 +28,7 @@ + Game* _game; + GtkWidget* _tooltips; + +- void OptionsDialog::OnOk(); ++ void OnOk(); + public: + OptionsDialog(Game* game); + }; --M9NhX3UHpAaciwkO--