diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-09-11 16:22:28 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-09-11 16:22:28 +0800 |
commit | 194f7b787ce76f5ebc8081ba2cb7838945af1ea0 (patch) | |
tree | f1818649648c790ea0829cefc102bc662582ccab /devel | |
parent | 07fe6ec318a5a627d6649e42c641811850d40741 (diff) | |
download | freebsd-ports-gnome-194f7b787ce76f5ebc8081ba2cb7838945af1ea0.tar.gz freebsd-ports-gnome-194f7b787ce76f5ebc8081ba2cb7838945af1ea0.tar.zst freebsd-ports-gnome-194f7b787ce76f5ebc8081ba2cb7838945af1ea0.zip |
devel/icu-le-hb: switch to C++11, required by ICU >= 59
In file included from LayoutEngine.cpp:8:
In file included from ./LETypes.h:14:
In file included from /usr/local/include/unicode/utypes.h:38:
/usr/local/include/unicode/umachine.h:347:13: error: unknown type name 'char16_t'
typedef char16_t UChar;
^
PR: 218788
Diffstat (limited to 'devel')
-rw-r--r-- | devel/icu-le-hb/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/devel/icu-le-hb/Makefile b/devel/icu-le-hb/Makefile index d0d172fd2a11..d3f1694a80e0 100644 --- a/devel/icu-le-hb/Makefile +++ b/devel/icu-le-hb/Makefile @@ -3,6 +3,7 @@ PORTNAME= icu-le-hb DISTVERSION= 1.0.3-3 DISTVERSIONSUFFIX= -gb8a3163 +PORTREVISION= 1 CATEGORIES= devel print MAINTAINER= office@FreeBSD.org @@ -19,7 +20,8 @@ LIB_DEPENDS= libicuuc.so:devel/icu \ USE_GITHUB= yes GH_ACCOUNT= behdad -USES= autoreconf gmake libtool pathfix pkgconfig +USES= autoreconf compiler:c++11-lib gmake libtool pathfix pkgconfig +USE_CXXSTD= gnu++11 USE_LDCONFIG= yes GNU_CONFIGURE= yes INSTALL_TARGET= install-strip |