pkgsrc-Changes archive

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

CVS commit: pkgsrc/cad/kicad



Module Name:    pkgsrc
Committed By:   gdt
Date:           Mon Feb 27 13:59:14 UTC 2023

Modified Files:
        pkgsrc/cad/kicad: Makefile

Log Message:
cad/kicad: Require C++17 and GCC 8

The new version uses <charconv>, and fails to build with gcc 7.  kicad
builds with gcc10, and likely builds with 8 (based on nodejs building
with 8, after showing the same charconv failure).  Therefore this
commit is an improvment, and if 8 fails we can reassess.


To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 pkgsrc/cad/kicad/Makefile

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

Modified files:

Index: pkgsrc/cad/kicad/Makefile
diff -u pkgsrc/cad/kicad/Makefile:1.73 pkgsrc/cad/kicad/Makefile:1.74
--- pkgsrc/cad/kicad/Makefile:1.73      Mon Feb 13 08:16:10 2023
+++ pkgsrc/cad/kicad/Makefile   Mon Feb 27 13:59:14 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.73 2023/02/13 08:16:10 tnn Exp $
+# $NetBSD: Makefile,v 1.74 2023/02/27 13:59:14 gdt Exp $
 #
 
 V=             7.0.0
@@ -18,7 +18,8 @@ BUILD_DEPENDS+=       swig4-[0-9]*:../../devel
 DEPENDS+=      git-base-[0-9]*:../../devel/git-base
 
 USE_PKGLOCALEDIR=      yes
-USE_LANGUAGES=         c c++11
+USE_LANGUAGES=         c c++17
+GCC_REQD+=             8
 USE_CMAKE=             yes
 USE_TOOLS+=            pkg-config msgfmt msgmerge xgettext
 



Home | Main Index | Thread Index | Old Index