diff options
author | adam <adam> | 2014-05-20 19:59:09 +0000 |
---|---|---|
committer | adam <adam> | 2014-05-20 19:59:09 +0000 |
commit | 819b40ee8960626e501de05f2666012439ef57a0 (patch) | |
tree | 28677b6b6cbf75ca21564e86f354a03ea057ccff /audio/mpg123-esound | |
parent | b1e2b1f5445439d64f4ced4ef0ed2ab9fec4a6e3 (diff) | |
download | pkgsrc-819b40ee8960626e501de05f2666012439ef57a0.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-esound')
-rw-r--r-- | audio/mpg123-esound/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/audio/mpg123-esound/Makefile b/audio/mpg123-esound/Makefile index b7fc9e59501..62108720f9c 100644 --- a/audio/mpg123-esound/Makefile +++ b/audio/mpg123-esound/Makefile @@ -1,11 +1,8 @@ -# $NetBSD: Makefile,v 1.23 2012/01/13 10:54:47 obache Exp $ +# $NetBSD: Makefile,v 1.24 2014/05/20 19:59:10 adam Exp $ MPG123_MODULE= esd -PKGREVISION= 2 - -.include "${.CURDIR}/../../audio/mpg123/Makefile.common" - +.include "../../audio/mpg123/Makefile.common" USE_TOOLS+= pkg-config |