From: Nelson, E. - 2 <eri...@ba...> - 2010-06-03 14:42:27
|
Fernando Pelliccioni wrote: > 1. Dependencies to OpenSSL. > The "boost/network/protocol/http/impl/sync_connection_base.hpp" depends on "boost/network/protocol/http/impl/sync_connection_base.hpp" and the las depends on "boost/asio/ssl.hpp" I had this problem as well... I just commented out the stuff I didn't need in sync_connection_base. In my opinion a better fix is to factor https_sync_connection out into a different header file that is only #included if the user includes, for example, a hypothetical protocol/https/client.hpp This was is very unsurprising... never use anything from protocol/https, and you'll never have a dependency on SSL. Erik |