diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-12-31 11:04:51 +0100 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2019-12-31 11:04:51 +0100 |
commit | ce9383c090fff90acb3a555d0ccfe12d791fef17 (patch) | |
tree | 7b9cce156799486b94e4f3e55b03831638e73465 /gnu/packages/emulators.scm | |
parent | 91be09de61c277d0f1b26cefcefcd0a7fae2e00d (diff) | |
parent | fc4eb87dc45b169e3912c73bbf60cb8ce76b7c7c (diff) | |
download | guix-ce9383c090fff90acb3a555d0ccfe12d791fef17.tar.gz |
Merge remote-tracking branch 'master' into core-updates.
Diffstat (limited to 'gnu/packages/emulators.scm')
-rw-r--r-- | gnu/packages/emulators.scm | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/gnu/packages/emulators.scm b/gnu/packages/emulators.scm index 0ab6ee7c9a..63c1332c2f 100644 --- a/gnu/packages/emulators.scm +++ b/gnu/packages/emulators.scm @@ -1162,6 +1162,20 @@ multi-system game/emulator system.") #:configure-flags (list "--enable-release") ;for optimizations #:phases (modify-phases %standard-phases + (add-after 'unpack 'fix-build + ;; XXX: The following works around a build failure introduced when + ;; Fluidsynth was updated to version 2.1. It has been applied + ;; upstream as 68758a879e0c8ecc0d40962516d4e808aa4e15e5 and can be + ;; removed once ScummVM 2.1.1+ is out. + (lambda _ + (substitute* "audio/softsynth/fluidsynth.cpp" + (("#include <fluidsynth.h>") "") + (("#include \"common/scummsys.h\"") "#include \"config.h\"") + (("#include \"common/config-manager.h\"" line) + (string-append "#include <fluidsynth.h>\n" + "#include \"common/scummsys.h\"\n" + line))) + #t)) (replace 'configure ;; configure does not work followed by both "SHELL=..." and ;; "CONFIG_SHELL=..."; set environment variables instead @@ -1204,7 +1218,7 @@ play them on systems for which they were never designed!") (define-public mame (package (name "mame") - (version "0.216") + (version "0.217") (source (origin (method git-fetch) @@ -1214,7 +1228,7 @@ play them on systems for which they were never designed!") (file-name (git-file-name name version)) (sha256 (base32 - "1q3mrlinkg3hxry7ssl5713lclz3k243q30933flxh99fnzgajwc")) + "03h4d0d8lh6djjff3zqhjm14klc9n129yzwygdqppz0f43w97cmw")) (modules '((guix build utils))) (snippet ;; Remove bundled libraries. |