pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/vte3



Module Name:    pkgsrc
Committed By:   gdt
Date:           Sun Mar 31 00:35:05 UTC 2019

Modified Files:
        pkgsrc/x11/vte3: Makefile

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/x11/vte3/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/vte3/Makefile
diff -u pkgsrc/x11/vte3/Makefile:1.18 pkgsrc/x11/vte3/Makefile:1.19
--- pkgsrc/x11/vte3/Makefile:1.18       Thu Mar  7 21:36:06 2019
+++ pkgsrc/x11/vte3/Makefile    Sun Mar 31 00:35:05 2019
@@ -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
 



Home | Main Index | Thread Index | Old Index