1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Update to 14.3.1

PR:		154618
Submitted by:	maintainer
This commit is contained in:
Martin Wilke 2011-02-10 16:36:07 +00:00
parent f531a35afc
commit 5e65e381b8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=268883
3 changed files with 3 additions and 20 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= sox
PORTVERSION= 14.3.0
PORTREVISION= 6
PORTVERSION= 14.3.1
CATEGORIES= audio
MASTER_SITES= SF

View File

@ -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

View File

@ -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__