summaryrefslogtreecommitdiff
path: root/emulators/mame/files/patch-scripts_toolchain.lua
diff options
context:
space:
mode:
authorKurt Jaeger <pi@FreeBSD.org>2019-04-30 17:50:26 +0000
committerKurt Jaeger <pi@FreeBSD.org>2019-04-30 17:50:26 +0000
commit5baa1fd697f7ac3d99edb1c53758b0592697ef47 (patch)
tree3bba1acee87fcee9b3f9858f830b6cb33139935b /emulators/mame/files/patch-scripts_toolchain.lua
parent- Update to 0.165.0 (diff)
emulators/mame: upgrade 0.200 -> 0.209
- 2nd attempt, with additional patches PR: 236621 Submitted by: sirdice@gmail.com Relnotes: https://www.mamedev.org/releases/whatsnew_0209.txt https://mamedev.org/releases/whatsnew_0208.txt https://mamedev.org/releases/whatsnew_0207.txt ...
Notes
Notes: svn path=/head/; revision=500513
Diffstat (limited to 'emulators/mame/files/patch-scripts_toolchain.lua')
-rw-r--r--emulators/mame/files/patch-scripts_toolchain.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/emulators/mame/files/patch-scripts_toolchain.lua b/emulators/mame/files/patch-scripts_toolchain.lua
deleted file mode 100644
index 6324872c164d..000000000000
--- a/emulators/mame/files/patch-scripts_toolchain.lua
+++ /dev/null
@@ -1,21 +0,0 @@
---- scripts/toolchain.lua.orig 2018-02-27 15:59:06 UTC
-+++ scripts/toolchain.lua
-@@ -23,6 +23,7 @@ newoption {
- { "android-x64", "Android - x64" },
- { "asmjs", "Emscripten/asm.js" },
- { "freebsd", "FreeBSD" },
-+ { "freebsd-clang", "FreeBSD (Clang)" },
- { "linux-gcc", "Linux (GCC compiler)" },
- { "linux-clang", "Linux (Clang compiler)" },
- { "ios-arm", "iOS - ARM" },
-@@ -168,6 +169,10 @@ function toolchain(_buildDir, _subDir)
- location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-freebsd")
- end
-
-+ if "freebsd-clang" == _OPTIONS["gcc"] then
-+ location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-freebsd-clang")
-+ end
-+
- if "netbsd" == _OPTIONS["gcc"] then
- location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-netbsd")
- end