summaryrefslogtreecommitdiff
path: root/emulators/gem5/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 /emulators/gem5/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
Diffstat (limited to 'emulators/gem5/files/patch-SConstruct')
-rw-r--r--emulators/gem5/files/patch-SConstruct39
1 files changed, 0 insertions, 39 deletions
diff --git a/emulators/gem5/files/patch-SConstruct b/emulators/gem5/files/patch-SConstruct
deleted file mode 100644
index 7fe253ebda09..000000000000
--- a/emulators/gem5/files/patch-SConstruct
+++ /dev/null
@@ -1,39 +0,0 @@
---- SConstruct.orig 2015-04-21 11:32:43.000000000 -0400
-+++ SConstruct 2018-03-11 21:17:31.106873000 -0400
-@@ -534,6 +534,9 @@
- main['LTO_CCFLAGS'] = []
- main['LTO_LDFLAGS'] = []
-
-+# Add pthread
-+main.Append(LIBS=['pthread'])
-+
- # According to the readme, tcmalloc works best if the compiler doesn't
- # assume that we're using the builtin malloc and friends. These flags
- # are compiler-specific, so we need to set them after we detect which
-@@ -785,13 +788,8 @@
- swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
- main.Append(SWIGFLAGS=swig_flags)
-
--# Check for 'timeout' from GNU coreutils. If present, regressions will
--# be run with a time limit. We require version 8.13 since we rely on
--# support for the '--foreground' option.
--timeout_lines = readCommand(['timeout', '--version'],
-- exception='').splitlines()
--# Get the first line and tokenize it
--timeout_version = timeout_lines[0].split() if timeout_lines else []
-+# It expects GNU timeout, FreeBSD one (on 11.x+) is not compatible
-+timeout_version = []
- main['TIMEOUT'] = timeout_version and \
- compareVersions(timeout_version[-1], '8.13') >= 0
-
-@@ -922,8 +920,8 @@
- # version of python, see above for instructions on how to invoke
- # scons with the appropriate PATH set.
- #
-- # First we check if python2-config exists, else we use python-config
-- python_config = readCommand(['which', 'python2-config'],
-+ # First we check if python2.7-config exists, else we use python-config
-+ python_config = readCommand(['which', 'python2.7-config'],
- exception='').strip()
- if not os.path.exists(python_config):
- python_config = readCommand(['which', 'python-config'],