link to openssl libs

This commit is contained in:
Alon Zakai 2007-05-29 09:27:35 +00:00
commit c12e23ca95
3 changed files with 2 additions and 7 deletions

Binary file not shown.

View file

@ -124,11 +124,11 @@ else:
# Ubuntu possible. # Ubuntu possible.
if boosttype == "nomt": if boosttype == "nomt":
librariestype = ['boost_filesystem', 'boost_date_time', librariestype = ['boost_filesystem', 'boost_date_time',
'boost_thread', 'z', 'pthread'] 'boost_thread', 'z', 'pthread', 'ssl']
print 'Libraries nomt' print 'Libraries nomt'
elif boosttype == "mt": elif boosttype == "mt":
librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', librariestype = ['boost_filesystem-mt', 'boost_date_time-mt',
'boost_thread-mt', 'z', 'pthread'] 'boost_thread-mt', 'z', 'pthread', 'ssl']
print 'Libraries mt' print 'Libraries mt'
deluge_core = Extension('deluge_core', deluge_core = Extension('deluge_core',

View file

@ -46,11 +46,6 @@
#include "libtorrent/extensions/metadata_transfer.hpp" #include "libtorrent/extensions/metadata_transfer.hpp"
#include "libtorrent/extensions/ut_pex.hpp" #include "libtorrent/extensions/ut_pex.hpp"
extern "C"
{
#include "openssl/sha.h"
#include "openssl/bn.h"
}
using namespace boost::filesystem; using namespace boost::filesystem;
using namespace libtorrent; using namespace libtorrent;