]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/version.h
Update copyright
[bacula/bacula] / bacula / src / version.h
1 /*
2  *  Version $Id$
3  */
4
5 #undef  VERSION
6 #define VERSION "1.39.29"
7 #define BDATE   "20 November 2006"
8 #define LSMDATE "20Nov06"
9 #define PROG_COPYRIGHT "Copyright (C) 2000-%s Free Software Foundation Europe e.V.\n"
10 #define BYEAR "2006"       /* year for copyright messages in progs */
11
12 /*
13    Bacula® - The Network Backup Solution
14
15    Copyright (C) 2000-2006 Free Software Foundation Europe e.V.
16
17    The main author of Bacula is Kern Sibbald, with contributions from
18    many others, a complete list can be found in the file AUTHORS.
19    This program is Free Software; you can redistribute it and/or
20    modify it under the terms of version two of the GNU General Public
21    License as published by the Free Software Foundation plus additions
22    that are listed in the file LICENSE.
23
24    This program is distributed in the hope that it will be useful, but
25    WITHOUT ANY WARRANTY; without even the implied warranty of
26    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27    General Public License for more details.
28
29    You should have received a copy of the GNU General Public License
30    along with this program; if not, write to the Free Software
31    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
32    02110-1301, USA.
33
34    Bacula® is a registered trademark of John Walker.
35    The licensor of Bacula is the Free Software Foundation Europe
36    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
37    Switzerland, email:ftf@fsfeurope.org.
38 */
39
40
41 /* Debug flags */
42 #undef  DEBUG
43 #define DEBUG 1
44 #define TRACEBACK 1
45 #define SMCHECK
46 #define TRACE_FILE 1
47
48 /* If this is set stdout will not be closed on startup */
49 #define DEVELOPER 1
50
51 #define USE_BSNPRINTF 1
52
53 /* Debug flags not normally turned on */
54
55 /* #define FILE_SEEK 1 */
56
57 /* #define TRACE_JCR_CHAIN 1 */
58 /* #define TRACE_RES 1 */
59 /* #define DEBUG_MEMSET 1 */
60 /* #define DEBUG_MUTEX 1 */
61
62 /*
63  * Set SMALLOC_SANITY_CHECK to zero to turn off, otherwise
64  *  it is the maximum memory malloced before Bacula will
65  *  abort.  Except for debug situations, this should be zero
66  */
67 #define SMALLOC_SANITY_CHECK 0  /* 500000000  0.5 GB max */
68
69
70 /* Check if header of tape block is zero before writing */
71 /* #define DEBUG_BLOCK_ZEROING 1 */
72
73 /* #define FULL_DEBUG 1 */   /* normally on for testing only */
74
75 /* Turn this on ONLY if you want all Dmsg() to append to the
76  *   trace file. Implemented mainly for Win32 ...
77  */
78 /*  #define SEND_DMSG_TO_FILE 1 */
79
80
81 /* The following are turned on for performance testing */
82 /*  
83  * If you turn on the NO_ATTRIBUTES_TEST and rebuild, the SD
84  *  will receive the attributes from the FD, will write them
85  *  to disk, then when the data is written to tape, it will
86  *  read back the attributes, but they will not be sent to
87  *  the Director. So this will eliminate: 1. the comm time
88  *  to send the attributes to the Director. 2. the time it
89  *  takes the Director to put them in the catalog database.
90  */
91 /* #define NO_ATTRIBUTES_TEST 1 */
92
93 /* 
94 * If you turn on NO_TAPE_WRITE_TEST and rebuild, the SD
95 *  will do all normal actions, but will not write to the
96 *  Volume.  Note, this means a lot of functions such as
97 *  labeling will not work, so you must use it only when 
98 *  Bacula is going to append to a Volume. This will eliminate
99 *  the time it takes to write to the Volume (not the time
100 *  it takes to do any positioning).
101 */
102 /* #define NO_TAPE_WRITE_TEST 1 */
103
104 /*
105  * If you turn on FD_NO_SEND_TEST and rebuild, the FD will
106  *  not send any attributes or data to the SD. This will
107  *  eliminate the comm time sending to the SD.
108  */
109 /* #define FD_NO_SEND_TEST 1 */