From owner-svn-ports-head@FreeBSD.ORG Tue Feb 11 22:56:51 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2487B577; Tue, 11 Feb 2014 22:56:51 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E82621C0B; Tue, 11 Feb 2014 22:56:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1BMuoIs049208; Tue, 11 Feb 2014 22:56:50 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1BMuo3E049200; Tue, 11 Feb 2014 22:56:50 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201402112256.s1BMuo3E049200@svn.freebsd.org> From: Baptiste Daroussin Date: Tue, 11 Feb 2014 22:56:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343830 - head/textproc/aspell/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.17 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, 11 Feb 2014 22:56:51 -0000 Author: bapt Date: Tue Feb 11 22:56:50 2014 New Revision: 343830 URL: http://svnweb.freebsd.org/changeset/ports/343830 QAT: https://qat.redports.org/buildarchive/r343830/ Log: Fix build with clang 3.4 Submitted by: dim Added: head/textproc/aspell/files/patch-interfaces__cc__aspell.h (contents, props changed) head/textproc/aspell/files/patch-prog__aspell.cpp (contents, props changed) head/textproc/aspell/files/patch-prog__checker_string.hpp (contents, props changed) Added: head/textproc/aspell/files/patch-interfaces__cc__aspell.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/aspell/files/patch-interfaces__cc__aspell.h Tue Feb 11 22:56:50 2014 (r343830) @@ -0,0 +1,20 @@ +--- interfaces/cc/aspell.h.orig 2011-07-02 23:53:27.000000000 +0200 ++++ interfaces/cc/aspell.h 2014-02-11 22:40:16.000000000 +0100 +@@ -236,7 +236,7 @@ + + /******************************** errors ********************************/ + +- ++#ifndef ASPELL_ERRORS__HPP + extern const struct AspellErrorInfo * const aerror_other; + extern const struct AspellErrorInfo * const aerror_operation_not_supported; + extern const struct AspellErrorInfo * const aerror_cant_copy; +@@ -322,7 +322,7 @@ + extern const struct AspellErrorInfo * const aerror_bad_magic; + extern const struct AspellErrorInfo * const aerror_expression; + extern const struct AspellErrorInfo * const aerror_invalid_expression; +- ++#endif + + /******************************* speller *******************************/ + Added: head/textproc/aspell/files/patch-prog__aspell.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/aspell/files/patch-prog__aspell.cpp Tue Feb 11 22:56:50 2014 (r343830) @@ -0,0 +1,18 @@ +--- prog/aspell.cpp.orig 2011-07-04 11:13:58.000000000 +0200 ++++ prog/aspell.cpp 2014-02-11 22:42:04.000000000 +0100 +@@ -25,6 +25,7 @@ + # include + #endif + ++#include "errors.hpp" + #include "aspell.h" + + #ifdef USE_FILE_INO +@@ -40,7 +41,6 @@ + #include "convert.hpp" + #include "document_checker.hpp" + #include "enumeration.hpp" +-#include "errors.hpp" + #include "file_util.hpp" + #include "fstream.hpp" + #include "info.hpp" Added: head/textproc/aspell/files/patch-prog__checker_string.hpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/aspell/files/patch-prog__checker_string.hpp Tue Feb 11 22:56:50 2014 (r343830) @@ -0,0 +1,10 @@ +--- prog/hecker_string.hpp.orig 2011-07-02 23:09:09.000000000 +0200 ++++ prog/checker_string.hpp 2014-02-11 22:42:24.000000000 +0100 +@@ -6,6 +6,7 @@ + + #include + ++#include "errors.hpp" + #include "aspell.h" + + #include "vector.hpp"