mpg123-1.30.2

This commit is contained in:
Ozkan Sezer
2022-08-05 08:45:24 +03:00
parent 586c237857
commit b26727f0be
5 changed files with 21 additions and 16 deletions

5
NEWS
View File

@@ -1,3 +1,8 @@
1.30.2
------
- Only use EWOULDBLOCK if the macro is defined (FreeBSD misses it for
_POSIX_SOURCE, bug 339).
1.30.1
------
- mpg123:

20
configure vendored
View File

@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for mpg123 1.30.1.
# Generated by GNU Autoconf 2.69 for mpg123 1.30.2.
#
# Report bugs to <maintainer@mpg123.org>.
#
@@ -590,8 +590,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='mpg123'
PACKAGE_TARNAME='mpg123'
PACKAGE_VERSION='1.30.1'
PACKAGE_STRING='mpg123 1.30.1'
PACKAGE_VERSION='1.30.2'
PACKAGE_STRING='mpg123 1.30.2'
PACKAGE_BUGREPORT='maintainer@mpg123.org'
PACKAGE_URL=''
@@ -1683,7 +1683,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures mpg123 1.30.1 to adapt to many kinds of systems.
\`configure' configures mpg123 1.30.2 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1754,7 +1754,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of mpg123 1.30.1:";;
short | recursive ) echo "Configuration of mpg123 1.30.2:";;
esac
cat <<\_ACEOF
@@ -1988,7 +1988,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
mpg123 configure 1.30.1
mpg123 configure 1.30.2
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2594,7 +2594,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by mpg123 $as_me 1.30.1, which was
It was created by mpg123 $as_me 1.30.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@@ -3553,7 +3553,7 @@ fi
# Define the identity of the package.
PACKAGE='mpg123'
VERSION='1.30.1'
VERSION='1.30.2'
cat >>confdefs.h <<_ACEOF
@@ -20656,7 +20656,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by mpg123 $as_me 1.30.1, which was
This file was extended by mpg123 $as_me 1.30.2, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -20722,7 +20722,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
mpg123 config.status 1.30.1
mpg123 config.status 1.30.2
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View File

@@ -9,7 +9,7 @@ dnl 2.69 at least.
AC_PREREQ([2.69])
dnl ############# Initialisation
AC_INIT([mpg123], [1.30.1], [maintainer@mpg123.org])
AC_INIT([mpg123], [1.30.2], [maintainer@mpg123.org])
dnl Increment API_VERSION when the API gets changes (new functions).
dnl libmpg123

View File

@@ -3,7 +3,7 @@
# - devel packages for alsa, sdl, etc... to build the respective output modules.
Summary: The fast console mpeg audio decoder/player.
Name: mpg123
Version: 1.30.1
Version: 1.30.2
Release: 1
URL: http://www.mpg123.org/
License: GPL

View File

@@ -451,8 +451,9 @@ size_t unintr_write(int fd, void const *buffer, size_t bytes)
bytes -= part;
written += part;
} else if(errno != EINTR && errno != EAGAIN
#ifndef __KLIBC__
// OS/2 is funny with POSIX.
#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
// Not all platforms define it (or only in more modern POSIX modes).
// Standard says it is supposed to be a macro, so simple check here.
&& errno != EWOULDBLOCK
#endif
)
@@ -475,8 +476,7 @@ size_t unintr_read(int fd, void *buffer, size_t bytes)
bytes -= part;
got += part;
} else if(errno != EINTR && errno != EAGAIN
#ifndef __KLIBC__
// OS/2 is funny with POSIX.
#if defined(EWOULDBLOCK) && (EWOULDBLOCK != EAGAIN)
&& errno != EWOULDBLOCK
#endif
)