Skip to content

Commit

Permalink
openmsx - fix build issues - fixes RetroPie#2822
Browse files Browse the repository at this point in the history
 * add libasound2-dev dependency
 * increase swap
 * add check to see build is successful
  • Loading branch information
joolswills committed Aug 28, 2019
1 parent eb54e76 commit 5ba8635
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scriptmodules/emulators/openmsx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rp_module_section="opt"
rp_module_flags="!mali"

function depends_openmsx() {
local depends=(libsdl2-dev libsdl2-ttf-dev libao-dev libogg-dev libtheora-dev libxml2-dev libvorbis-dev tcl-dev)
local depends=(libsdl2-dev libsdl2-ttf-dev libao-dev libogg-dev libtheora-dev libxml2-dev libvorbis-dev tcl-dev libasound2-dev)
isPlatform "x11" && depends+=(libglew-dev)

getDepends "${depends[@]}"
Expand All @@ -30,11 +30,12 @@ function sources_openmsx() {
}

function build_openmsx() {
rpSwap on 1024
rpSwap on 2000
./configure
make clean
make
rpSwap off
md_ret_require="$md_build/derived/openmsx"
}

function install_openmsx() {
Expand Down

0 comments on commit 5ba8635

Please sign in to comment.