summaryrefslogtreecommitdiff
path: root/graphics/goxel/files/patch-SConstruct
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2021-01-02 14:05:27 +0000
committerRene Ladan <rene@FreeBSD.org>2021-01-02 14:05:27 +0000
commit28ee39466918415876c222d93310195e291bc33a (patch)
tree541ba5508e10ab40f1ed1a735107c19868f11b0e /graphics/goxel/files/patch-SConstruct
parentRemove a few expired ports: (diff)
Remove some expired ports:
2020-12-31 emulators/fceux: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 emulators/gem5: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 emulators/nonpareil: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 games/freera: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 games/glob2: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 games/marsnomercy: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 games/netpanzer: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 games/pingus: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 graphics/goxel: Uses Python 2.7 version of scons, and Python 2.7 which is EOLed upstream 2020-12-31 graphics/sk1libs: Uses Python 2.7 which is EOLed upstream 2020-12-31 graphics/uniconvertor: Uses deprecated version of python
Notes
Notes: svn path=/head/; revision=559942
Diffstat (limited to 'graphics/goxel/files/patch-SConstruct')
-rw-r--r--graphics/goxel/files/patch-SConstruct35
1 files changed, 0 insertions, 35 deletions
diff --git a/graphics/goxel/files/patch-SConstruct b/graphics/goxel/files/patch-SConstruct
deleted file mode 100644
index 3ee0c2f64df3..000000000000
--- a/graphics/goxel/files/patch-SConstruct
+++ /dev/null
@@ -1,35 +0,0 @@
---- SConstruct.orig 2018-12-22 14:00:12 UTC
-+++ SConstruct
-@@ -28,15 +28,18 @@ clang = int(ARGUMENTS.get("clang", 0))
- cycles = int(ARGUMENTS.get('cycles', 1))
- sound = False
-
--if os.environ.get('CC') == 'clang': clang = 1
-+import subprocess
-+if 'clang' in subprocess.check_output([os.environ.get('CC', 'cc'), '-v'],
-+ stderr=subprocess.STDOUT):
-+ clang = 1
-+print 'clang', clang
- if profile: debug = 0
-
--env = Environment(ENV = os.environ)
-+
-+env = Environment(ENV = os.environ, CC = os.environ.get('CC', 'cc'),
-+ CXX = os.environ.get('CXX', 'c++'))
- conf = env.Configure()
-
--if clang:
-- env.Replace(CC='clang', CXX='clang++')
--
- # Asan & Ubsan (need to come first).
- # Cycles doesn't like libasan with clang, so we only use it on
- # C code with clang.
-@@ -145,7 +148,7 @@ if cycles:
- sources += glob.glob('ext_src/cycles/src/subd/*.cpp')
-
- env.Append(CPPPATH=['ext_src/cycles/src'])
-- env.Append(CPPPATH=['ext_src/cycles/third_party/atomic'])
-+ env.Prepend(CPPPATH=['ext_src/cycles/third_party/atomic'])
- env.Append(CPPFLAGS=[
- '-DCYCLES_STD_UNORDERED_MAP',
- '-DCCL_NAMESPACE_BEGIN=namespace ccl {',