From owner-svn-ports-head@FreeBSD.ORG Tue May 5 01:49:38 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4574866B; Tue, 5 May 2015 01:49:38 +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 3341013B5; Tue, 5 May 2015 01:49:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t451ncAJ038165; Tue, 5 May 2015 01:49:38 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t451ncjP038164; Tue, 5 May 2015 01:49:38 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201505050149.t451ncjP038164@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 5 May 2015 01:49:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385438 - head/math/fityk/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-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 May 2015 01:49:38 -0000 Author: jbeich Date: Tue May 5 01:49:37 2015 New Revision: 385438 URL: https://svnweb.freebsd.org/changeset/ports/385438 Log: math/fityk: unbreak build on 8.x r385070 exposed another issue: In file included from ceria.cpp:4:0: ceria.h:52:23: error: 'FILE' was not declared in this scope CelFile read_cel_file(FILE* f); ^ ceria.h:52:29: error: 'f' was not declared in this scope CelFile read_cel_file(FILE* f); ^ ceria.h:53:41: error: 'FILE' has not been declared void write_cel_file(CelFile const& cel, FILE* f); ^ ceria.cpp: In function 'CelFile read_cel_file(FILE*)': ceria.cpp:719:30: error: 'CelFile read_cel_file(FILE*)' redeclared as different kind of symbol CelFile read_cel_file(FILE *f) ^ In file included from ceria.cpp:4:0: ceria.h:52:9: error: previous declaration of 'CelFile read_cel_file' CelFile read_cel_file(FILE* f); ^ Reported by: pkg-fallout Approved by: portmgr blanket Added: head/math/fityk/files/patch-src__wxgui__ceria.h (contents, props changed) Added: head/math/fityk/files/patch-src__wxgui__ceria.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/fityk/files/patch-src__wxgui__ceria.h Tue May 5 01:49:37 2015 (r385438) @@ -0,0 +1,10 @@ +--- src/wxgui/ceria.h.orig 2011-06-03 17:15:42 UTC ++++ src/wxgui/ceria.h +@@ -4,6 +4,7 @@ + #ifndef FITYK_WX_CERIA_H_ + #define FITYK_WX_CERIA_H_ + ++#include + #include + #include + #include "atomtables.h"