commit:     13cdef93017ab33bd801fd0596bf94ea90ffbf74
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Mar  5 16:58:11 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Mar 11 04:46:36 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13cdef93

dev-util/ninja: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/11274
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 dev-util/ninja/files/ninja-uclibc.patch | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/dev-util/ninja/files/ninja-uclibc.patch 
b/dev-util/ninja/files/ninja-uclibc.patch
deleted file mode 100644
index e87eea84272..00000000000
--- a/dev-util/ninja/files/ninja-uclibc.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/src/util.cc b/src/util.cc
-index e31fd1f..1caa1ce 100644
---- a/src/util.cc
-+++ b/src/util.cc
-@@ -585,6 +585,13 @@ double GetLoadAverage() {
-   // Calculation taken from comment in libperfstats.h
-   return double(cpu_stats.loadavg[0]) / double(1 << SBITS);
- }
-+#elif defined(__UCLIBC__)
-+double GetLoadAverage() {
-+  struct sysinfo si;
-+  if (sysinfo(&si) != 0)
-+    return -0.0f;
-+  return 1.0 / (1 << SI_LOAD_SHIFT) * si.loads[0];
-+}
- #else
- double GetLoadAverage() {
-   double loadavg[3] = { 0.0f, 0.0f, 0.0f };

Reply via email to