add include complying to gcc 4.4

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1217 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2009-05-11 14:30:53 +00:00
parent 63be32ba4d
commit ec072e53f4
15 changed files with 18 additions and 2 deletions

View file

@ -37,6 +37,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>
#include <openssl/sha.h> #include <openssl/sha.h>
#include <stdio.h>
/*********** /***********
* #define FIM_DEBUG 1 * #define FIM_DEBUG 1

View file

@ -28,6 +28,7 @@
#include <map> #include <map>
#include <list> #include <list>
#include <vector> #include <vector>
#include <stdint.h>
class ostream; class ostream;

View file

@ -49,6 +49,7 @@
#include "pqi/pqinotify.h" #include "pqi/pqinotify.h"
#include "serialiser/rsconfigitems.h" #include "serialiser/rsconfigitems.h"
#include <stdio.h>
/****** /******
* #define CONTROL_DEBUG 1 * #define CONTROL_DEBUG 1

View file

@ -26,6 +26,7 @@
#include "ft/ftextralist.h" #include "ft/ftextralist.h"
#include "serialiser/rsconfigitems.h" #include "serialiser/rsconfigitems.h"
#include "util/rsdir.h" #include "util/rsdir.h"
#include <stdio.h>
/****** /******
* #define DEBUG_ELIST 1 * #define DEBUG_ELIST 1

View file

@ -1,5 +1,6 @@
#include "ftfilecreator.h" #include "ftfilecreator.h"
#include <errno.h> #include <errno.h>
#include <stdio.h>
/******* /*******
* #define FILE_DEBUG 1 * #define FILE_DEBUG 1

View file

@ -2,6 +2,7 @@
#include "util/rsdir.h" #include "util/rsdir.h"
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h>
ftFileProvider::ftFileProvider(std::string path, uint64_t size, std::string ftFileProvider::ftFileProvider(std::string path, uint64_t size, std::string
hash) : mSize(size), hash(hash), file_name(path), fd(NULL),transfer_rate(0),total_size(0) hash) : mSize(size), hash(hash), file_name(path), fd(NULL),transfer_rate(0),total_size(0)

View file

@ -25,6 +25,7 @@
#include <sstream> #include <sstream>
#include <iomanip> #include <iomanip>
#include <stdio.h>
#include <openssl/sha.h> #include <openssl/sha.h>
#include "pqi/p3dhtmgr.h" #include "pqi/p3dhtmgr.h"

View file

@ -30,6 +30,7 @@
#include "pqi/pqi_base.h" #include "pqi/pqi_base.h"
#include "pqi/pqihash.h" #include "pqi/pqihash.h"
#include <stdio.h>
class BinFileInterface: public BinInterface class BinFileInterface: public BinInterface
{ {

View file

@ -28,6 +28,7 @@
#include "util/rsdebug.h" #include "util/rsdebug.h"
#include <sstream> #include <sstream>
#include <stdio.h>
const int pqipersongrpzone = 354; const int pqipersongrpzone = 354;

View file

@ -30,7 +30,7 @@
#include <list> #include <list>
#include <iostream> #include <iostream>
#include <string> #include <string>
#include <stdint.h>
typedef std::string RsCertId; typedef std::string RsCertId;
typedef std::string RsChanId; typedef std::string RsChanId;

View file

@ -27,6 +27,8 @@
*/ */
#include <string> #include <string>
#include <stdlib.h>
#include <stdint.h>
/******************************************************************* /*******************************************************************
* This is at the lowlevel packing routines. They are usually * This is at the lowlevel packing routines. They are usually

View file

@ -31,7 +31,8 @@
#include <map> #include <map>
#include <string> #include <string>
#include <iosfwd> #include <iosfwd>
#include <stdlib.h>
#include <stdint.h>
/******************************************************************* /*******************************************************************
* This is the Top-Level serialiser/deserialise, * This is the Top-Level serialiser/deserialise,

View file

@ -33,6 +33,8 @@
#include <string> #include <string>
#include <list> #include <list>
#include <stdlib.h>
#include <stdint.h>
//#define RS_TLV_TYPE_FILE_ITEM 0x0000 //#define RS_TLV_TYPE_FILE_ITEM 0x0000

View file

@ -33,6 +33,7 @@
#include <string> #include <string>
#include <iostream> #include <iostream>
#include <algorithm> #include <algorithm>
#include <stdio.h>
#if defined(WIN32) || defined(__CYGWIN__) #if defined(WIN32) || defined(__CYGWIN__)
#include "wtypes.h" #include "wtypes.h"

View file

@ -30,6 +30,7 @@
#include <string> #include <string>
#include <list> #include <list>
#include <stdint.h>
namespace RsDirUtil { namespace RsDirUtil {