File: 0001-Do-not-force-old-C-standard.patch

package info (click to toggle)
python-pyglm 2.8.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,008 kB
  • sloc: cpp: 53,029; python: 3,683; makefile: 7
file content (21 lines) | stat: -rw-r--r-- 597 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Thu, 11 Sep 2025 09:08:49 +0200
Subject: Do not force old C++ standard

---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index fb73a5b..4bd7537 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ setup(
             name="pyglm.glm",
             sources=["PyGLM_lib/PyGLM.cpp"],
             include_dirs=["PyGLM_lib/glm/"], 
-            extra_compile_args=['-std=c++11', f'-DVERSION={VERSION}']
+            extra_compile_args=[f'-DVERSION={VERSION}']
         ),
     ]
 )