# # patch "ChangeLog" # from [bd62ed9c670a1759002a2077e7ab89a0e4e15257] # to [1c8b6c6688c73357a0d73b6c8ae562bca7b1002f] # # patch "Makefile.am" # from [eb0c17674ef2141d561015d818b3b3b206a437aa] # to [426dec17aebde93efaec30455fd895f6adf01d63] # # patch "paths.hh" # from [ef31142a8d9a16fccafb372ada74cc8a48b4ebb6] # to [dff7a05dac7f17af9054dd1331de7203e3db0810] # ======================================================================== --- ChangeLog bd62ed9c670a1759002a2077e7ab89a0e4e15257 +++ ChangeLog 1c8b6c6688c73357a0d73b6c8ae562bca7b1002f @@ -1,5 +1,11 @@ 2005-08-25 Nathaniel Smith + * Makefile.am (UNIX_PLATFORM_SOURCES): Add unix/fs.cc + (WIN32_PLATFORM_SOURCES): Add win32/fs.cc + * paths.hh (bookkeeping_path): Implement default constructor. + +2005-08-25 Nathaniel Smith + * rcs_import.cc (import_cvs_repo): * lua.cc (default_rcfilename): * diff_patch.cc (get_version): Small compile fixes. ======================================================================== --- Makefile.am eb0c17674ef2141d561015d818b3b3b206a437aa +++ Makefile.am 426dec17aebde93efaec30455fd895f6adf01d63 @@ -195,11 +195,11 @@ UNIX_PLATFORM_SOURCES = \ unix/read_password.cc unix/get_system_flavour.cc unix/process.cc unix/terminal.cc \ - unix/platform_netsync.cc unix/inodeprint.cc + unix/platform_netsync.cc unix/inodeprint.cc unix/fs.cc WIN32_PLATFORM_SOURCES = \ win32/read_password.cc win32/get_system_flavour.cc win32/process.cc win32/terminal.cc \ - win32/platform_netsync.cc win32/inodeprint.cc + win32/platform_netsync.cc win32/inodeprint.cc win32/fs.cc # primaries ======================================================================== --- paths.hh ef31142a8d9a16fccafb372ada74cc8a48b4ebb6 +++ paths.hh dff7a05dac7f17af9054dd1331de7203e3db0810 @@ -99,7 +99,7 @@ class bookkeeping_path : public any_path { public: - bookkeeping_path(); + bookkeeping_path() {}; // path _should_ contain the leading MT/ // and _should_ look like an internal path // usually you should just use the / operator as a constructor!