v1.8.2
This commit is contained in:
parent
61ffec9a36
commit
4b70b53758
@ -1,6 +1,10 @@
|
|||||||
E-MailRelay Change Log
|
E-MailRelay Change Log
|
||||||
======================
|
======================
|
||||||
|
|
||||||
|
1.8.1 -> 1.8.2
|
||||||
|
--------------
|
||||||
|
* Fix namespaces for gcc 3.4.
|
||||||
|
|
||||||
1.8 -> 1.8.1
|
1.8 -> 1.8.1
|
||||||
------------
|
------------
|
||||||
* Changed the definition of "--as-proxy" to use "--poll 0" rather than "--immediate" [bug-id 1961652].
|
* Changed the definition of "--as-proxy" to use "--poll 0" rather than "--immediate" [bug-id 1961652].
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
// (note that the implementation here has to be reentrant and using only the standard runtime library)
|
// (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()
|
void G::LogOutput::halt()
|
||||||
{
|
{
|
||||||
abort() ;
|
::abort() ;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string G::LogOutput::levelString( Log::Severity s )
|
std::string G::LogOutput::levelString( Log::Severity s )
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "gfs.h"
|
#include "gfs.h"
|
||||||
#include "glog.h"
|
#include "glog.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <cstring> // std::strerror()
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/wait.h>
|
#include <sys/wait.h>
|
||||||
@ -122,7 +123,7 @@ int G::Process::errno_( int e )
|
|||||||
|
|
||||||
std::string G::Process::strerror( int errno_ )
|
std::string G::Process::strerror( int errno_ )
|
||||||
{
|
{
|
||||||
char * p = ::strerror( errno_ ) ;
|
char * p = std::strerror( errno_ ) ;
|
||||||
return std::string( p ? p : "" ) ;
|
return std::string( p ? p : "" ) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#include "gtest.h"
|
#include "gtest.h"
|
||||||
#include "gdebug.h"
|
#include "gdebug.h"
|
||||||
#include "glog.h"
|
#include "glog.h"
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <list>
|
#include <list>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
#ifdef CreateDirectory
|
#ifdef CreateDirectory
|
||||||
#undef CreateDirectory
|
#undef CreateDirectory
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include "run.h"
|
#include "run.h"
|
||||||
#include "commandline.h"
|
#include "commandline.h"
|
||||||
#include <exception>
|
#include <exception>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
/// \class App
|
/// \class App
|
||||||
/// An implementation of the Main::Output abstract interface
|
/// An implementation of the Main::Output abstract interface
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
#include "gmd5.h"
|
#include "gmd5.h"
|
||||||
#include "legal.h"
|
#include "legal.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
int main( int argc , char * argv [] )
|
int main( int argc , char * argv [] )
|
||||||
{
|
{
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
#include <exception>
|
#include <exception>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <cstdlib>
|
||||||
|
|
||||||
G_EXCEPTION( NoBody , "no body text" ) ;
|
G_EXCEPTION( NoBody , "no body text" ) ;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user