maintenance update to 1.11.0

This commit is contained in:
naddy 2010-03-22 20:13:39 +00:00
parent fb2f8dcf3c
commit 099270c935
4 changed files with 25 additions and 12 deletions

View File

@ -1,9 +1,9 @@
# $OpenBSD: Makefile,v 1.45 2009/12/07 17:05:23 naddy Exp $
# $OpenBSD: Makefile,v 1.46 2010/03/22 20:13:39 naddy Exp $
COMMENT= fast console MPEG audio player and decoder library
DISTNAME= mpg123-1.10.0
SHARED_LIBS= mpg123 2.1 # .22.1
DISTNAME= mpg123-1.11.0
SHARED_LIBS= mpg123 2.1 # .23.0
CATEGORIES= audio
HOMEPAGE= http://www.mpg123.de/

View File

@ -1,5 +1,5 @@
MD5 (mpg123-1.10.0.tar.bz2) = AAXJqJw4FITi0v9FCz3+Xg==
RMD160 (mpg123-1.10.0.tar.bz2) = /+BqyaTllUNoA+9PYhI6aSeNQRk=
SHA1 (mpg123-1.10.0.tar.bz2) = agTYOjKu8TN80Y2yb8CFUjM7+hM=
SHA256 (mpg123-1.10.0.tar.bz2) = vKv0VJpO1ldwqA/4CuVNRxsGTiviLxVgdkwAfag0vFM=
SIZE (mpg123-1.10.0.tar.bz2) = 745415
MD5 (mpg123-1.11.0.tar.bz2) = j8R/7Jm/XUbOs8fPTbjRNw==
RMD160 (mpg123-1.11.0.tar.bz2) = M868tceMJuktbKYRVvWWyEUzs+M=
SHA1 (mpg123-1.11.0.tar.bz2) = pbpPZD0IgK0bApyk4uuchY28KQw=
SHA256 (mpg123-1.11.0.tar.bz2) = QaMsJiRd8Y2fprQK5rDlFuqq3TYvITLpfNtBD8ud5XU=
SIZE (mpg123-1.11.0.tar.bz2) = 689183

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-configure,v 1.3 2009/12/07 17:05:23 naddy Exp $
--- configure.orig Sat Dec 5 21:30:40 2009
+++ configure Mon Dec 7 03:02:04 2009
@@ -12690,10 +12690,10 @@ fi
$OpenBSD: patch-configure,v 1.4 2010/03/22 20:13:39 naddy Exp $
--- configure.orig Sun Mar 21 22:31:00 2010
+++ configure Mon Mar 22 19:00:13 2010
@@ -12691,10 +12691,10 @@ fi
# opt-in for IEEE754 floating point action
# We want to make sure not to apply hacks relying on IEEE754 storage format on platforms where we did not make sure that this actually is valid.
# It _should_ be fine for about all computers still out there, but we play safe.

View File

@ -0,0 +1,13 @@
$OpenBSD: patch-src_resolver_c,v 1.1 2010/03/22 20:13:39 naddy Exp $
--- src/resolver.c.orig Mon Mar 22 19:27:42 2010
+++ src/resolver.c Mon Mar 22 19:29:00 2010
@@ -277,7 +277,9 @@ int open_connection(mpg123_string *host, mpg123_string
memset(&hints, 0, sizeof(struct addrinfo));
hints.ai_family = AF_UNSPEC; /* We accept both IPv4 and IPv6 ... and perhaps IPv8;-) */
hints.ai_socktype = SOCK_STREAM;
+#ifdef AI_ADDRCONFIG
hints.ai_flags = AI_ADDRCONFIG; /* Only ask for addresses that we have configured inerfaces for. */
+#endif
addrcount = getaddrinfo(host->p, port->p, &hints, &addrlist);