aboutsummaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authormiwi <miwi@FreeBSD.org>2011-02-11 00:36:07 +0800
committermiwi <miwi@FreeBSD.org>2011-02-11 00:36:07 +0800
commit4c010447894fc91c4b92077b9d5cd4ed545a286c (patch)
tree2bbc4db6e78e6a7f67c7a8dc26d2bc8167676644 /audio
parenta90b1c14737d435cf23a96851beb510e912dde2c (diff)
downloadfreebsd-ports-gnome-4c010447894fc91c4b92077b9d5cd4ed545a286c.tar.gz
freebsd-ports-gnome-4c010447894fc91c4b92077b9d5cd4ed545a286c.tar.zst
freebsd-ports-gnome-4c010447894fc91c4b92077b9d5cd4ed545a286c.zip
- Update to 14.3.1
PR: 154618 Submitted by: maintainer
Diffstat (limited to 'audio')
-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__