Skip to content
Snippets Groups Projects
Verified Commit ceb59cd4 authored by Anna Wilcox's avatar Anna Wilcox :fox:
Browse files

user/dosbox: unblock on pmmx

parent 48fc3e1d
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,12 @@ source="https://github.com/joncampbell123/dosbox-x/archive/dosbox-x-wip-20180513
builddir="$srcdir/dosbox-x-dosbox-x-wip-20180513-1316"
build() {
_extra_conf=""
case $CTARGET_ARCH in
pmmx) _extra_conf="--disable-dynamic-x86";;
esac
./autogen.sh
./configure \
--build=$CBUILD \
......@@ -28,7 +34,8 @@ build() {
--prefix=/usr \
--enable-debug \
--enable-core-inline \
--enable-sdl2
--enable-sdl2 \
$_extra_conf
make
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment