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

(-)bobotpp-2.2.2.orig/source/Channel.C (+1 lines)
Lines 23-32 Link Here
23
23
24
#include "Macros.H"
24
#include "Macros.H"
25
#include "Utils.H"
25
#include "Utils.H"
26
#include "Channel.H"
26
#include "Channel.H"
27
#include "StringTokenizer.H"
27
#include "StringTokenizer.H"
28
#include <cstdlib>
28
#ifdef USESCRIPTS
29
#ifdef USESCRIPTS
29
#include "Interp.H"
30
#include "Interp.H"
30
#endif
31
#endif
31
32
32
Channel::Channel(ServerConnection *c,
33
Channel::Channel(ServerConnection *c,
(-)bobotpp-2.2.2.orig/source/DCCManager.H (+1 lines)
Lines 22-31 Link Here
22
#include <list>
22
#include <list>
23
#include "DCCPerson.H"
23
#include "DCCPerson.H"
24
#include "DCCConnection.H"
24
#include "DCCConnection.H"
25
#include "UserCommands.H"
25
#include "UserCommands.H"
26
#include "String.H"
26
#include "String.H"
27
#include <sys/types.h>
27
28
28
typedef std::map<String, DCCPerson*, std::less<String> > DCC_MAP;
29
typedef std::map<String, DCCPerson*, std::less<String> > DCC_MAP;
29
30
30
// Manages all active DCC connections and allows you to send a message
31
// Manages all active DCC connections and allows you to send a message
31
// to each one using the string representation of the user's address
32
// to each one using the string representation of the user's address
(-)bobotpp-2.2.2.orig/source/Parser.C (+1 lines)
Lines 21-30 Link Here
21
#include "config.h"
21
#include "config.h"
22
#endif
22
#endif
23
23
24
#include <sys/types.h>
24
#include <sys/types.h>
25
#include <netinet/in.h>
25
#include <netinet/in.h>
26
#include <cstdlib>
26
27
27
#include "StringTokenizer.H"
28
#include "StringTokenizer.H"
28
#include "Parser.H"
29
#include "Parser.H"
29
#include "UserCommands.H"
30
#include "UserCommands.H"
30
#include "Commands.H"
31
#include "Commands.H"
(-)bobotpp-2.2.2.orig/source/ServerQueue.C (-1 / +1 lines)
Lines 19-29 Link Here
19
19
20
#ifdef HAVE_CONFIG_H
20
#ifdef HAVE_CONFIG_H
21
#include "config.h"
21
#include "config.h"
22
#endif
22
#endif
23
23
24
//#include <limits>
24
#include <climits>
25
#include "ServerQueue.H"
25
#include "ServerQueue.H"
26
#include "Utils.H"
26
#include "Utils.H"
27
27
28
ServerQueue::ServerQueue(Socket * s, bool d)
28
ServerQueue::ServerQueue(Socket * s, bool d)
29
  : Queue(s,d), penalty(0)
29
  : Queue(s,d), penalty(0)
(-)bobotpp-2.2.2.orig/source/ShitList.C (+1 lines)
Lines 24-33 Link Here
24
#include <fstream>
24
#include <fstream>
25
25
26
#include "ShitList.H"
26
#include "ShitList.H"
27
#include "StringTokenizer.H"
27
#include "StringTokenizer.H"
28
#include "Utils.H"
28
#include "Utils.H"
29
#include <cstdlib>
29
30
30
ShitList::ShitList(String filename)
31
ShitList::ShitList(String filename)
31
  : listFileName(filename)
32
  : listFileName(filename)
32
{
33
{
33
#ifdef HAVE_STL_CLEAR
34
#ifdef HAVE_STL_CLEAR
(-)bobotpp-2.2.2.orig/source/String.C (+1 lines)
Lines 21-30 Link Here
21
21
22
#include <cstring>
22
#include <cstring>
23
#include <cctype>
23
#include <cctype>
24
#include <sstream>
24
#include <sstream>
25
#include <iostream>
25
#include <iostream>
26
#include <cstdlib>
26
27
27
String::String()
28
String::String()
28
{
29
{
29
}
30
}
30
31
(-)bobotpp-2.2.2.orig/source/UserCommands.C (+1 lines)
Lines 30-39 Link Here
30
#include <sys/socket.h>
30
#include <sys/socket.h>
31
#include <netinet/in.h>
31
#include <netinet/in.h>
32
#include <arpa/inet.h>
32
#include <arpa/inet.h>
33
#include <netdb.h>
33
#include <netdb.h>
34
#include <cstdlib>
34
#include <cstdlib>
35
#include <cstring>
35
#ifndef _X_OPEN_SOURCE
36
#ifndef _X_OPEN_SOURCE
36
#define _X_OPEN_SOURCE
37
#define _X_OPEN_SOURCE
37
#endif
38
#endif
38
#ifndef _X_OPEN_SOURCE_EXTENDED
39
#ifndef _X_OPEN_SOURCE_EXTENDED
39
#define _X_OPEN_SOURCE_EXTENDED 1
40
#define _X_OPEN_SOURCE_EXTENDED 1
(-)bobotpp-2.2.2.orig/source/UserList.C (+1 lines)
Lines 17-26 Link Here
17
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18
// 02110-1301, USA.
18
// 02110-1301, USA.
19
19
20
#include <fstream>
20
#include <fstream>
21
#include <iostream>
21
#include <iostream>
22
#include <cstdlib>
22
23
23
#include "UserList.H"
24
#include "UserList.H"
24
#include "StringTokenizer.H"
25
#include "StringTokenizer.H"
25
#include "Utils.H"
26
#include "Utils.H"
26
27

Return to bug 218273