diff options
author | gdt <gdt@pkgsrc.org> | 2019-03-31 00:35:05 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2019-03-31 00:35:05 +0000 |
commit | b9e80a7bfe221473445518f405d1dfa3b817f932 (patch) | |
tree | b7c260f5ff45a86d8970c05cc60ceb3002c7f2b9 /x11/vte3 | |
parent | c5ed66555b86363a290142fa5e4b24fd25d6b68b (diff) | |
download | pkgsrc-b9e80a7bfe221473445518f405d1dfa3b817f932.tar.gz |
x11/vte3: Require c++14 and hence gcc 5
With gcc 4.8, the configure script errors out about c++14. The build
works with gcc5 or gcc6, so set GCC_REQD to 5.
Diffstat (limited to 'x11/vte3')
-rw-r--r-- | x11/vte3/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/x11/vte3/Makefile b/x11/vte3/Makefile index 94aa3a04eb7..8cd48a4bf43 100644 --- a/x11/vte3/Makefile +++ b/x11/vte3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2019/03/07 21:36:06 jmcneill Exp $ +# $NetBSD: Makefile,v 1.19 2019/03/31 00:35:05 gdt Exp $ DISTNAME= vte-0.54.3 PKGNAME= ${DISTNAME:S/vte/vte3/} @@ -16,7 +16,9 @@ PKGCONFIG_OVERRIDE+= vte.pc.in USE_LIBTOOL= yes GNU_CONFIGURE= yes USE_TOOLS+= gmake intltool msgfmt pkg-config bash -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++14 +# for c++14 \todo +GCC_REQD= 5 BUILDLINK_TRANSFORM+= rm:-Werror=format=2 |