X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fversion.h;h=aa14e8129cfecfa9c99ea9198670644f5b17dd94;hb=c5ceb7eba30b1e80dd0815233792bea906cb17ff;hp=d19cf37086b3d30a27bc1b28fe4e756daab49e46;hpb=245788effd044ce5f8fb380cf11066ecd61b6f2e;p=bacula%2Fbacula diff --git a/bacula/src/version.h b/bacula/src/version.h index d19cf37086..aa14e8129c 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -3,9 +3,9 @@ */ #undef VERSION -#define VERSION "2.1.4" -#define BDATE "21 February 2007" -#define LSMDATE "21Feb07" +#define VERSION "2.1.30" +#define BDATE "08 August 2007" +#define LSMDATE "08Aug07" #define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n" #define BYEAR "2007" /* year for copyright messages in progs */ @@ -19,8 +19,8 @@ many others, a complete list can be found in the file AUTHORS. This program is Free Software; you can redistribute it and/or modify it under the terms of version two of the GNU General Public - License as published by the Free Software Foundation plus additions - that are listed in the file LICENSE. + License as published by the Free Software Foundation and included + in the file LICENSE. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -43,21 +43,42 @@ #undef DEBUG #define DEBUG 1 #define TRACEBACK 1 -#define SMCHECK #define TRACE_FILE 1 /* If this is set stdout will not be closed on startup */ #define DEVELOPER 1 -#define DATA_ENCRYPTION 1 +/* + * SMCHECK does orphaned buffer checking (memory leaks) + * it can always be turned on, but has some minor performance + * penalties. + */ +#ifdef DEVELOPER +#define SMCHECK +#endif -#define USE_BSNPRINTF 1 +/* + * for fastest speed but you must have a UPS to avoid unwanted shutdowns + */ +#define SQLITE3_INIT_QUERY "PRAGMA synchronous = OFF" -/* Turn on the following flag to enable batch attribute inserts - * in the catalog. This gives a large speedup. +/* + * for more safety, but is 30 times slower than above + */ +//#define SQLITE3_INIT_QUERY "PRAGMA synchronous = NORMAL" + +/* + * This should always be on. It enables data encryption code + * providing it is configured. */ -/* #define HAVE_BATCH_FILE_INSERT 1 */ +#define DATA_ENCRYPTION 1 +/* + * This uses a Bacula specific bsnprintf rather than the sys lib + * version because it is much more secure. It should always be + * on. + */ +#define USE_BSNPRINTF 1 /* Debug flags not normally turned on */