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

(-)pekwm-0.1.6.orig/src/CfgParser.cc (+1 lines)
Lines 11-20 Link Here
11
#include "Util.hh"
11
#include "Util.hh"
12
12
13
#include <iostream>
13
#include <iostream>
14
#include <memory>
14
#include <memory>
15
#include <cassert>
15
#include <cassert>
16
#include <cstring>
16
17
17
#ifdef HAVE_GETTEXT
18
#ifdef HAVE_GETTEXT
18
#include <libintl.h>
19
#include <libintl.h>
19
#define _(S) gettext(S)
20
#define _(S) gettext(S)
20
#else // !HAVE_GETTEXT
21
#else // !HAVE_GETTEXT
(-)pekwm-0.1.6.orig/src/CfgParser.hh (+1 lines)
Lines 30-39 Link Here
30
30
31
#include <list>
31
#include <list>
32
#include <map>
32
#include <map>
33
#include <set>
33
#include <set>
34
#include <string>
34
#include <string>
35
#include <cstring>
35
#include <iostream>
36
#include <iostream>
36
#include <cstdlib>
37
#include <cstdlib>
37
38
38
//! @brief Configuration file parser.
39
//! @brief Configuration file parser.
39
class CfgParser {
40
class CfgParser {
(-)pekwm-0.1.6.orig/src/CfgParserSource.cc (+1 lines)
Lines 11-20 Link Here
11
//
11
//
12
12
13
#include "CfgParserSource.hh"
13
#include "CfgParserSource.hh"
14
#include "Util.hh"
14
#include "Util.hh"
15
15
16
#include <cstdlib>
16
#include <iostream>
17
#include <iostream>
17
18
18
extern "C" {
19
extern "C" {
19
#include <unistd.h>
20
#include <unistd.h>
20
}
21
}
(-)pekwm-0.1.6.orig/src/ColorHandler.cc (+1 lines)
Lines 5-14 Link Here
5
// See the LICENSE file for more information.
5
// See the LICENSE file for more information.
6
//
6
//
7
7
8
#include "ColorHandler.hh"
8
#include "ColorHandler.hh"
9
#include "PScreen.hh"
9
#include "PScreen.hh"
10
#include <cstring>
10
11
11
#ifdef DEBUG
12
#ifdef DEBUG
12
#include <iostream>
13
#include <iostream>
13
using std::cerr;
14
using std::cerr;
14
using std::endl;
15
using std::endl;
(-)pekwm-0.1.6.orig/src/ColorHandler.hh (+1 lines)
Lines 13-22 Link Here
13
13
14
#include "pekwm.hh"
14
#include "pekwm.hh"
15
15
16
#include <list>
16
#include <list>
17
#include <string>
17
#include <string>
18
#include <cstring>
18
19
19
class ColorHandler {
20
class ColorHandler {
20
public:
21
public:
21
    class Entry {
22
    class Entry {
22
    public:
23
    public:
(-)pekwm-0.1.6.orig/src/PImageNativeLoaderXpm.cc (+1 lines)
Lines 11-20 Link Here
11
#ifdef HAVE_IMAGE_XPM
11
#ifdef HAVE_IMAGE_XPM
12
12
13
#include "PImageNativeLoaderXpm.hh"
13
#include "PImageNativeLoaderXpm.hh"
14
14
15
#include <iostream>
15
#include <iostream>
16
#include <cstring>
16
17
17
using std::cerr;
18
using std::cerr;
18
using std::endl;
19
using std::endl;
19
using std::string;
20
using std::string;
20
21
(-)pekwm-0.1.6.orig/src/RegexString.cc (-1 / +1 lines)
Lines 9-19 Link Here
9
//
9
//
10
10
11
#include "../config.h"
11
#include "../config.h"
12
12
13
#include "RegexString.hh"
13
#include "RegexString.hh"
14
14
#include <cstdlib>
15
#include <iostream>
15
#include <iostream>
16
16
17
#ifdef HAVE_GETTEXT
17
#ifdef HAVE_GETTEXT
18
#include <libintl.h>
18
#include <libintl.h>
19
#define _(S) gettext(S)
19
#define _(S) gettext(S)
(-)pekwm-0.1.6.orig/src/Util.cc (+1 lines)
Lines 11-20 Link Here
11
//
11
//
12
12
13
#include "../config.h"
13
#include "../config.h"
14
#include "Util.hh"
14
#include "Util.hh"
15
15
16
#include <cstdlib>
16
#include <algorithm>
17
#include <algorithm>
17
#include <iostream>
18
#include <iostream>
18
#include <sstream>
19
#include <sstream>
19
20
20
#include <unistd.h>
21
#include <unistd.h>
(-)pekwm-0.1.6.orig/src/Util.hh (+1 lines)
Lines 12-21 Link Here
12
#define _UTIL_HH_
12
#define _UTIL_HH_
13
13
14
#include "Types.hh"
14
#include "Types.hh"
15
15
16
#include <string>
16
#include <string>
17
#include <cstring>
17
#include <vector>
18
#include <vector>
18
#include <functional>
19
#include <functional>
19
#include <sstream>
20
#include <sstream>
20
21
21
//! @brief Namespace Util used for various small file/string tasks.
22
//! @brief Namespace Util used for various small file/string tasks.

Return to bug 218956