- update to version 2.5.2
* New configuration file options:
- ALSAStutterDefeat: avoid the ALSA bug which causes stuttering
* Significant bug fixes:
- Fixed error during configure on busybox systems
- Fixed calculation of average bitrate in FLAC decoder
- Fixed unintentional disabling of MMAP support
- Fixed build failure on split ncurses/tinfo systems
- Fixed unreaped children when running in foreground mode
- Fixed freeze on Nokia devices if audios play to completion
- Circumvented ALSA stutter bug
- Added missing 'Precache' option to example config file
* Miscellaneous:
- Improved the accuracy of the average bitrate for FLAC
- Mitigated out-of-file seeking for several formats
- Warn of TagLib version requirement rising to 1.5
- Warn of Musepack library changing to libmpc (from libmpcdec)
* Significant bug fixes:
- Corrected the setting of linked libraries for Berkeley DB
- Fixed ALSA volume setting problem (Tomasz Golinski)
- Fixed clearing of stream status message on error
- Resolved FFmpeg/LibAV's downmixing API issues (Andreas Cadhalpun)
- Removed duplicate logging of fatal error messages
* Miscellaneous:
- Adapted to FFmpeg 3.0 API
- Warn of FFmpeg/LibAV version requirement rising to 1.0/10.0
- Warn of pending POSIX.1-2001 compliance requirement
- Fixed various (and potential) segfaults (Daniel T. Borelli,
Hendrik Iben, Rastislav Barlik)
- Fixed various resource leakages
- Silenced various compiler warnings
OBS-URL: https://build.opensuse.org/request/show/459519
OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/moc?expand=0&rev=15
19 lines
400 B
Diff
19 lines
400 B
Diff
--- a/main.c
|
|
+++ b/main.c
|
|
@@ -249,15 +249,6 @@ static void show_version ()
|
|
printf (" Revision : %s\n", PACKAGE_REVISION);
|
|
#endif
|
|
|
|
- /* Show build time */
|
|
-#ifdef __DATE__
|
|
- printf (" Built : %s", __DATE__);
|
|
-# ifdef __TIME__
|
|
- printf (" %s", __TIME__);
|
|
-# endif
|
|
- putchar ('\n');
|
|
-#endif
|
|
-
|
|
/* Show compiled-in components */
|
|
printf (" Compiled with :");
|
|
#ifdef HAVE_OSS
|