Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 217978
Collapse All | Expand All

(-)blackbox-0.70.1.orig/lib/Image.cc (-2 / +3 lines)
Lines 42-49 Link Here
42
42
43
#include <assert.h>
43
#include <assert.h>
44
#include <math.h>
44
#include <math.h>
45
#include <stdio.h>
45
#include <cstdio>
46
#include <stdlib.h>
46
#include <cstdlib>
47
#include <cstring>
47
48
48
// #define COLORTABLE_DEBUG
49
// #define COLORTABLE_DEBUG
49
// #define MITSHM_DEBUG
50
// #define MITSHM_DEBUG
(-)blackbox-0.70.1.orig/lib/Resource.cc (-1 / +2 lines)
Lines 28-34 Link Here
28
#include <X11/Xlib.h>
28
#include <X11/Xlib.h>
29
#include <X11/Xresource.h>
29
#include <X11/Xresource.h>
30
30
31
#include <stdio.h>
31
#include <cstdio>
32
#include <cstring>
32
33
33
34
34
bt::Resource::Resource(void)
35
bt::Resource::Resource(void)
(-)blackbox-0.70.1.orig/lib/XDG.cc (-1 / +2 lines)
Lines 25-31 Link Here
25
#include "Util.hh"
25
#include "Util.hh"
26
#include "XDG.hh"
26
#include "XDG.hh"
27
27
28
#include <stdlib.h>
28
#include <cstdlib>
29
#include <algorithm>
29
30
30
31
31
// make sure directory names end with a slash
32
// make sure directory names end with a slash
(-)blackbox-0.70.1.orig/src/BlackboxResource.cc (+2 lines)
Lines 33-38 Link Here
33
#include <X11/Xutil.h>
33
#include <X11/Xutil.h>
34
#include <X11/cursorfont.h>
34
#include <X11/cursorfont.h>
35
35
36
#include <cstring>
37
36
38
37
BlackboxResource::BlackboxResource(const std::string& rc): rc_file(rc) {
39
BlackboxResource::BlackboxResource(const std::string& rc): rc_file(rc) {
38
  screen_resources = 0;
40
  screen_resources = 0;
(-)blackbox-0.70.1.orig/src/main.cc (-1 / +2 lines)
Lines 34-40 Link Here
34
#include "blackbox.hh"
34
#include "blackbox.hh"
35
#include "../version.h"
35
#include "../version.h"
36
36
37
#include <stdio.h>
37
#include <cstdio>
38
#include <cstring>
38
39
39
40
40
static void showHelp(int exitval) {
41
static void showHelp(int exitval) {
(-)blackbox-0.70.1.orig/src/Screen.cc (-1 / +2 lines)
Lines 45-52 Link Here
45
#include <sys/types.h>
45
#include <sys/types.h>
46
#include <sys/stat.h>
46
#include <sys/stat.h>
47
#include <assert.h>
47
#include <assert.h>
48
#include <ctype.h>
49
#include <dirent.h>
48
#include <dirent.h>
49
#include <cctype>
50
#include <cstring>
50
51
51
52
52
static bool running = true;
53
static bool running = true;
(-)blackbox-0.70.1.orig/src/ScreenResource.cc (+2 lines)
Lines 33-38 Link Here
33
33
34
#include <assert.h>
34
#include <assert.h>
35
35
36
#include <cstring>
37
36
38
37
static const int iconify_width  = 9;
39
static const int iconify_width  = 9;
38
static const int iconify_height = 9;
40
static const int iconify_height = 9;
(-)blackbox-0.70.1.orig/util/bsetroot.cc (-1 / +3 lines)
Lines 30-36 Link Here
30
#include <cctype>
30
#include <cctype>
31
31
32
#include <X11/Xatom.h>
32
#include <X11/Xatom.h>
33
#include <stdio.h>
33
#include <cstdio>
34
#include <cstdlib>
35
#include <cstring>
34
36
35
37
36
// ignore all X errors
38
// ignore all X errors

Return to bug 217978