|
From: <fe...@us...> - 2013-02-27 00:34:45
|
Revision: 162
http://ehs.svn.sourceforge.net/ehs/?rev=162&view=rev
Author: felfert
Date: 2013-02-27 00:34:38 +0000 (Wed, 27 Feb 2013)
Log Message:
-----------
- Don't check for boost system lib with boost 1.48 or below
- Fixed an effective c++ warning
Modified Paths:
--------------
trunk/configure.ac
trunk/ehs.cpp
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2013-02-27 00:02:04 UTC (rev 161)
+++ trunk/configure.ac 2013-02-27 00:34:38 UTC (rev 162)
@@ -241,7 +241,10 @@
BOOST_STATIC
BOOST_REQUIRE([1.33.1])
BOOST_REGEX([mt])
+dnl With newer boost, we need boost_system as well
+if test $boost_major_version -gt 148; then
BOOST_SYSTEM([mt])
+fi
dnl Check for boost::lock_guard
Modified: trunk/ehs.cpp
===================================================================
--- trunk/ehs.cpp 2013-02-27 00:02:04 UTC (rev 161)
+++ trunk/ehs.cpp 2013-02-27 00:34:38 UTC (rev 162)
@@ -192,6 +192,7 @@
m_nRemotePort(ipoNetworkAbstraction->GetRemotePort()),
m_nLocalPort(ipoNetworkAbstraction->GetLocalPort()),
m_nMaxRequestSize(MAX_REQUEST_SIZE_DEFAULT),
+ m_sParseContentType(""),
m_oMutex(pthread_mutex_t())
{
UpdateLastActivity();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|