# # patch "ChangeLog" # from [2db67824890b8be8b0846dad4b766d0583d82f5e] # to [36b9f1266eed5234397ca7625dc90ab1860d656e] # # patch "paths.cc" # from [c5f47c57fb2b3b2c21725816bc2ca55b6b62a32e] # to [3ea54d2be240cc811a52130f6711f3c3ae410763] # ======================================================================== --- ChangeLog 2db67824890b8be8b0846dad4b766d0583d82f5e +++ ChangeLog 36b9f1266eed5234397ca7625dc90ab1860d656e @@ -1,5 +1,7 @@ 2005-09-09 Matthew Gregan + * paths.cc (save_initial_path): Default Boost's fs::path to + fs::native grammar. * tests/t_unreadable_{db,MT}.at: Disable on Win32 for now. * paths.cc: Consistency--use WIN32 rather than _WIN32. * file_io.cc (walk_tree): Correct test for file existence. ======================================================================== --- paths.cc c5f47c57fb2b3b2c21725816bc2ca55b6b62a32e +++ paths.cc 3ea54d2be240cc811a52130f6711f3c3ae410763 @@ -73,6 +73,7 @@ initial_abs_path.set(system_path(get_current_working_dir()), false); // We still use boost::fs, so let's continue to initialize it properly. fs::initial_path(); + fs::path::default_name_check(fs::native); L(F("initial abs path is: %s") % initial_abs_path.get_but_unused()); }