summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Avoid unnecessary rewriting of BoxVersion.h to speed up MSVC build. Chris Wilson2011-04-08
|
* Actually create a VSS snapshot.Chris Wilson2011-04-08
| | | | | Clean up writer metadata and writer status after use.
* Fix double path separator in new store info filename which causes unlink()Chris Wilson2011-04-08
| | | | | to fail on Windows.
* Fix string access violation.Chris Wilson2011-04-06
|
* Add VSS: prefix to VSS log messages.Chris Wilson2011-04-06
| | | | | | | Start a snapshot set and add backup locations as volumes. Modularise IVssAsync waiting code.
* First attempt to extract some data from VSS, not useful yet.Chris Wilson2011-03-28
|
* Make ConvertFromWideString available to other modules.Chris Wilson2011-03-28
|
* Fix double path separator in account info filename, prevents its deletionChris Wilson2011-03-27
| | | | | | | on MSVC 2010/emu.cpp:unlink(). A cursory check shows that the separator is always included by MakeAccountRootDir() and this is always used to make the info filename, so this should not break anything.
* Fix compile of bbstoreaccounts on MSVC.Chris Wilson2011-03-27
|
* Improve RaidFile error logging.Chris Wilson2011-03-27
|
* Add some macros for Windows specific error logging.Chris Wilson2011-03-27
|
* Fix another off-by-one error.Chris Wilson2011-03-27
|
* Move backupstore common code to its own library, libbackupstore.Chris Wilson2011-03-27
| | | | | Add projects for bbstored and bbstoreaccounts.
* Add inline definition of ftruncate to fix MSVC compile.Chris Wilson2011-03-27
|
* Check for ftruncate() function, not present on MSVC.Chris Wilson2011-03-27
|
* Detect whether we have sys/file.h and don't include it if not, fixes MSVC ↵Chris Wilson2011-03-27
| | | | compile issue.
* Work around lack of unistd.h on MSVC.Chris Wilson2011-03-27
|
* Auto-generate classes for bbstored for MSVC.Chris Wilson2011-03-27
|
* Remove SUO file that doesn't need to be in version control.Chris Wilson2011-03-27
|
* Pass a C++ string instead of a char pointer for efficiency.Chris Wilson2011-03-27
|
* Fix off-by-one causing incomplete normalisation of relative paths.Chris Wilson2011-03-27
|
* Fix abort if the local data directory doesn't exist.Chris Wilson2011-03-27
|
* Fix off-by-one errors caught by MSVC.Chris Wilson2011-03-27
|
* Fix off-by-one error in path translation.Chris Wilson2011-03-26
|
* Remove unwanted definitions from solution.Chris Wilson2011-03-26
|
* Add a solution and project for building on MSVC 2010.Chris Wilson2011-03-26
|
* Ignore BoxVersion.h which is not version controlled.Chris Wilson2011-03-26
|
* Eliminate nested macros to fix compile with MSVC 2010.Chris Wilson2011-03-26
|
* There is no S_FIFO on Windows, fixes MSVC compile.Chris Wilson2011-03-26
|
* Avoid conflicting declarations of O_BINARY on MSVC compiles.Chris Wilson2011-03-26
|
* Ensure external text strings are declared as const, to fix compile errorChris Wilson2011-03-26
| | | | | on MSVC 2010.
* Generate lib/common/BoxPortsAndFiles.h for MSVC builds.Chris Wilson2011-03-26
|
* Define WINVER and _WIN32_WINNT to Windows 2000 to avoid importing WSAPollChris Wilson2011-03-26
| | | | | | from winsock2.h, which conflicts with our definition of struct pollfd, on Windows Vista and above.
* Remove RemoteControl.exe from Box Backup.Chris Wilson2011-03-26
|
* Fix errors reported by default Unix notify script on backup-ok events,Chris Wilson2011-03-17
| | | | | thanks to Steve Haeck for the bug report.
* Hopefully fix crash on unknown commands when readline is not supportedChris Wilson2011-03-01
| | | | | by bbackupqyuery, thanks to Achim J Latz for reporting and helping to debug.
* Instruct to build PCRE with shared libs disabled, to avoid dependencyChris Wilson2011-03-01
| | | | | on DLL in a directory not in the path.
* Restore the newline in the includes variable, it is actually requiredChris Wilson2011-02-28
| | | | | even though it causes a warning.
* Fix build on solaris/gcc by checking whether -rdynamic is supported or not.Chris Wilson2011-02-27
|
* Update to OpenSSL 1.0.0d and PCRE 8.12.Chris Wilson2011-02-27
|
* Update build docs to show how to build with readline using pdcursesChris Wilson2011-02-27
| | | | | on Windows.
* Test whether pdcurses is required to compile with readline support.Chris Wilson2011-02-27
|
* Hopefully fix divide by zero error on rate limiting stream.Chris Wilson2011-02-26
|
* Debugging for Sune Molgaard's issue with non-existent files beingChris Wilson2011-02-23
| | | | | detected as unattached and crashing later in CheckUnattachedObjects().
* Fix backtrace by linking to libexecinfo when execinfo.h is found.James O'Gorman2011-02-19
|
* Don't install "subdir" targets, they'll need special instructions.Chris Wilson2011-01-31
|
* Fix the new compile failures introduced by the previous botched readline fix.Chris Wilson2011-01-23
|
* Fix compile errors using readline on win32.Chris Wilson2011-01-21
|
* Separate the readline-specific stuff into CommandCompletion.cpp so thatChris Wilson2011-01-21
| | | | | Boxi doesn't have to depend on readline to include BackupQueries.o.
* Move TemporaryDirectory.h into Utils.h and Utils.cpp to avoid duplicateChris Wilson2011-01-21
| | | | | definitions of inline functions.