summaryrefslogtreecommitdiff
path: root/audio/flac/Makefile
diff options
context:
space:
mode:
authoradam <adam>2017-01-01 11:52:36 +0000
committeradam <adam>2017-01-01 11:52:36 +0000
commit8f97a8ff3f5d21be173e32ff554f42d8b2ef450d (patch)
treef6bda0bc4b6e71463709fbb7656937350f78890b /audio/flac/Makefile
parent5306bd1b6f32c0385ca47e9b8af38286eabac429 (diff)
downloadpkgsrc-8f97a8ff3f5d21be173e32ff554f42d8b2ef450d.tar.gz
FLAC 1.3.2:
General: * Fix undefined behaviour using GCC/Clang UBSAN (erikd). * General hardening via fuzz testing with AFL (erikd and others). * General code improvements (lvqcl, erikd and others). * Add FLAC in MP4 specification docs (Ralph Giles). * MSVS build cleanups (lvqcl). * Fix some cppcheck warnings (erikd). * Assume all currently used OSes support SSE2. flac: * Fix potential infinite loop on flac-to-flac conversion (erikd). * Add WAVEFORMATEXTENSIBLE to WAV (as needed) when decoding (lvqcl). * Only write vorbis-comments if they are non-empty. * Error out if decoding RAW with bits != (8|16|24). metaflac: * Add --scan-replay-gain option. build system: * Fixes for MSVC and Makefile.lite build systems. libraries: * CPU detection cleanup and fixes (Julian Calaby, erikd and lvqcl). * Fix two stream decoder bugs (Max Kellermann). * Fix a NULL dereference bug (on a malformed file). * Changed the LPC order guess for a slight compression improvement, particularly for classical music (Martijn van Beurden). * Improved encoding speed on older Intel CPUs. * Fixed a seeking bug when decoding certain files (Miroslav Lichvar). * Put an upper bound (32768) on the number of seek points. * Fix potential memory leaks. * Support 64bit brword/bwword allowing FLAC__BYTES_PER_WORD to be set to 8 (disabled by default). * Fix an out-of-bounds heap read. * Win32: Only use large buffers when writing to disk.
Diffstat (limited to 'audio/flac/Makefile')
-rw-r--r--audio/flac/Makefile12
1 files changed, 2 insertions, 10 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile
index cd51f73884b..f1cfd74d401 100644
--- a/audio/flac/Makefile
+++ b/audio/flac/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.50 2014/11/29 20:42:12 adam Exp $
+# $NetBSD: Makefile,v 1.51 2017/01/01 11:52:36 adam Exp $
-DISTNAME= flac-1.3.1
+DISTNAME= flac-1.3.2
CATEGORIES= audio archivers
MASTER_SITES= http://downloads.xiph.org/releases/flac/
EXTRACT_SUFX= .tar.xz
@@ -40,13 +40,6 @@ CONFIGURE_ARGS+= --disable-asm-optimizations
.include "../../mk/compiler.mk"
-# Version 1.1.2 of flac doesn't seem to build correctly with -O3 using
-# the MIPSpro compiler.
-# XXX: retry for 1.1.3
-.if !empty(PKGSRC_COMPILER:Mmipspro)
-BUILDLINK_TRANSFORM+= rm:-O3
-.endif
-
# SunPro does not support __inline
.if !empty(PKGSRC_COMPILER:Msunpro)
CFLAGS+= -D__inline=inline
@@ -58,5 +51,4 @@ BUILDLINK_TRANSFORM+= rm:-fgnu89-inline
.endif
.include "../../multimedia/libogg/buildlink3.mk"
-
.include "../../mk/bsd.pkg.mk"