diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-03-08 20:57:08 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-03-09 00:25:53 +0100 |
| commit | b6f3afcad13523038bc42eef9ddecb58a2ae8e70 (patch) | |
| tree | c9f470292380a46bd8450122cd2ae1160ae31b77 /wscript | |
| parent | a04c9c056235b136853953dd12e6079d3a4129b1 (diff) | |
Fix home_directory() with non-US-English pathnames on Windows (#2203).
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -173,6 +173,7 @@ def configure(conf): conf.check(lib='winmm', uselib_store='WINMM', msg="Checking for library winmm") conf.check(lib='ksuser', uselib_store='KSUSER', msg="Checking for library ksuser") conf.check(lib='setupapi', uselib_store='SETUPAPI', msg="Checking for library setupapi") + conf.check(lib='uuid', uselib_store='UUID', msg="Checking for library uuid") boost_lib_suffix = '-mt-x32' if conf.options.target_windows_32 else '-mt-x64' boost_thread = 'boost_thread' + boost_lib_suffix conf.check_cxx(fragment=""" |
