From 95fa1cbd36e1ab03a47aa02f809c8117c9613b50 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 21 May 2007 22:58:08 +0000 Subject: [PATCH] fix for libboost 1.34 and remove debian-only settings which are no longer needed with this 1.34 fix. --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index e8d2a68e0..d6f69fb88 100644 --- a/setup.py +++ b/setup.py @@ -120,10 +120,9 @@ deluge_core = Extension('deluge_core', include_dirs = ['./libtorrent', './libtorrent/include', './libtorrent/include/libtorrent', '/usr/include/python' + python_version], - libraries = ['boost_filesystem', 'boost_date_time', - 'boost_program_options', 'boost_regex', - 'boost_serialization', 'boost_thread', - 'z', 'pthread'], + libraries = ['boost_filesystem-mt', 'boost_date_time-mt', + 'boost_regex-mt', 'boost_serialization-mt', + 'boost_thread-mt', 'z', 'pthread'], extra_compile_args = EXTRA_COMPILE_ARGS, sources = ['src/deluge_core.cpp', 'libtorrent/src/alert.cpp',