mpg123 1.33.0-dev+20250607022201

This commit is contained in:
Ozkan Sezer
2025-06-07 10:51:56 +03:00
parent bf2eba7bc0
commit 426f60d4f4
7 changed files with 37 additions and 20 deletions

View File

@@ -512,7 +512,7 @@ size_t INT123_unintr_fwrite(const void *ptr, size_t size, size_t nmemb, FILE *st
}
#ifndef NO_CATCHSIGNAL
#if (!defined(WIN32) || defined (__CYGWIN__)) && defined(HAVE_SIGNAL_H)
#if (!defined(WIN32) || defined (__CYGWIN__)) && !defined(__PSP__) && defined(HAVE_SIGNAL_H)
void (*INT123_catchsignal(int signum, void(*handler)(int)))(int)
{
struct sigaction new_sa;

View File

@@ -1,7 +1,7 @@
/*
out123: stream data from libmpg123 or libsyn123 to an audio output device
copyright 1995-2023 by the mpg123 project,
copyright 1995-2025 by the mpg123 project,
free software under the terms of the LGPL 2.1
see COPYING and AUTHORS files in distribution or http://mpg123.org
@@ -1630,7 +1630,10 @@ int main(int sys_argc, char ** sys_argv)
}
if(strcmp(signal_source, "file"))
{
had_something = 1;
generate = TRUE;
}
else
input = open_next_file(argc, argv, 1);

View File

@@ -19,7 +19,7 @@
#define MPG123_PATCH 0
// Don't get too wild with that to avoid confusing m4. No brackets.
// Also, it should fit well into a sane file name for the tarball.
#define MPG123_SUFFIX "-dev+20250525022201"
#define MPG123_SUFFIX "-dev+20250607022201"
#define MPG123_VERSION_CAT_REALLY(a, b, c) #a "." #b "." #c
#define MPG123_VERSION_CAT(a, b, c) MPG123_VERSION_CAT_REALLY(a, b, c)