From c038d8262659810e5d7db2211c264fd637da3577 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sat, 29 Apr 2006 12:13:21 +0000 Subject: [PATCH] - Integrate Howard's VSS patch. Tweak it a bit. VSS now works in the MinGW build with the exception that there is a problem with accented characters -- i.e. there is some mapping problem with wide characters. - The code no longer compiles with Microsoft VC++. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@2986 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/kes-1.39 | 6 ++++++ bacula/src/console/console.c | 4 ++++ bacula/src/version.h | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/bacula/kes-1.39 b/bacula/kes-1.39 index 0e391218c1..651b525d9a 100644 --- a/bacula/kes-1.39 +++ b/bacula/kes-1.39 @@ -2,6 +2,12 @@ Kern Sibbald General: +29Apr06 +- Integrate Howard's VSS patch. Tweak it a bit. VSS now + works in the MinGW build with the exception that there + is a problem with accented characters -- i.e. there is + some mapping problem with wide characters. +- The code no longer compiles with Microsoft VC++. 28Apr06 - Start implementing Christopher's St.Bernard code. - Add Christopher's mods for opening files. diff --git a/bacula/src/console/console.c b/bacula/src/console/console.c index 3d70727185..7e4534c5b8 100644 --- a/bacula/src/console/console.c +++ b/bacula/src/console/console.c @@ -49,6 +49,10 @@ int rl_catch_signals; #else extern int rl_catch_signals; #endif +#ifdef HAVE_MINGW +/* Remove when we have real lib in src/lib */ +int enable_vss; +#endif /* Imported functions */ int authenticate_director(JCR *jcr, DIRRES *director, CONRES *cons); diff --git a/bacula/src/version.h b/bacula/src/version.h index ba951eb5c9..3f7d9def04 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -4,8 +4,8 @@ #undef VERSION #define VERSION "1.39.10" -#define BDATE "28 April 2006" -#define LSMDATE "28Apr06" +#define BDATE "29 April 2006" +#define LSMDATE "29Apr06" /* Debug flags */ #undef DEBUG -- 2.39.5