forked from premiere/premiere-libtorrent
merged compatibility patch from RC_0_16
This commit is contained in:
parent
bd8a467ad9
commit
646f761c32
|
@ -67,6 +67,20 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// backwards compatibility with older versions of boost
|
||||||
|
#if !defined BOOST_SYMBOL_EXPORT && !defined BOOST_SYMBOL_IMPORT
|
||||||
|
# ifdef _MSC_VER
|
||||||
|
# define BOOST_SYMBOL_EXPORT __declspec(dllexport)
|
||||||
|
# define BOOST_SYMBOL_IMPORT __declspec(dllimport)
|
||||||
|
# elif __GNU__ >= 4
|
||||||
|
# define BOOST_SYMBOL_EXPORT __attribute__((visibility("default")))
|
||||||
|
# define BOOST_SYMBOL_IMPORT __attribute__((visibility("default")))
|
||||||
|
# else
|
||||||
|
# define BOOST_SYMBOL_EXPORT
|
||||||
|
# define BOOST_SYMBOL_IMPORT
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined TORRENT_BUILDING_SHARED
|
#if defined TORRENT_BUILDING_SHARED
|
||||||
# define TORRENT_EXPORT BOOST_SYMBOL_EXPORT
|
# define TORRENT_EXPORT BOOST_SYMBOL_EXPORT
|
||||||
#elif defined TORRENT_LINKING_SHARED
|
#elif defined TORRENT_LINKING_SHARED
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
// builds all boost.asio source as a separate compilation unit
|
// builds all boost.asio source as a separate compilation unit
|
||||||
#include <boost/asio/impl/src.hpp>
|
#include <boost/version.hpp>
|
||||||
|
|
||||||
|
#if BOOST_VERSION >= 104610
|
||||||
|
#include <boost/asio/impl/src.hpp>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue