Date: Mon, 11 Sep 2017 08:23:03 +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: r449611 - head/misc/sword Message-ID: <201709110823.v8B8N3sC017155@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Mon Sep 11 08:23:03 2017 New Revision: 449611 URL: https://svnweb.freebsd.org/changeset/ports/449611 Log: misc/sword: switch to C++11, required by ICU >= 59 In file included from ../src/mgr/swmgr.cpp:102: In file included from ../include/utf8transliterator.h:41: /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/misc/sword/Makefile (contents, props changed) Modified: head/misc/sword/Makefile ============================================================================== --- head/misc/sword/Makefile Mon Sep 11 08:22:51 2017 (r449610) +++ head/misc/sword/Makefile Mon Sep 11 08:23:03 2017 (r449611) @@ -3,7 +3,7 @@ PORTNAME= sword PORTVERSION= 1.7.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= misc MASTER_SITES= ftp://ftp.crosswire.org/pub/sword/source/v${PORTVERSION:R}/ \ http://crosswire.org/ftpmirror/pub/sword/source/v${PORTVERSION:R}/ @@ -21,7 +21,8 @@ BROKEN_powerpc64= does not compile: libicui18n.so: und GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-conf --with-zlib INSTALL_TARGET= install-strip -USES= gmake libtool pathfix pkgconfig +USES= compiler:c++11-lib gmake libtool pathfix pkgconfig +USE_CXXSTD= gnu++11 USE_LDCONFIG= yes SUB_FILES= pkg-message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709110823.v8B8N3sC017155>