Attached is the patch that fixes all FTBFS for libclaw. -- Krzysztof Klimonda <[email protected]>
diff -uNr a/claw/code/basic_socket.cpp b/claw/code/basic_socket.cpp
--- a/claw/code/basic_socket.cpp 2010-10-19 23:52:03.563241000 +0200
+++ b/claw/code/basic_socket.cpp 2010-10-19 23:46:11.504704001 +0200
@@ -45,7 +45,7 @@
* \brief Open the socket.
* \return this is everything works fine, NULL otherwise.
*/
-claw::net::basic_socket::basic_socket* claw::net::basic_socket::open()
+claw::net::basic_socket* claw::net::basic_socket::open()
{
basic_socket* result = NULL;
@@ -62,7 +62,7 @@
* \brief Close the socket.
* \return this if everything works fine, NULL otherwise.
*/
-claw::net::basic_socket::basic_socket* claw::net::basic_socket::close()
+claw::net::basic_socket* claw::net::basic_socket::close()
{
basic_socket* result = this;
diff -uNr a/claw/code/socket_server.cpp b/claw/code/socket_server.cpp
--- a/claw/code/socket_server.cpp 2010-10-19 23:52:03.563241000 +0200
+++ b/claw/code/socket_server.cpp 2010-10-19 23:48:48.844704002 +0200
@@ -58,7 +58,7 @@
* \param queue_size The size of the waiting queue for incoming connections.
* \return this if everything works fine, NULL otherwise.
*/
-claw::net::socket_server::socket_server*
+claw::net::socket_server*
claw::net::socket_server::open( int port, unsigned int queue_size )
{
socket_server* result = NULL;
@@ -78,7 +78,7 @@
/**
* \brief Close the socket.
*/
-claw::net::socket_server::socket_server* claw::net::socket_server::close()
+claw::net::socket_server* claw::net::socket_server::close()
{
if ( basic_socket::close() )
return this;
diff -uNr a/claw/impl/logger.tpp b/claw/impl/logger.tpp
--- a/claw/impl/logger.tpp 2010-10-19 23:52:03.563241000 +0200
+++ b/claw/impl/logger.tpp 2010-10-19 23:43:44.344704001 +0200
@@ -36,7 +36,7 @@
* \remark T must support operator<<(std::ostream&, const T&);
*/
template<class T>
-claw::log_system::log_system& claw::log_system::operator<<( const T& t )
+claw::log_system& claw::log_system::operator<<( const T& t )
{
if (m_message_level <= m_log_level)
{
signature.asc
Description: This is a digitally signed message part

