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
commit8c5355498c3f1be675ee9479f8fa6b31d881a165 (patch)
tree221741d65a5573c50fc09fa143f0b86942795c4c
parent4dad638a41c041bd661a69af17ff0753ceeb3595 (diff)
downloaddeluge-8c5355498c3f1be675ee9479f8fa6b31d881a165.tar.gz
deluge-8c5355498c3f1be675ee9479f8fa6b31d881a165.tar.bz2
deluge-8c5355498c3f1be675ee9479f8fa6b31d881a165.zip
tweak boost library variables
-rw-r--r--setup.py9
-rw-r--r--src/common.py2
2 files changed, 9 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index bca4ec235..0660571bf 100644
--- a/setup.py
+++ b/setup.py
@@ -28,7 +28,7 @@
NAME = "deluge"
FULLNAME = "Deluge BitTorrent Client"
-VERSION = "0.5.6.95"
+VERSION = "0.5.6.96"
AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul"
EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com"
DESCRIPTION = "A GTK BitTorrent client written in Python and C++"
@@ -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"
diff --git a/src/common.py b/src/common.py
index 82a64eaa7..afdffce61 100644
--- a/src/common.py
+++ b/src/common.py
@@ -32,7 +32,7 @@ import os
import xdg.BaseDirectory
PROGRAM_NAME = "Deluge"
-PROGRAM_VERSION = "0.5.6.95"
+PROGRAM_VERSION = "0.5.6.96"
CLIENT_CODE = "DE"
CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.')))