diff --git a/net/ezstream/Makefile b/net/ezstream/Makefile index 29b6fffbef3..875c137cf03 100644 --- a/net/ezstream/Makefile +++ b/net/ezstream/Makefile @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile,v 1.7 2007/09/16 13:07:27 mgrimm Exp $ +# $OpenBSD: Makefile,v 1.8 2008/02/20 22:03:10 merdely Exp $ COMMENT= streaming source client that uses external en-/decoders DISTNAME= ezstream-0.5.1 +PKGNAME= ${DISTNAME}p0 CATEGORIES= net multimedia HOMEPAGE= http://www.icecast.org/ezstream.php diff --git a/net/ezstream/patches/patch-src_xalloc_c b/net/ezstream/patches/patch-src_xalloc_c new file mode 100644 index 00000000000..03df6a3b040 --- /dev/null +++ b/net/ezstream/patches/patch-src_xalloc_c @@ -0,0 +1,12 @@ +$OpenBSD: patch-src_xalloc_c,v 1.1 2008/02/20 22:03:11 merdely Exp $ +--- src/xalloc.c.orig Wed Jan 23 07:59:22 2008 ++++ src/xalloc.c Wed Jan 23 07:59:40 2008 +@@ -172,7 +172,7 @@ _xalloc_error(int errnum, const char *fmt, ...) + if (errnum > 0) { + if (xalloc_initialized) + XALLOC_LOCK(strerror_mutex); +- vfprintf(debug_output, ": %s\n", strerror(errnum)); ++ fprintf(debug_output, ": %s\n", strerror(errnum)); + if (xalloc_initialized) + XALLOC_UNLOCK(strerror_mutex); + }