diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-16 18:00:36 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-16 18:00:36 +0200 |
commit | 7a464646964980beb100d22836ad36c02c695744 (patch) | |
tree | 3cc4aa0e3ff1a90e5a6d10b6067694a127352df8 /package/libmad/Makefile | |
parent | 94f93c55a89f4d0b686a97f20dae65afe37823ce (diff) | |
parent | 29fcf823c3a97b1bb7074b0ca685547582216e0c (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/libmad/Makefile')
-rw-r--r-- | package/libmad/Makefile | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/package/libmad/Makefile b/package/libmad/Makefile index 822ecb9b5..eed9882bc 100644 --- a/package/libmad/Makefile +++ b/package/libmad/Makefile @@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk PKG_NAME:= libmad PKG_VERSION:= 0.15.1b -PKG_RELEASE:= 3 +PKG_RELEASE:= 4 PKG_MD5SUM:= 1be543bc30c56fb6bea1d7bf6a64e66c PKG_DESCR:= An high-quality MPEG audio decoding library PKG_SECTION:= libs @@ -28,10 +28,18 @@ endif ifeq (${ARCH},arm) FPM:=arm endif -# MIPS optimization is broken for gcc 4.4 (removed h constraint) -#ifeq (${ARCH},mips) -#FPM:=mips -#endif +ifeq (${ARCH},mips) +FPM:=mips +endif +ifeq (${ARCH},ppc) +FPM:=ppc +endif +ifeq (${ARCH},sparc) +FPM:=sparc +endif +ifeq (${ARCH},x86_64) +FPM:=64bit +endif CONFIGURE_ARGS+= --enable-fpm=${FPM} \ --disable-debugging \ |