adjustment for QNX

altered Jamfiles to fix test with DLLS on static builds

[SVN r79951]
This commit is contained in:
Robert Ramey
2012-08-10 01:39:53 +00:00
parent 6f0659a8e8
commit ca8cb19e53
9 changed files with 51 additions and 35 deletions

View File

@@ -22,7 +22,17 @@
#include <boost/serialization/type_info_implementation.hpp>
#include <boost/serialization/extended_type_info_no_rtti.hpp>
class polymorphic_base
#include "test_decl.hpp"
#if defined(POLYMORPHIC_DERIVED_IMPORT)
#define DLL_DECL IMPORT_DECL
#elif defined(POLYMORPHIC_DERIVED_EXPORT)
#define DLL_DECL EXPORT_DECL
#else
#define DLL_DECL(x)
#endif
class DLL_DECL(BOOST_PP_EMPTY()) polymorphic_base
{
friend class boost::serialization::access;
template<class Archive>