merged fix from RC_0_16

This commit is contained in:
Arvid Norberg 2013-05-02 05:36:08 +00:00
parent 0a8f81cfed
commit 39e4361fff
2 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@
* fix uTP edge case where udp socket buffer fills up
* fix nagle implementation in uTP
* fix typo in Jamfile for building shared libraries
* prevent tracker exchange for magnet links before metadata is received
* fix crash in make_magnet_uri when generating links longer than 1024 characters
* fix hanging issue when closing files on windows (completing a download)

View File

@ -269,10 +269,10 @@ rule building ( properties * )
{
# hide non-external symbols
# use ms-compat because boost.asio (as of 1.47.0
# appears to have some types not fulle exported)
# appears to have some types not fully exported)
result += <cflags>-fvisibility=hidden ;
result += <cxxflags>-fvisibility-inlines-hidden ;
result += <linkflags>-W1,-Bsymbolic ;
result += <linkflags>-Wl,-Bsymbolic ;
}
return $(result) ;