pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/polly



Module Name:    pkgsrc
Committed By:   nia
Date:           Mon Apr 29 09:55:11 UTC 2024

Modified Files:
        pkgsrc/devel/polly: Makefile

Log Message:
polly: Fix building with compilers that don't default to C++17


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/polly/Makefile

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

Modified files:

Index: pkgsrc/devel/polly/Makefile
diff -u pkgsrc/devel/polly/Makefile:1.23 pkgsrc/devel/polly/Makefile:1.24
--- pkgsrc/devel/polly/Makefile:1.23    Mon Apr 22 07:25:56 2024
+++ pkgsrc/devel/polly/Makefile Mon Apr 29 09:55:10 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2024/04/22 07:25:56 adam Exp $
+# $NetBSD: Makefile,v 1.24 2024/04/29 09:55:10 nia Exp $
 
 .include "../../lang/llvm/version.mk"
 
@@ -13,7 +13,8 @@ LICENSE=      apache-2.0
 
 DEPENDS+=      llvm-${PKGVERSION_NOREV}{,nb*}:../../lang/llvm
 
-USE_CXX_FEATURES=      c++17
+USE_CXX_FEATURES+=     c++17
+FORCE_CXX_STD=         c++17
 USE_LANGUAGES=         c c++
 GCC_REQD+=             4.8
 



Home | Main Index | Thread Index | Old Index