You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by "sxf (JIRA)" <ji...@apache.org> on 2015/10/06 14:03:26 UTC

[jira] [Created] (QPID-6774) Can't compile unit_test with boost 1.59.0

sxf created QPID-6774:
-------------------------

             Summary: Can't compile unit_test with boost 1.59.0
                 Key: QPID-6774
                 URL: https://issues.apache.org/jira/browse/QPID-6774
             Project: Qpid
          Issue Type: Bug
          Components: C++ Broker
    Affects Versions: qpid-cpp-0.34
         Environment: Windows xp sp3, VC2008 no sp,boost 1.59.0
            Reporter: sxf
             Fix For: qpid-cpp-0.34


QPID-6771:
3)..\..\..\src\tests\exception_test.cpp(66) : error C3861: "BOOST_MESSAGE": 找不到标识符

BOOST_MESSAGE was removed from boost 1.59.0, we should add it.
 
from:
namespace tests {

QPID_AUTO_TEST_SUITE(exception_test)

to:
namespace tests {

#ifndef BOOST_MESSAGE
#define BOOST_MESSAGE( M )                  BOOST_TEST_MESSAGE( M )
#endif

QPID_AUTO_TEST_SUITE(exception_test)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@qpid.apache.org
For additional commands, e-mail: dev-help@qpid.apache.org