Skip to content

Commit 8258090

Browse files
authored
Merge pull request #3838 from rahim/amiberry-5.6.6
Amiberry 5.6.6
2 parents b87442e + 259bfd7 commit 8258090

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

scriptmodules/emulators/amiberry.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rp_module_id="amiberry"
1313
rp_module_desc="Amiga emulator with JIT support (forked from uae4arm)"
1414
rp_module_help="ROM Extension: .adf .chd .ipf .lha .zip\n\nCopy your Amiga games to $romdir/amiga\n\nCopy the required BIOS files\nkick13.rom\nkick20.rom\nkick31.rom\nto $biosdir/amiga"
1515
rp_module_licence="GPL3 https://raw.githubusercontent.com/BlitterStudio/amiberry/master/LICENSE"
16-
rp_module_repo="git https://github.com/BlitterStudio/amiberry v5.6.4"
16+
rp_module_repo="git https://github.com/BlitterStudio/amiberry v5.6.6"
1717
rp_module_section="opt"
1818
rp_module_flags="!all arm rpi3 rpi4 rpi5"
1919

@@ -47,7 +47,7 @@ function _get_platform_amiberry() {
4747
}
4848

4949
function depends_amiberry() {
50-
local depends=(autoconf libpng-dev libmpeg2-4-dev zlib1g-dev libmpg123-dev libflac-dev libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libserialport-dev wget)
50+
local depends=(cmake autoconf libpng-dev libmpeg2-4-dev zlib1g-dev libmpg123-dev libflac-dev libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev libserialport-dev wget libportmidi-dev)
5151

5252
isPlatform "dispmanx" && depends+=(libraspberrypi-dev)
5353
isPlatform "vero4k" && depends+=(vero3-userland-dev-osmc)
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
diff --git a/Makefile b/Makefile
2-
index 93ef345..75f5bd4 100644
3-
--- a/Makefile
4-
+++ b/Makefile
5-
@@ -21,10 +21,10 @@ SDL_CONFIG ?= sdl2-config
1+
diff --git i/Makefile w/Makefile
2+
index cff286e2..40e3c05f 100644
3+
--- i/Makefile
4+
+++ w/Makefile
5+
@@ -43,10 +43,10 @@ SDL_CONFIG ?= sdl2-config
66
export SDL_CFLAGS := $(shell $(SDL_CONFIG) --cflags)
77
export SDL_LDFLAGS := $(shell $(SDL_CONFIG) --libs)
8-
9-
-CPPFLAGS = -MD -MT $@ -MF $(@:%.o=%.d) $(SDL_CFLAGS) -Iexternal/libguisan/include -Isrc -Isrc/osdep -Isrc/threaddep -Isrc/include -Isrc/archivers -Isrc/floppybridge -DAMIBERRY -D_FILE_OFFSET_BITS=64
10-
-CFLAGS=-pipe -Wno-shift-overflow -Wno-narrowing
11-
+CPPFLAGS += -MD -MT $@ -MF $(@:%.o=%.d) $(SDL_CFLAGS) -Iexternal/libguisan/include -Isrc -Isrc/osdep -Isrc/threaddep -Isrc/include -Isrc/archivers -Isrc/floppybridge -DAMIBERRY -D_FILE_OFFSET_BITS=64
12-
+CFLAGS +=-pipe -Wno-shift-overflow -Wno-narrowing
8+
9+
-CPPFLAGS = -MD -MT $@ -MF $(@:%.o=%.d) $(SDL_CFLAGS) -Iexternal/libguisan/include -Isrc -Isrc/osdep -Isrc/threaddep -Isrc/include -Isrc/archivers -Isrc/floppybridge -Iexternal/mt32emu/src -D_FILE_OFFSET_BITS=64
10+
-CFLAGS=-pipe -Wno-shift-overflow -Wno-narrowing -fno-pie
11+
+CPPFLAGS += -MD -MT $@ -MF $(@:%.o=%.d) $(SDL_CFLAGS) -Iexternal/libguisan/include -Isrc -Isrc/osdep -Isrc/threaddep -Isrc/include -Isrc/archivers -Isrc/floppybridge -Iexternal/mt32emu/src -D_FILE_OFFSET_BITS=64
12+
+CFLAGS +=-pipe -Wno-shift-overflow -Wno-narrowing -fno-pie
1313
USE_LD ?= gold
14-
-LDFLAGS = $(SDL_LDFLAGS) -lSDL2_image -lSDL2_ttf -lserialport -lguisan -Lexternal/libguisan/lib
15-
+LDFLAGS += $(SDL_LDFLAGS) -lSDL2_image -lSDL2_ttf -lserialport -lguisan -Lexternal/libguisan/lib
14+
-LDFLAGS = $(SDL_LDFLAGS) -lSDL2_image -lSDL2_ttf -lserialport -lportmidi -lguisan -Lexternal/libguisan/lib -lmt32emu -Lexternal/mt32emu
15+
+LDFLAGS += $(SDL_LDFLAGS) -lSDL2_image -lSDL2_ttf -lserialport -lportmidi -lguisan -Lexternal/libguisan/lib -lmt32emu -Lexternal/mt32emu
1616
ifneq ($(strip $(USE_LD)),)
17-
LDFLAGS += -fuse-ld=$(USE_LD)
17+
LDFLAGS += -fuse-ld=$(USE_LD)
1818
endif

0 commit comments

Comments
 (0)