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:           Mon Jun 22 10:48:34 UTC 2020

Modified Files:
        pkgsrc/x11/vte3: Makefile

Log Message:
x11/vte: Accomdate C++17 usage

The package was declared to use c++14 and need gcc 5, but trying to
build on NetBSD 8 resulted in an error that gcc7 was needed for c++17.


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 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.27 pkgsrc/x11/vte3/Makefile:1.28
--- pkgsrc/x11/vte3/Makefile:1.27       Sat Jun 20 16:00:07 2020
+++ pkgsrc/x11/vte3/Makefile    Mon Jun 22 10:48:34 2020
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.27 2020/06/20 16:00:07 nia Exp $
+# $NetBSD: Makefile,v 1.28 2020/06/22 10:48:34 gdt Exp $
 
 DISTNAME=      vte-0.60.3
 PKGNAME=       ${DISTNAME:S/vte/vte3/}
@@ -17,9 +17,9 @@ PKGCONFIG_OVERRIDE+=          output/meson-priva
 
 GNU_CONFIGURE=         yes
 USE_TOOLS+=            gmake intltool msgfmt pkg-config bash
-USE_LANGUAGES=         c c++14
-# for c++14 \todo
-GCC_REQD+=             5
+USE_LANGUAGES=         c c++17
+# for c++17
+GCC_REQD+=             7
 
 .include "../../devel/meson/build.mk"
 .include "../../converters/fribidi/buildlink3.mk"



Home | Main Index | Thread Index | Old Index