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