From owner-svn-ports-all@freebsd.org Sat Nov 26 12:30:54 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9FD7C55343; Sat, 26 Nov 2016 12:30:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 B99B6362; Sat, 26 Nov 2016 12:30:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAQCUrT8094104; Sat, 26 Nov 2016 12:30:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAQCUrIk094103; Sat, 26 Nov 2016 12:30:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201611261230.uAQCUrIk094103@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 26 Nov 2016 12:30:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427162 - head/editors/tea/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-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Nov 2016 12:30:55 -0000 Author: jbeich Date: Sat Nov 26 12:30:53 2016 New Revision: 427162 URL: https://svnweb.freebsd.org/changeset/ports/427162 Log: editors/tea: unbreak with hunspell 1.5 spellchecker.cpp:339:12: error: assigning to 'char *' from incompatible type 'const char *' encoding = speller->get_dic_encoding(); ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ https://github.com/hunspell/hunspell/commit/971f8a9cf52e PR: 214837 Approved by: portmgr blanket Added: head/editors/tea/files/ head/editors/tea/files/patch-spellchecker.h (contents, props changed) Added: head/editors/tea/files/patch-spellchecker.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/tea/files/patch-spellchecker.h Sat Nov 26 12:30:53 2016 (r427162) @@ -0,0 +1,11 @@ +--- spellchecker.h.orig 2016-09-16 19:56:10 UTC ++++ spellchecker.h +@@ -100,7 +100,7 @@ public: + QString user_dir; + QString lng; + +- char *encoding; ++ const char *encoding; + QString dict_dir; + + CHunspellChecker (const QString &lang, const QString &path = "", const QString &user_path = "");