Merge pull request #470 from arvidn/forward-port-python-fix-1.1

forward port python binding fix - 1.1
This commit is contained in:
Arvid Norberg 2016-02-09 01:38:45 -05:00
commit 896bcaf3de
2 changed files with 4 additions and 1 deletions

View File

@ -84,6 +84,9 @@
* almost completely changed the storage interface (for custom storage)
* added support for hashing pieces in multiple threads
1.0.9 release
* python binding fix for boost-1.60.0
* optimize enumeration of network interfaces on windows
* improve reliability of binding listen sockets
* support SNI in https web seeds and trackers

View File

@ -198,7 +198,7 @@ void bind_alert()
using boost::noncopyable;
#ifndef TORRENT_NO_DEPRECATE
typedef boost::shared_ptr<alert> alert_holder;
#ifndef _MSC_VER
#if BOOST_VERSION >= 106000
register_ptr_to_python<boost::shared_ptr<alert> >();
#endif
#else