diff options
author | adam <adam@pkgsrc.org> | 2014-05-20 19:59:09 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2014-05-20 19:59:09 +0000 |
commit | 883bd2a47f75b1fc6d4c32ae9bb3ec6e41b635f8 (patch) | |
tree | 2f3f8b5f0cf3a14346229a2e98c0c70aedc2030f /audio/mpg123-oss | |
parent | 2941e564ada1635faa7b901d24752c3408199c01 (diff) | |
download | pkgsrc-883bd2a47f75b1fc6d4c32ae9bb3ec6e41b635f8.tar.gz |
Changes 1.19.0:
- Support float and 32/24 bit integer output also with fixed-point decoders (conversion from 16 bit precision).
- A-Law output encoding is actually implemented now (Michael introduced the encoding back in the old days without ever implementing theconversion table, apparently).
- Added --with-cpu=arm_fpu as decoder choice for runtime switch between plain fpu code and NEON.
- Fix ARM builds to work properly on debian systems without special CFLAGS (NEON decoder, specifically).
- Make scripts/benchmark-cpu.pl check the return value instead of delivering crazy timings for crashed mpg123.
- Trigger track initialization in mpg123_info() to avoid use of uninitialized variables (watch out for MPG123_NEED_MORE return value!).
- Fix integer code to 32 bit numbers where it would waste 64 bit on modern systems.
- Add non-executable stack marking also to ARM assembly.
Diffstat (limited to 'audio/mpg123-oss')
-rw-r--r-- | audio/mpg123-oss/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/audio/mpg123-oss/Makefile b/audio/mpg123-oss/Makefile index bba4e4a5316..a20d4efc468 100644 --- a/audio/mpg123-oss/Makefile +++ b/audio/mpg123-oss/Makefile @@ -1,14 +1,12 @@ -# $NetBSD: Makefile,v 1.3 2011/10/17 19:45:56 shattered Exp $ -# +# $NetBSD: Makefile,v 1.4 2014/05/20 19:59:10 adam Exp $ MPG123_MODULE= oss -PKGREVISION= 1 # this is builtin with ../mpg123 on all other architectures ONLY_FOR_PLATFORM+= NetBSD-*-* FreeBSD-*-* OpenBSD-*-* SunOS-*-* ONLY_FOR_PLATFORM+= DragonFly-*-* -.include "${.CURDIR}/../../audio/mpg123/Makefile.common" +.include "../../audio/mpg123/Makefile.common" .include "../../mk/oss.buildlink3.mk" LIBS+= ${LIBOSSAUDIO} @@ -16,5 +14,4 @@ CPPFLAGS+= -DDEVOSSAUDIO="\"${DEVOSSAUDIO}\"" CPPFLAGS+= -DDEVOSSSOUND="\"${DEVOSSSOUND}\"" .include "../../audio/mpg123/buildlink3.mk" - .include "../../mk/bsd.pkg.mk" |