- compile fixes for gcc 4.x; fixes #592

svn path=/trunk/boinc/; revision=15007
This commit is contained in:
David Anderson 2008-04-02 19:33:12 +00:00
parent 8ba1188dd0
commit b33276bee3
4 changed files with 15 additions and 0 deletions

View File

@ -2993,6 +2993,7 @@ David April 2 2008
send <client_cap_plan_class/> if client understands send <client_cap_plan_class/> if client understands
app version plan class. app version plan class.
The server checks for this instead of version > 6.11. The server checks for this instead of version > 6.11.
(suggested by Nicolas Alvarez)
- clean up unix_util: .h files declare only (extern) interfaces; - clean up unix_util: .h files declare only (extern) interfaces;
no reason for daemon() to be C no reason for daemon() to be C
@ -3004,3 +3005,13 @@ David April 2 2008
sched_plan.C sched_plan.C
sched_send.C sched_send.C
server_types.C,h server_types.C,h
David April 2 2008
- compile fixes for gcc 4.x; fixes #592
lib/
coproc.h
sched/
single_job_assimilator.C
tools/
backend_lib.h

View File

@ -21,6 +21,7 @@
#define _COPROC_ #define _COPROC_
#include <vector> #include <vector>
#include <cstring>
#include "miofile.h" #include "miofile.h"

View File

@ -25,6 +25,7 @@
#include <vector> #include <vector>
#include <string> #include <string>
#include <cstdlib> #include <cstdlib>
#include <cstring>
#include "boinc_db.h" #include "boinc_db.h"
#include "error_numbers.h" #include "error_numbers.h"

View File

@ -20,6 +20,8 @@
#ifndef H_BACKEND_LIB #ifndef H_BACKEND_LIB
#define H_BACKEND_LIB #define H_BACKEND_LIB
#include <limits.h>
#include "crypt.h" #include "crypt.h"
#include "sched_config.h" #include "sched_config.h"
#include "boinc_db.h" #include "boinc_db.h"