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: nia
Date: Sun Jul 9 15:01:40 UTC 2023
Modified Files:
pkgsrc/devel/py-greenlet: Makefile
Log Message:
py-greenlet: Assumes compiler defaults to C++11.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 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.18 pkgsrc/devel/py-greenlet/Makefile:1.19
--- pkgsrc/devel/py-greenlet/Makefile:1.18 Mon Jan 30 12:53:24 2023
+++ pkgsrc/devel/py-greenlet/Makefile Sun Jul 9 15:01:40 2023
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.18 2023/01/30 12:53:24 adam Exp $
+# $NetBSD: Makefile,v 1.19 2023/07/09 15:01:40 nia Exp $
DISTNAME= greenlet-2.0.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
@@ -12,7 +12,10 @@ LICENSE= mit
TEST_DEPENDS+= ${PYPKGPREFIX}-objgraph-[0-9]*:../../graphics/py-objgraph
-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.
+USE_LANGUAGES= c c++11
PYTHON_VERSIONS_INCOMPATIBLE= 27
Home |
Main Index |
Thread Index |
Old Index