summaryrefslogtreecommitdiff
path: root/games/0ad/files/patch-libraries_source_spidermonkey_build.sh
diff options
context:
space:
mode:
authorGuido Falsi <madpilot@FreeBSD.org>2021-02-28 21:33:38 +0000
committerGuido Falsi <madpilot@FreeBSD.org>2021-02-28 21:33:38 +0000
commit3ce681715874a93df0ea618380d51cea42ebc429 (patch)
tree99020a416a50dd46c622c3595f610fd7ffdbdb9b /games/0ad/files/patch-libraries_source_spidermonkey_build.sh
parentClassic Tomb Raider open-source engine (diff)
- Update 0ad to Alpha 24
- Undeprecate, this version works fine with python3 - Mark BROKEN on 11.x due to errors linking against gloox on this OS version - While here move the other BROKEN messages in the appropriate Makefile stanza - Remove patches integrated upstream Many thanks to upstream developers for help and support.
Diffstat (limited to 'games/0ad/files/patch-libraries_source_spidermonkey_build.sh')
-rw-r--r--games/0ad/files/patch-libraries_source_spidermonkey_build.sh17
1 files changed, 0 insertions, 17 deletions
diff --git a/games/0ad/files/patch-libraries_source_spidermonkey_build.sh b/games/0ad/files/patch-libraries_source_spidermonkey_build.sh
deleted file mode 100644
index 661627fc0407..000000000000
--- a/games/0ad/files/patch-libraries_source_spidermonkey_build.sh
+++ /dev/null
@@ -1,17 +0,0 @@
---- libraries/source/spidermonkey/build.sh.orig 2016-10-04 15:01:34 UTC
-+++ libraries/source/spidermonkey/build.sh
-@@ -96,6 +96,14 @@ cd js/src
- rm -rf build-debug
- rm -rf build-release
-
-+cp jsnativestack.cpp jsnativestack.cpp.orig
-+sed 's/# include <pthread_np.h>/#pragma GCC visibility push(default)\
-+#include <pthread_np.h>\
-+#pragma GCC visibility pop/' jsnativestack.cpp.orig >jsnativestack.cpp
-+
-+cp configure configure.orig
-+sed -e 's/"$ac_cv_have_visibility_class_bug" = "no"; then/"$ac_cv_have_visibility_class_bug" = "no" -a "$OS_ARCH" != "FreeBSD" ; then/' -e 's/-Werror=conversion-null//' configure.orig >configure
-+
- # We want separate debug/release versions of the library, so we have to change
- # the LIBRARY_NAME for each build.
- # (We use perl instead of sed so that it works with MozillaBuild on Windows,