diff options
author | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2016-02-26 23:50:05 +0000 |
commit | ed40676841e317a2aafa04c4c804bb6043864740 (patch) | |
tree | 91c5e4b12acc09eabb2b1234eb633aa78af224d2 /app-admin/conky-full/files/conky-1.9.0-ncurses.patch | |
parent | dc106bfbeb980942a8490753d6883eb34b13ea12 (diff) |
repo cleanup...drop old ebuilds, drop ebuilds already in portage tree
Diffstat (limited to 'app-admin/conky-full/files/conky-1.9.0-ncurses.patch')
-rw-r--r-- | app-admin/conky-full/files/conky-1.9.0-ncurses.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/app-admin/conky-full/files/conky-1.9.0-ncurses.patch b/app-admin/conky-full/files/conky-1.9.0-ncurses.patch deleted file mode 100644 index 91043ed4..00000000 --- a/app-admin/conky-full/files/conky-1.9.0-ncurses.patch +++ /dev/null @@ -1,31 +0,0 @@ -From fd9462da5ed12369fc6a72e42ebc45c6707403fb Mon Sep 17 00:00:00 2001 -From: Pavel Labath <pavelo@centrum.sk> -Date: Fri, 13 Jul 2012 13:41:09 +0200 -Subject: [PATCH] Fix "conky failes to build with --disable-ncurses" (sf.net #3541329) - ---- - src/conky.c | 4 ++-- - 1 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/conky.c b/src/conky.c -index c5b4bed..17fe1a7 100644 ---- a/src/conky.c -+++ b/src/conky.c -@@ -885,12 +885,12 @@ void generate_text_internal(char *p, int p_max_size, - OBJ(cpu) { - if (cur->cpu_usage) { - if (obj->data.i > info.cpu_count) { -- static bool warned = false; -+ static int warned = 0; - if(!warned) { - NORM_ERR("obj->data.i %i info.cpu_count %i", - obj->data.i, info.cpu_count); - NORM_ERR("attempting to use more CPUs than you have!"); -- warned = true; -+ warned = 1; - } - } else { - percent_print(p, p_max_size, --- -1.7.0.4 - |