summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Pinto <markybob@dipconsultants.com>2007-11-26 16:42:07 +0000
committerMarcos Pinto <markybob@dipconsultants.com>2007-11-26 16:42:07 +0000
commit0f680b43e372cf8926ef42ddde64b8d396adf60a (patch)
tree610f03d65880275e33d25077d0afcddf9fa81c62
parent7bb59d19d81600ee6818b36b8023f330f5320a9c (diff)
downloaddeluge-0f680b43e372cf8926ef42ddde64b8d396adf60a.tar.gz
deluge-0f680b43e372cf8926ef42ddde64b8d396adf60a.tar.bz2
deluge-0f680b43e372cf8926ef42ddde64b8d396adf60a.zip
tweak boost library variables
-rw-r--r--setup.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index c7ba99b1b..0660571bf 100644
--- a/setup.py
+++ b/setup.py
@@ -130,6 +130,13 @@ if not OS == "win":
elif os.path.exists(os.path.join(sysconfig.get_config_vars()['LIBDIR'], \
'libboost_thread.so')):
boost_thread = "boost_thread"
+
+ if 'boost_filesystem' not in vars():
+ boost_filesystem = "boost_filesystem-mt"
+ if 'boost_date_time' not in vars():
+ boost_date_time = "boost_date_time-mt"
+ if 'boost_thread' not in vars():
+ boost_thread = "boost_thread-mt"
elif OS == "freebsd":
boost_filesystem = "boost_filesystem"