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

(-)fbdesk-1.4.1.orig/src/FbDesk.cc (+1 lines)
Lines 37-46 Link Here
37
#include <iostream>
37
#include <iostream>
38
#include <fstream>
38
#include <fstream>
39
#include <algorithm>
39
#include <algorithm>
40
#include <unistd.h>
40
#include <unistd.h>
41
#include <cstdio>
41
#include <cstdio>
42
#include <cstring>
42
43
43
using namespace std;
44
using namespace std;
44
using namespace FbTk;
45
using namespace FbTk;
45
46
46
47
(-)fbdesk-1.4.1.orig/src/FbTk/FbPixmap.cc (+1 lines)
Lines 28-37 Link Here
28
28
29
#include <X11/Xutil.h>
29
#include <X11/Xutil.h>
30
#include <X11/Xatom.h>
30
#include <X11/Xatom.h>
31
#include <iostream>
31
#include <iostream>
32
#include <string>
32
#include <string>
33
#include <cstring>
33
34
34
using namespace std;
35
using namespace std;
35
36
36
namespace FbTk {
37
namespace FbTk {
37
38
(-)fbdesk-1.4.1.orig/src/FbTk/KeyUtil.cc (+1 lines)
Lines 23-32 Link Here
23
23
24
#include "KeyUtil.hh"
24
#include "KeyUtil.hh"
25
#include "App.hh"
25
#include "App.hh"
26
26
27
#include <string>
27
#include <string>
28
#include <cstring>
28
29
29
namespace {
30
namespace {
30
31
31
struct t_modlist{
32
struct t_modlist{
32
    char *str;
33
    char *str;
(-)fbdesk-1.4.1.orig/src/FbTk/StringUtil.cc (+1 lines)
Lines 47-56 Link Here
47
47
48
48
49
#include <memory>
49
#include <memory>
50
#include <algorithm>
50
#include <algorithm>
51
#include <string>
51
#include <string>
52
#include <cstring>
52
53
53
using std::string;
54
using std::string;
54
using std::transform;
55
using std::transform;
55
56
56
namespace FbTk {
57
namespace FbTk {
(-)fbdesk-1.4.1.orig/src/FbTk/TextBox.cc (+1 lines)
Lines 34-43 Link Here
34
#endif
34
#endif
35
#include <X11/keysym.h>
35
#include <X11/keysym.h>
36
#include <X11/Xutil.h>
36
#include <X11/Xutil.h>
37
37
38
#include <iostream>
38
#include <iostream>
39
#include <cstdlib>
39
40
40
namespace FbTk {
41
namespace FbTk {
41
42
42
TextBox::TextBox(int screen_num,
43
TextBox::TextBox(int screen_num,
43
                 const Font &font, const std::string &text):
44
                 const Font &font, const std::string &text):
(-)fbdesk-1.4.1.orig/src/FbTk/TextureRender.cc (+1 lines)
Lines 31-40 Link Here
31
#include "FbPixmap.hh"
31
#include "FbPixmap.hh"
32
#include "GContext.hh"
32
#include "GContext.hh"
33
33
34
#include <iostream>
34
#include <iostream>
35
#include <string>
35
#include <string>
36
#include <cstring>
36
#ifdef HAVE_CSTDIO
37
#ifdef HAVE_CSTDIO
37
  #include <cstdio>
38
  #include <cstdio>
38
#else
39
#else
39
  #include <stdio.h>
40
  #include <stdio.h>
40
#endif
41
#endif
(-)fbdesk-1.4.1.orig/src/FbTk/Theme.cc (+1 lines)
Lines 34-43 Link Here
34
#else
34
#else
35
  #include <stdio.h>
35
  #include <stdio.h>
36
#endif
36
#endif
37
#include <memory>
37
#include <memory>
38
#include <iostream>
38
#include <iostream>
39
#include <algorithm>
39
40
40
using namespace std;
41
using namespace std;
41
42
42
namespace FbTk {
43
namespace FbTk {
43
44
(-)fbdesk-1.4.1.orig/src/FbTk/ThemeItems.cc (+2 lines)
Lines 46-55 Link Here
46
  #include <stdio.h>
46
  #include <stdio.h>
47
#endif
47
#endif
48
48
49
#include <iostream>
49
#include <iostream>
50
#include <memory>
50
#include <memory>
51
#include <cstdlib>
52
#include <cstring>
51
53
52
namespace FbTk {
54
namespace FbTk {
53
55
54
using std::string;
56
using std::string;
55
using std::cerr;
57
using std::cerr;
(-)fbdesk-1.4.1.orig/src/FbTk/XFontImp.cc (+1 lines)
Lines 26-35 Link Here
26
#include "GContext.hh"
26
#include "GContext.hh"
27
#include "FbPixmap.hh"
27
#include "FbPixmap.hh"
28
28
29
#include <X11/Xutil.h>
29
#include <X11/Xutil.h>
30
30
31
#include <cstdlib>
31
#include <iostream>
32
#include <iostream>
32
#include <new>
33
#include <new>
33
#ifdef HAVE_CSTDIO
34
#ifdef HAVE_CSTDIO
34
  #include <cstdio>
35
  #include <cstdio>
35
#else
36
#else
(-)fbdesk-1.4.1.orig/src/main.cc (+2 lines)
Lines 21-34 Link Here
21
21
22
#include "App.hh"
22
#include "App.hh"
23
#include "FbDesk.hh"
23
#include "FbDesk.hh"
24
#include "version.h"
24
#include "version.h"
25
25
26
#include <cstdlib>
26
#include <iostream>
27
#include <iostream>
27
#include <stdexcept>
28
#include <stdexcept>
28
#include <signal.h>
29
#include <signal.h>
29
#include <sys/wait.h>
30
#include <sys/wait.h>
31
#include <cstring>
30
32
31
using namespace std;
33
using namespace std;
32
34
33
///  handles system signals
35
///  handles system signals
34
void signalhandler(int sig) {
36
void signalhandler(int sig) {

Return to bug 218336