From: Carl Hetherington Date: Wed, 10 Feb 2016 12:58:32 +0000 (+0000) Subject: Fix Windows build with newer boost. X-Git-Tag: v2.6.21~14 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=3348d68228b08ddf3e3d2a995a35a33900cc3ba2;p=dcpomatic.git Fix Windows build with newer boost. --- diff --git a/wscript b/wscript index a14821b3c..844d7379f 100644 --- a/wscript +++ b/wscript @@ -111,7 +111,7 @@ def configure(conf): conf.check(lib='shlwapi', uselib_store='SHLWAPI', msg="Checking for library shlwapi") conf.check(lib='mswsock', uselib_store='MSWSOCK', msg="Checking for library mswsock") boost_lib_suffix = '-mt' - boost_thread = 'boost_thread_win32-mt' + boost_thread = 'boost_thread-mt' conf.check_cxx(fragment=""" #include \n int main() { std::locale::global (boost::locale::generator().generate ("")); }\n