aboutsummaryrefslogtreecommitdiff
path: root/audio/sox
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2011-02-10 16:36:07 +0000
committerMartin Wilke <miwi@FreeBSD.org>2011-02-10 16:36:07 +0000
commit5e65e381b895fc1e4a000c0d20bfa0ee2934aa00 (patch)
tree03610ff661d5a599777eeda0eef9a24c36f64038 /audio/sox
parentf531a35afc96bc8abf31d29379ade3cc69251b7b (diff)
downloadports-5e65e381b895fc1e4a000c0d20bfa0ee2934aa00.tar.gz
ports-5e65e381b895fc1e4a000c0d20bfa0ee2934aa00.zip
Notes
Diffstat (limited to 'audio/sox')
-rw-r--r--audio/sox/Makefile3
-rw-r--r--audio/sox/distinfo4
-rw-r--r--audio/sox/files/patch-formats.c16
3 files changed, 3 insertions, 20 deletions
diff --git a/audio/sox/Makefile b/audio/sox/Makefile
index f8b3e2d90f17..880383e723f6 100644
--- a/audio/sox/Makefile
+++ b/audio/sox/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= sox
-PORTVERSION= 14.3.0
-PORTREVISION= 6
+PORTVERSION= 14.3.1
CATEGORIES= audio
MASTER_SITES= SF
diff --git a/audio/sox/distinfo b/audio/sox/distinfo
index 9cb30480c671..a42ac69c28d8 100644
--- a/audio/sox/distinfo
+++ b/audio/sox/distinfo
@@ -1,2 +1,2 @@
-SHA256 (sox-14.3.0.tar.gz) = 9abf411c949366d75c884b368284690b6c8c7d5fb5df0deaf599539b704b2397
-SIZE (sox-14.3.0.tar.gz) = 1007679
+SHA256 (sox-14.3.1.tar.gz) = c4be9ebdb1e77a3bc9f3ee1f3fd274a1fe7b162a174fcc74874b231f3f1ace54
+SIZE (sox-14.3.1.tar.gz) = 1044595
diff --git a/audio/sox/files/patch-formats.c b/audio/sox/files/patch-formats.c
deleted file mode 100644
index 38e5426e491d..000000000000
--- a/audio/sox/files/patch-formats.c
+++ /dev/null
@@ -1,16 +0,0 @@
-Generalize the "rewind on pipes" hack to work with all Torek-based stdio's
-without having to check for each one. Fix will appear in the next release.
-
-http://sourceforge.net/tracker/index.php?func=detail&aid=2847998&group_id=10706&atid=310706
-
---- src/formats.c 2009-06-14 20:14:53.000000000 -0500
-+++ src/formats.c 2009-08-31 13:16:21.440822225 -0500
-@@ -392,7 +392,7 @@
- * Works by resetting the FILE buffer pointer */
- static void UNUSED rewind_pipe(FILE * fp)
- {
--#if defined _NEWLIB_VERSION || defined __APPLE__
-+#if defined _FSTDIO /* Torek stdio (i.e. most BSD-derived libc's) */
- fp->_p -= AUTO_DETECT_SIZE;
- fp->_r += AUTO_DETECT_SIZE;
- #elif defined __GLIBC__