From a4e25d35371e6480664b04080361dc877b65de12 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 24 Mar 2014 17:54:09 +0100 Subject: remove mpd read-only feature, needs rework with command line parameter --- package/mpd/patches/patch-src_thread_Id_hxx | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 package/mpd/patches/patch-src_thread_Id_hxx (limited to 'package/mpd/patches/patch-src_thread_Id_hxx') diff --git a/package/mpd/patches/patch-src_thread_Id_hxx b/package/mpd/patches/patch-src_thread_Id_hxx deleted file mode 100644 index dabee4007..000000000 --- a/package/mpd/patches/patch-src_thread_Id_hxx +++ /dev/null @@ -1,11 +0,0 @@ ---- mpd-0.18.5.orig/src/thread/Id.hxx 2013-11-18 23:50:46.000000000 +0100 -+++ mpd-0.18.5/src/thread/Id.hxx 2013-11-29 20:50:36.000000000 +0100 -@@ -84,7 +84,7 @@ public: - #ifdef WIN32 - return id == other.id; - #else -- return ::pthread_equal(id, other.id); -+ return pthread_equal(id, other.id); - #endif - } - -- cgit v1.2.3 From a9a0f7322e1591b9c6896a0ed4a973464f461852 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 26 Mar 2014 09:05:42 +0100 Subject: accidentally lost a needed patch for musl --- package/mpd/patches/patch-src_thread_Id_hxx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 package/mpd/patches/patch-src_thread_Id_hxx (limited to 'package/mpd/patches/patch-src_thread_Id_hxx') diff --git a/package/mpd/patches/patch-src_thread_Id_hxx b/package/mpd/patches/patch-src_thread_Id_hxx new file mode 100644 index 000000000..21dd19846 --- /dev/null +++ b/package/mpd/patches/patch-src_thread_Id_hxx @@ -0,0 +1,11 @@ +--- mpd-0.18.9.orig/src/thread/Id.hxx 2013-12-11 20:51:53.000000000 +0100 ++++ mpd-0.18.9/src/thread/Id.hxx 2014-03-26 09:04:04.000000000 +0100 +@@ -84,7 +84,7 @@ public: + #ifdef WIN32 + return id == other.id; + #else +- return ::pthread_equal(id, other.id); ++ return pthread_equal(id, other.id); + #endif + } + -- cgit v1.2.3