svn commit: r476862 - in branches/2018Q3/mail/bincimap: . files

Fukang Chen loader at FreeBSD.org
Sat Aug 11 09:04:31 UTC 2018


Author: loader (doc committer)
Date: Sat Aug 11 09:04:30 2018
New Revision: 476862
URL: https://svnweb.freebsd.org/changeset/ports/476862

Log:
  MFH: r476860
  
  mail/bincimap: Fix build with Clang 6.0.0
  
  Reviewed by:	koobs
  Approved by:	koobs (mentor)
  Differential Revision:	https://reviews.freebsd.org/D16658
  
  Approved by:	ports-secteam (miwi)

Added:
  branches/2018Q3/mail/bincimap/files/patch-src_greeting.cc
     - copied unchanged from r476860, head/mail/bincimap/files/patch-src_greeting.cc
Modified:
  branches/2018Q3/mail/bincimap/Makefile
Directory Properties:
  branches/2018Q3/   (props changed)

Modified: branches/2018Q3/mail/bincimap/Makefile
==============================================================================
--- branches/2018Q3/mail/bincimap/Makefile	Sat Aug 11 08:30:55 2018	(r476861)
+++ branches/2018Q3/mail/bincimap/Makefile	Sat Aug 11 09:04:30 2018	(r476862)
@@ -3,7 +3,7 @@
 
 PORTNAME=	bincimap
 PORTVERSION=	1.2.13
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	mail
 MASTER_SITES=	SF/${PORTNAME}
 DISTNAME=	${PORTNAME}-${PORTVERSION}final

Copied: branches/2018Q3/mail/bincimap/files/patch-src_greeting.cc (from r476860, head/mail/bincimap/files/patch-src_greeting.cc)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q3/mail/bincimap/files/patch-src_greeting.cc	Sat Aug 11 09:04:30 2018	(r476862, copy of r476860, head/mail/bincimap/files/patch-src_greeting.cc)
@@ -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 "


More information about the svn-ports-all mailing list