summaryrefslogtreecommitdiff
path: root/audio/mpg123
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2005-10-03 15:17:14 +0000
committerjoerg <joerg@pkgsrc.org>2005-10-03 15:17:14 +0000
commit5e00c79bb0af0a80aadb06b08d64a8ba64fe22a1 (patch)
treeee49789bd04828ab4084c2939f2eb074d1e966dc /audio/mpg123
parent8919a51b2e0da6ecfc799460b91ea997e44c147b (diff)
downloadpkgsrc-5e00c79bb0af0a80aadb06b08d64a8ba64fe22a1.tar.gz
Correct usage of errno and ctype macros. The former is wrong when thread
linking is active, the latter can result in segfaults. Bump revisions of mpg123, mpg123-esound and mpg123-nas for the ctype bugfix.
Diffstat (limited to 'audio/mpg123')
-rw-r--r--audio/mpg123/Makefile4
-rw-r--r--audio/mpg123/distinfo6
-rw-r--r--audio/mpg123/patches/patch-aq40
-rw-r--r--audio/mpg123/patches/patch-av13
-rw-r--r--audio/mpg123/patches/patch-aw13
5 files changed, 63 insertions, 13 deletions
diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile
index 7c37e6bbfcf..362b90b6c89 100644
--- a/audio/mpg123/Makefile
+++ b/audio/mpg123/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.39 2005/01/12 14:17:44 wiz Exp $
+# $NetBSD: Makefile,v 1.40 2005/10/03 15:17:14 joerg Exp $
PKGNAME= mpg123-${MPG123_VERSION}
-PKGREVISION= 7
+PKGREVISION= 8
COMMENT= Command-line player for mpeg layer 1, 2 and 3 audio
CONFLICTS+= mpg123-nas-[0-9]*
diff --git a/audio/mpg123/distinfo b/audio/mpg123/distinfo
index c77896db955..6f21323fd02 100644
--- a/audio/mpg123/distinfo
+++ b/audio/mpg123/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.23 2005/03/28 19:52:21 schwarz Exp $
+$NetBSD: distinfo,v 1.24 2005/10/03 15:17:14 joerg Exp $
SHA1 (mpg123/mpg123-0.59r.tar.gz) = c32fe242f4506d218bd19a51a4034da9fdc79493
RMD160 (mpg123/mpg123-0.59r.tar.gz) = 17d47ca04fdcac5e2d71f95ccbd23b61b5ed8b3c
@@ -22,8 +22,10 @@ SHA1 (patch-am) = 661c1f95f65145f4e08706eb3f6fe975118a2822
SHA1 (patch-an) = 08917e1825adcfd870bb2c61ae865339da7c45ef
SHA1 (patch-ao) = 40961a43cc3dbebf71deee1c240907896d297304
SHA1 (patch-ap) = b35e7f6739a8b4979412793c7b3f2f7f5a9f15a7
-SHA1 (patch-aq) = a993d815b6657b9a2241b2e3f0ba30d6c2861230
+SHA1 (patch-aq) = 7eb736b995bf35b7ad029ea4d96bdfbaf669e689
SHA1 (patch-ar) = e81771bf72da97d898f9320fb6c529e5a1151050
SHA1 (patch-as) = 8765b22c556cdc217f6270f3a5e70b40b36b9229
SHA1 (patch-at) = 9a64a62f7d1d115e3d36dbb0f08762d4b0eb1e2b
SHA1 (patch-au) = 02c480cbb6ff8ab904be93eaf319b43f4f02d588
+SHA1 (patch-av) = 9c25c4a82042ca862409284fb2616a613485ff76
+SHA1 (patch-aw) = ba937829caf7f3ca042dca87f5b3f83a0cf2611a
diff --git a/audio/mpg123/patches/patch-aq b/audio/mpg123/patches/patch-aq
index b5b898079fc..08e50c199fb 100644
--- a/audio/mpg123/patches/patch-aq
+++ b/audio/mpg123/patches/patch-aq
@@ -1,8 +1,21 @@
-$NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
+$NetBSD: patch-aq,v 1.3 2005/10/03 15:17:14 joerg Exp $
---- httpget.c.orig 2004-11-07 09:47:28.000000000 +0100
-+++ httpget.c 2004-11-07 09:49:34.000000000 +0100
-@@ -55,11 +55,10 @@
+--- httpget.c.orig 2005-10-03 17:03:06.000000000 +0200
++++ httpget.c 2005-10-03 17:03:06.000000000 +0200
+@@ -18,11 +18,9 @@
+ #include <sys/socket.h>
+ #include <netinet/in.h>
+ #include <arpa/inet.h>
+-#include <sys/errno.h>
++#include <errno.h>
+ #include <ctype.h>
+
+-extern int errno;
+-
+ #include "mpg123.h"
+
+ #ifndef INADDR_NONE
+@@ -55,11 +53,10 @@
#endif
int pos = 0;
@@ -15,7 +28,7 @@ $NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
break;
}
}
-@@ -78,6 +77,7 @@
+@@ -78,6 +75,7 @@
}
#endif
@@ -23,7 +36,7 @@ $NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
}
void encode64 (char *source,char *destination)
-@@ -111,7 +111,7 @@
+@@ -111,7 +109,7 @@
}
/* VERY simple auth-from-URL grabber */
@@ -32,7 +45,7 @@ $NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
{
char *pos;
-@@ -126,9 +126,13 @@
+@@ -126,9 +124,13 @@
if( url[i] == '/' )
return 0;
}
@@ -47,7 +60,16 @@ $NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
return 1;
}
return 0;
-@@ -265,7 +269,10 @@
+@@ -199,7 +201,7 @@
+ strncpy(p0, portptr, stringlength);
+ *(p0 + stringlength) = '\0';
+
+- for (p = p0; *p && isdigit(*p); p++)
++ for (p = p0; *p && isdigit((unsigned char)*p); p++)
+ ;
+ *p = '\0';
+ *port = (char *)p0;
+@@ -265,7 +267,10 @@
strncpy (purl, url, 1023);
purl[1023] = '\0';
@@ -59,7 +81,7 @@ $NetBSD: patch-aq,v 1.2 2004/11/07 08:55:04 tron Exp $
do {
strcpy (request, "GET ");
-@@ -399,6 +406,7 @@
+@@ -399,6 +404,7 @@
fprintf (stderr, "Too many HTTP relocations.\n");
exit (1);
}
diff --git a/audio/mpg123/patches/patch-av b/audio/mpg123/patches/patch-av
new file mode 100644
index 00000000000..5a92c4573cc
--- /dev/null
+++ b/audio/mpg123/patches/patch-av
@@ -0,0 +1,13 @@
+$NetBSD: patch-av,v 1.1 2005/10/03 15:17:14 joerg Exp $
+
+--- xfermem.c.orig 2005-07-23 23:42:59.000000000 +0000
++++ xfermem.c
+@@ -32,8 +32,6 @@
+ #include <sys/shm.h>
+ #endif
+
+-extern int errno;
+-
+ #if defined (USE_MMAP) && defined(MAP_ANONYMOUS) && !defined(MAP_ANON)
+ #define MAP_ANON MAP_ANONYMOUS
+ #endif
diff --git a/audio/mpg123/patches/patch-aw b/audio/mpg123/patches/patch-aw
new file mode 100644
index 00000000000..d22aebe6368
--- /dev/null
+++ b/audio/mpg123/patches/patch-aw
@@ -0,0 +1,13 @@
+$NetBSD: patch-aw,v 1.1 2005/10/03 15:17:14 joerg Exp $
+
+--- term.c.orig 2005-10-03 15:20:10.000000000 +0200
++++ term.c
+@@ -90,7 +90,7 @@ static long term_handle_input(struct fra
+ while(n > 0) {
+ fd_set r;
+ struct timeval t;
+- char val;
++ unsigned char val;
+
+ t.tv_sec=0;
+ t.tv_usec=(do_delay) ? 1000 : 0;