From 4bd2c75056271e687e26c4d8038bdefaa7c88dc9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 6 Jan 2015 12:08:36 +0100 Subject: thread/Name: disable pthread_setname_np() on NetBSD NetBSD's pthread_setname_np() prototype is incompatible with the rest of the world, and it requires to pass the string argument as a non-const pointer. Instead of working around this misdesign, I hereby disable the feature on NetBSD. --- NEWS | 1 + 1 file changed, 1 insertion(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 14676a5a7..37b3b4cad 100644 --- a/NEWS +++ b/NEWS @@ -5,6 +5,7 @@ ver 0.19.8 (not yet released) - dsdiff, dsf: allow ID3 tags larger than 4 kB - ffmpeg: support interleaved floating point * fix clang 3.6 warnings +* fix build failure on NetBSD ver 0.19.7 (2014/12/17) * input -- cgit v1.2.3 From 37e9010887783c307355f3144786ed72e8a973b0 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 6 Jan 2015 12:46:28 +0100 Subject: input/async: reset the "open" flag after seeking successfully Fixes a problem with the "curl" input plugin: IsEOF() always returns true because the "open" flag was cleared by CurlInputStream::RequestDone() when end-of-stream was reached. This flag stays false even when seeking to another position has succeeded. This patch resets the "open" flag to true after seeking successfully. --- NEWS | 1 + 1 file changed, 1 insertion(+) (limited to 'NEWS') diff --git a/NEWS b/NEWS index 37b3b4cad..5e8d58c22 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,6 @@ ver 0.19.8 (not yet released) * input + - curl: fix bug after rewinding from end-of-file - mms: reduce delay at the beginning of playback * decoder - dsdiff, dsf: allow ID3 tags larger than 4 kB -- cgit v1.2.3