This commit is contained in:
Graeme Walker 2009-08-22 12:00:00 +00:00
parent 61ffec9a36
commit 4b70b53758
8 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,10 @@
E-MailRelay Change Log
======================
1.8.1 -> 1.8.2
--------------
* Fix namespaces for gcc 3.4.
1.8 -> 1.8.1
------------
* Changed the definition of "--as-proxy" to use "--poll 0" rather than "--immediate" [bug-id 1961652].

View File

@ -24,6 +24,7 @@
#include <sstream>
#include <string>
#include <ctime>
#include <cstdlib>
// (note that the implementation here has to be reentrant and using only the standard runtime library)
@ -223,7 +224,7 @@ void G::LogOutput::doAssertion( const char * file , int line , const std::string
void G::LogOutput::halt()
{
abort() ;
::abort() ;
}
std::string G::LogOutput::levelString( Log::Severity s )

View File

@ -26,6 +26,7 @@
#include "gfs.h"
#include "glog.h"
#include <iostream>
#include <cstring> // std::strerror()
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
@ -122,7 +123,7 @@ int G::Process::errno_( int e )
std::string G::Process::strerror( int errno_ )
{
char * p = ::strerror( errno_ ) ;
char * p = std::strerror( errno_ ) ;
return std::string( p ? p : "" ) ;
}

View File

@ -32,6 +32,7 @@
#include "gtest.h"
#include "gdebug.h"
#include "glog.h"
#include <cstdlib>
namespace
{

View File

@ -51,6 +51,7 @@
#include <map>
#include <set>
#include <list>
#include <cstdlib>
#ifdef CreateDirectory
#undef CreateDirectory

View File

@ -25,6 +25,7 @@
#include "run.h"
#include "commandline.h"
#include <exception>
#include <cstdlib>
/// \class App
/// An implementation of the Main::Output abstract interface

View File

@ -31,6 +31,7 @@
#include "gmd5.h"
#include "legal.h"
#include <iostream>
#include <cstdlib>
int main( int argc , char * argv [] )
{

View File

@ -54,6 +54,7 @@
#include <exception>
#include <iostream>
#include <memory>
#include <cstdlib>
G_EXCEPTION( NoBody , "no body text" ) ;