From 0f680b43e372cf8926ef42ddde64b8d396adf60a Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Mon, 26 Nov 2007 16:42:07 +0000 Subject: [PATCH] tweak boost library variables --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) 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"