pkgsrc-Changes archive

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

CVS commit: pkgsrc/devel/py-greenlet



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Oct  7 22:57:12 UTC 2024

Modified Files:
        pkgsrc/devel/py-greenlet: Makefile

Log Message:
py-greenlet: require GCC 8

To fix
sorry, unimplemented: non-trivial designated initializers not supported
(tried it with simplified similar code on godbolt)

Comment out FORCE_CXX_STD since it was added for compiling with gcc 4.8.
Re-enable this if it's still needed, with an updated comment, thanks.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/py-greenlet/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/py-greenlet/Makefile
diff -u pkgsrc/devel/py-greenlet/Makefile:1.25 pkgsrc/devel/py-greenlet/Makefile:1.26
--- pkgsrc/devel/py-greenlet/Makefile:1.25      Tue Oct  1 20:07:24 2024
+++ pkgsrc/devel/py-greenlet/Makefile   Mon Oct  7 22:57:12 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2024/10/01 20:07:24 adam Exp $
+# $NetBSD: Makefile,v 1.26 2024/10/07 22:57:12 wiz Exp $
 
 DISTNAME=      greenlet-3.1.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
@@ -20,8 +20,11 @@ USE_LANGUAGES=       c c++
 # This does not use -std=cXX, but includes cstdint.
 # When compiling with gcc 4.8, this causes an error due to not having
 # explicitly enabled C++11 support.
-FORCE_CXX_STD=         c++11
+#FORCE_CXX_STD=                c++11
 USE_CXX_FEATURES+=     c++11
 
+# sorry, unimplemented: non-trivial designated initializers not supported
+GCC_REQD+=             8
+
 .include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index