Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Sep 2017 09:22:36 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r449621 - head/databases/evolution-data-server
Message-ID:  <201709110922.v8B9Ma8e042891@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Mon Sep 11 09:22:36 2017
New Revision: 449621
URL: https://svnweb.freebsd.org/changeset/ports/449621

Log:
  databases/evolution-data-server: switch to C++11, required by ICU >= 59
  
  In file included from e-alphabet-index-private.cpp:37:
  In file included from /usr/local/include/unicode/alphaindex.h:18:
  /usr/local/include/unicode/unistr.h:3025:7: error: delegating constructors are permitted only in C++11
        UnicodeString(ConstChar16Ptr(text)) {}
        ^~~~~~~~~~~~~
  /usr/local/include/unicode/unistr.h:3087:7: error: delegating constructors are permitted only in C++11
        UnicodeString(ConstChar16Ptr(text), length) {}
        ^~~~~~~~~~~~~
  /usr/local/include/unicode/unistr.h:3180:7: error: delegating constructors are permitted only in C++11
        UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {}
        ^~~~~~~~~~~~~
  
  PR:		218788

Modified:
  head/databases/evolution-data-server/Makefile   (contents, props changed)

Modified: head/databases/evolution-data-server/Makefile
==============================================================================
--- head/databases/evolution-data-server/Makefile	Mon Sep 11 09:02:01 2017	(r449620)
+++ head/databases/evolution-data-server/Makefile	Mon Sep 11 09:22:36 2017	(r449621)
@@ -3,7 +3,7 @@
 
 PORTNAME=	evolution-data-server
 PORTVERSION=	3.24.2
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	databases gnome
 MASTER_SITES=	GNOME
 DIST_SUBDIR=	gnome3
@@ -33,6 +33,7 @@ PORTSCOUT=	limitw:1,even
 USES=		bdb:5 cmake compiler:c++11-lib gettext gnome gperf \
 		iconv localbase pathfix pkgconfig python:3.3+,build\
 		sqlite tar:xz
+USE_CXXSTD=	gnu++11
 USE_GNOME=	cairo gdkpixbuf2 gtk30 intltool introspection:build libxml2
 USE_LDCONFIG=	yes
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709110922.v8B9Ma8e042891>