]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/version.h
Update version
[bacula/bacula] / bacula / src / version.h
index 45fc78a3ae13fa1beaf591e562de520c24f5b4fd..59ef1f2ca17ef5d1432e9ab5d564c796d391a407 100644 (file)
@@ -3,24 +3,24 @@
  */
 
 #undef  VERSION
-#define VERSION "1.39.31"
-#define BDATE   "14 December 2006"
-#define LSMDATE "14Dec06"
+#define VERSION "2.3.6"
+#define BDATE   "16 October 2007"
+#define LSMDATE "16Oct07"
 
-#define PROG_COPYRIGHT "Copyright (C) %d-2006 Free Software Foundation Europe e.V.\n"
-#define BYEAR "2006"       /* year for copyright messages in progs */
+#define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
+#define BYEAR "2007"       /* year for copyright messages in progs */
 
 /*
    Bacula® - The Network Backup Solution
 
-   Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
+   Copyright (C) 2000-2007 Free Software Foundation Europe e.V.
 
    The main author of Bacula is Kern Sibbald, with contributions from
    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
 #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
 
+/*
+ * SMCHECK does orphaned buffer checking (memory leaks)
+ *  it can always be turned on, but has some minor performance
+ *  penalties.
+ */
+#ifdef DEVELOPER
+#define SMCHECK
+#endif
+
+/* 
+ * for fastest speed but you must have a UPS to avoid unwanted shutdowns
+ */
+#define SQLITE3_INIT_QUERY "PRAGMA synchronous = OFF"
+
+/*
+ * 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 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
 
-/* Disk file seeking is now controled by CAP_POSITIONBLOCKS */
-
 /* Debug flags not normally turned on */
 
 /* #define TRACE_JCR_CHAIN 1 */