summaryrefslogtreecommitdiff
path: root/audio/flac/patches
diff options
context:
space:
mode:
authorwiz <wiz>2013-06-12 20:31:51 +0000
committerwiz <wiz>2013-06-12 20:31:51 +0000
commit6e5b742060003cae062b61ab3d2097087ad34fe2 (patch)
treeaa3acf548a9d7bf587cea083b707a78bfff164ea /audio/flac/patches
parentf93697042878ba36a3a3c060e900b24617967767 (diff)
downloadpkgsrc-6e5b742060003cae062b61ab3d2097087ad34fe2.tar.gz
Update to 1.3.0:
FLAC 1.3.0 (26-May-2013) General: Move development to Xiph.org git repository. The --sector-align option of flac has been deprecated and may not exist in future versions. shntool provides similar functionality. Support for the RF64 and Wave64 formats in flac (see below). Better handling of cuesheets with non-CD-DA sample rates. The --ignore-chunk-sizes option has been added to the flac command line tool. FLAC format: (none) Ogg FLAC format: (none) flac: Added support for encoding from and decoding to the RF64 format, and a new corresponding option --force-rf64-format. (SF #1762502). --keep-foreign-metadata is also supported. Added support for encoding from and decoding to the Sony Wave64 format, and a new corresponding option --force-wave64-format. (SF #1769582). --keep-foreign-metadata is also supported. Added new options --preserve-modtime and --no-preserve-modtime to specify whether or not output files should copy the timestamp and permissions from their input files. The default is --preserve-modtime as in previous versions. (SF #1805428). Allow MM:SS:FF and MM:SS.SS time formats in non-CD-DA cuesheets. (SF #1947353, SF #2182432) The --sector-align option of flac has been deprecated and may not exist in future versions. shntool provides similar functionality. (SF #1805946) Improved error message when user attempts to decode a non-FLAC file (SF #2222789). Fix bug where flac was disallowing use of --replay-gain when encoding from stdin (SF #1840124). Fix bug with fractional seconds on some locales (SF #1815517, SF #1858012). Read and write appropriate channel masks for 6.1 and 7.1 surround input WAV files. Documentation was also updated. Correct Wave64 GUIDs. Support 56kHz to 192kHz gain analysis (patch from Earl Chew) Add ability to handle utf8 filenames on Windows (large set of patches from Janne Hyvärinen) metaflac: Allow MM:SS:FF and MM:SS.SS time formats in non-CD-DA cuesheets. (SF #1947353, SF #2182432) plugins: Minor updates for XMMS plugin. Winamp2 plugin was dropped because Nullsoft has provided native FLAC support since 2006. build system: Fixes for autotools (including SF #1859664). Fixes for MinGW (including SF #2000973, SF #2209829). Fixes for gcc (including SF #1834168, SF #2002481). Fixes for Sun Studio/Forte (SF #1701960). Fixes for windows builds (including SF #1676822, SF #1756624, SF #1809863, SF #1911149). Fixes for FreeBSD and OpenBSD. Compile with GNU gcc _FORTIFY_SOURCE=2 and stack protection where those features are detected. Enable a bunch of GCC compiler warnings and fix code that generates warnings. documentation: Document --ignore-chunk-sizes and --apply-replaygain-which-is-not-lossless option for flac. libraries: libFLAC encoder was defaulting to level 0 compression instead of 5 (SF #1816825). Fix bug in bitreader handling of read callback returning a short count (SF #2490454). Improve decoder's ability to distinguish between a FLAC sync code and an MPEG one (SF #2491433). Interface changes: libFLAC: Added FLAC__format_blocksize_is_subset() libFLAC++: Add a number of convienience methods.
Diffstat (limited to 'audio/flac/patches')
-rw-r--r--audio/flac/patches/patch-ad26
-rw-r--r--audio/flac/patches/patch-ag16
-rw-r--r--audio/flac/patches/patch-ah15
-rw-r--r--audio/flac/patches/patch-ay15
-rw-r--r--audio/flac/patches/patch-az14
5 files changed, 0 insertions, 86 deletions
diff --git a/audio/flac/patches/patch-ad b/audio/flac/patches/patch-ad
deleted file mode 100644
index 3182f366c9d..00000000000
--- a/audio/flac/patches/patch-ad
+++ /dev/null
@@ -1,26 +0,0 @@
-$NetBSD: patch-ad,v 1.5 2007/01/07 12:25:05 wiz Exp $
-
---- include/FLAC/ordinals.h.orig 2006-11-20 07:05:18.000000000 +0000
-+++ include/FLAC/ordinals.h
-@@ -32,7 +32,7 @@
- #ifndef FLAC__ORDINALS_H
- #define FLAC__ORDINALS_H
-
--#if !(defined(_MSC_VER) || defined(__BORLANDC__) || defined(__EMX__))
-+#if !(defined(_MSC_VER) || defined(__BORLANDC__) || defined(__EMX__) || defined(__INTERIX))
- #include <inttypes.h>
- #endif
-
-@@ -59,8 +59,12 @@ typedef int32_t FLAC__int32;
- typedef int64_t FLAC__int64;
- typedef uint16_t FLAC__uint16;
- typedef uint32_t FLAC__uint32;
-+#if defined __INTERIX
-+typedef u_int64_t FLAC__uint64;
-+#else
- typedef uint64_t FLAC__uint64;
- #endif
-+#endif
-
- typedef int FLAC__bool;
-
diff --git a/audio/flac/patches/patch-ag b/audio/flac/patches/patch-ag
deleted file mode 100644
index 6043858362f..00000000000
--- a/audio/flac/patches/patch-ag
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ag,v 1.4 2007/11/21 12:47:05 drochner Exp $
-
---- src/libFLAC/Makefile.am.orig 2007-09-14 23:06:17.000000000 +0200
-+++ src/libFLAC/Makefile.am
-@@ -94,9 +94,10 @@ extra_ogg_sources = \
- ogg_encoder_aspect.c \
- ogg_helper.c \
- ogg_mapping.c
-+extra_ogg_libs = -logg
- endif
- # see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention
--libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS)
-+libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS) $(extra_ogg_libs)
- libFLAC_la_SOURCES = \
- bitmath.c \
- bitreader.c \
diff --git a/audio/flac/patches/patch-ah b/audio/flac/patches/patch-ah
deleted file mode 100644
index 1e8d40f104f..00000000000
--- a/audio/flac/patches/patch-ah
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ah,v 1.4 2007/11/21 12:47:05 drochner Exp $
-
---- src/libFLAC/Makefile.in.orig 2007-09-16 22:05:12.000000000 +0200
-+++ src/libFLAC/Makefile.in
-@@ -278,8 +278,9 @@ EXTRA_DIST = \
- @FLaC__HAS_OGG_TRUE@ ogg_helper.c \
- @FLaC__HAS_OGG_TRUE@ ogg_mapping.c
-
-+@FLaC__HAS_OGG_TRUE@extra_ogg_libs = -logg
- # see 'http://www.gnu.org/software/libtool/manual.html#Libtool-versioning' for numbering convention
--libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS)
-+libFLAC_la_LDFLAGS = -version-info 10:0:2 -lm $(LOCAL_EXTRA_LDFLAGS) $(extra_ogg_libs)
- libFLAC_la_SOURCES = \
- bitmath.c \
- bitreader.c \
diff --git a/audio/flac/patches/patch-ay b/audio/flac/patches/patch-ay
deleted file mode 100644
index e329fbdb62c..00000000000
--- a/audio/flac/patches/patch-ay
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ay,v 1.1 2008/12/29 05:36:40 obache Exp $
-
---- include/share/alloc.h.orig 2007-09-12 05:32:21.000000000 +0000
-+++ include/share/alloc.h
-@@ -29,8 +29,10 @@
-
- #include <limits.h> /* for SIZE_MAX */
- #if !defined _MSC_VER && !defined __MINGW32__ && !defined __EMX__
-+#ifdef HAVE_STDINT_H
- #include <stdint.h> /* for SIZE_MAX in case limits.h didn't get it */
- #endif
-+#endif
- #include <stdlib.h> /* for size_t, malloc(), etc */
-
- #ifndef SIZE_MAX
diff --git a/audio/flac/patches/patch-az b/audio/flac/patches/patch-az
deleted file mode 100644
index 52801d61a71..00000000000
--- a/audio/flac/patches/patch-az
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-az,v 1.1 2009/06/05 20:47:30 rillig Exp $
-
-memcpy() needs this.
-
---- examples/cpp/encode/file/main.cpp.orig 2007-09-13 17:58:03.000000000 +0200
-+++ examples/cpp/encode/file/main.cpp 2009-06-05 22:39:37.000000000 +0200
-@@ -30,6 +30,7 @@
-
- #include <stdio.h>
- #include <stdlib.h>
-+#include <string.h>
- #include "FLAC++/metadata.h"
- #include "FLAC++/encoder.h"
-