pkgsrc-Changes archive

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

CVS commit: pkgsrc/mk/compiler



Module Name:    pkgsrc
Committed By:   nia
Date:           Thu Jul 20 21:12:16 UTC 2023

Modified Files:
        pkgsrc/mk/compiler: gcc.mk

Log Message:
mk: Most packages don't know to use the "experimental" header,
so just require gcc8 for std::filesystem.


To generate a diff of this commit:
cvs rdiff -u -r1.254 -r1.255 pkgsrc/mk/compiler/gcc.mk

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

Modified files:

Index: pkgsrc/mk/compiler/gcc.mk
diff -u pkgsrc/mk/compiler/gcc.mk:1.254 pkgsrc/mk/compiler/gcc.mk:1.255
--- pkgsrc/mk/compiler/gcc.mk:1.254     Tue Jul 18 12:49:46 2023
+++ pkgsrc/mk/compiler/gcc.mk   Thu Jul 20 21:12:16 2023
@@ -1,4 +1,4 @@
-# $NetBSD: gcc.mk,v 1.254 2023/07/18 12:49:46 nia Exp $
+# $NetBSD: gcc.mk,v 1.255 2023/07/20 21:12:16 nia Exp $
 #
 # This is the compiler definition for the GNU Compiler Collection.
 #
@@ -216,14 +216,7 @@ GCC_REQD+= 4.9
 .endif
 
 .if !empty(USE_CXX_FEATURES:Mfilesystem)
-# std::filesystem was "experimental" in gcc7 and NetBSD 9 shipped
-# GCC without the experimental C++ library headers (a break from
-# upstream).
-.  if ${OPSYS} == "NetBSD"
 GCC_REQD+=     8
-.  else
-GCC_REQD+=     7
-.  endif
 .endif
 
 .if !empty(USE_CXX_FEATURES:Mparallelism_ts)



Home | Main Index | Thread Index | Old Index