From owner-svn-ports-head@freebsd.org Sat Aug 11 06:30:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69900105FFC8; Sat, 11 Aug 2018 06:30:45 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C4518E6C9; Sat, 11 Aug 2018 06:30:45 +0000 (UTC) (envelope-from loader@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F28F313638; Sat, 11 Aug 2018 06:30:44 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7B6UijQ008895; Sat, 11 Aug 2018 06:30:44 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7B6UiFm008890; Sat, 11 Aug 2018 06:30:44 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201808110630.w7B6UiFm008890@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Sat, 11 Aug 2018 06:30:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476860 - in head/mail/bincimap: . files X-SVN-Group: ports-head X-SVN-Commit-Author: loader X-SVN-Commit-Paths: in head/mail/bincimap: . files X-SVN-Commit-Revision: 476860 X-SVN-Commit-Repository: ports 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.27 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: Sat, 11 Aug 2018 06:30:45 -0000 Author: loader (doc committer) Date: Sat Aug 11 06:30:44 2018 New Revision: 476860 URL: https://svnweb.freebsd.org/changeset/ports/476860 Log: mail/bincimap: Fix build with Clang 6.0.0 Reviewed by: koobs Approved by: koobs (mentor) MFH: 2018Q3 Differential Revision: https://reviews.freebsd.org/D16658 Added: head/mail/bincimap/files/patch-src_greeting.cc (contents, props changed) Modified: head/mail/bincimap/Makefile Modified: head/mail/bincimap/Makefile ============================================================================== --- head/mail/bincimap/Makefile Sat Aug 11 06:22:47 2018 (r476859) +++ head/mail/bincimap/Makefile Sat Aug 11 06:30:44 2018 (r476860) @@ -3,7 +3,7 @@ PORTNAME= bincimap PORTVERSION= 1.2.13 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail MASTER_SITES= SF/${PORTNAME} DISTNAME= ${PORTNAME}-${PORTVERSION}final Added: head/mail/bincimap/files/patch-src_greeting.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/bincimap/files/patch-src_greeting.cc Sat Aug 11 06:30:44 2018 (r476860) @@ -0,0 +1,17 @@ +greeting.cc:72:18: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] + version = "v"VERSION" "; + ^ + +1 error generated. + +--- src/greeting.cc.orig 2018-08-04 05:50:47 UTC ++++ src/greeting.cc +@@ -69,7 +69,7 @@ void Binc::showGreeting(void) + string tmp = session.globalconfig["Security"]["version in greeting"]; + lowercase(tmp); + if (tmp == "yes") +- version = "v"VERSION" "; ++ version = "v" VERSION" "; + + com << "* OK Welcome to Binc IMAP " << version + << "Copyright (C) 2002-2005 Andreas Aardal Hanssen at "