diff options
author | Taner Tas <taner76@gmail.com> | 2019-02-03 04:09:24 +0300 |
---|---|---|
committer | Andy Postnikov <apostnikov@gmail.com> | 2019-02-03 05:08:42 +0200 |
commit | 10589b0da75f3260970a2c60d11956caf2503554 (patch) | |
tree | 2274a97c1dc86bc46bb760e7aa1da72eace9fc9d /testing/mame | |
parent | 28af8c1909ee925a88b494c5e431291669063f57 (diff) | |
download | aports-10589b0da75f3260970a2c60d11956caf2503554.tar.bz2 aports-10589b0da75f3260970a2c60d11956caf2503554.tar.xz |
testing/mame: use default compiler for s390x
* revert -DBX_CRT_MUSL on compiler options
Diffstat (limited to 'testing/mame')
-rw-r--r-- | testing/mame/APKBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testing/mame/APKBUILD b/testing/mame/APKBUILD index 9de80253d6..03507f22c4 100644 --- a/testing/mame/APKBUILD +++ b/testing/mame/APKBUILD @@ -3,10 +3,10 @@ pkgname=mame pkgver=0.206 _pkgver=${pkgver/.} -pkgrel=0 +pkgrel=1 pkgdesc="Multi Arcade Machine Emulator with GroovyMAME/Switchres/No-nag patchset." url="https://mamedev.org" -arch="all !armhf !s390x" +arch="all" license="GPL-2.0-or-later" depends="$pkgname-common" makedepends=" @@ -85,8 +85,8 @@ build() { esac case "$CARCH" in - armhf) - # clang segfaults on armhf + armhf|s390x) + # clang segfaults on armhf,s390x true ;; *) @@ -96,7 +96,7 @@ build() { ;; esac - export CFLAGS="$CFLAGS -I/usr/include/lua5.3 -Wno-everything" + export CFLAGS="$CFLAGS -I/usr/include/lua5.3 -DBX_CRT_MUSL -Wno-everything" export CXXFLAGS="$CFLAGS" export LDFLAGS="$LDFLAGS -L/usr/lib/lua5.3" |