]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/version.h
Restore win32 dir from Branch-5.2 and update it
[bacula/bacula] / bacula / src / version.h
1 #ifndef VERSION_H
2 #define VERSION_H
3 #undef  VERSION
4
5 #define COMMUNITY 1      /* Define to create a Windows community binary */
6
7 /* Note: there can be only *one* VERSION in this file */
8 #define VERSION "9.0.7"
9 #define BDATE   "24 February 2018"
10 #define LSMDATE "24Feb18"
11
12 #define RELEASE 1   /* Use ONLY in rpms */
13
14 #define PROG_COPYRIGHT "Copyright (C) %d-2018 Kern Sibbald.\n"
15 #define BYEAR "2018"       /* year for copyright messages in progs */
16
17 /*
18  * Versions of packages needed to build Bacula components
19  */
20 #define DEPKGS_QT_VERSION  "01Jan13"
21 #define DEPKGS_VERSION     "26Jun14"
22
23 /*
24    Bacula(R) - The Network Backup Solution
25
26    Copyright (C) 2000-2017 Kern Sibbald
27
28    The original author of Bacula is Kern Sibbald, with contributions
29    from many others, a complete list can be found in the file AUTHORS.
30
31    You may use this file and others of this release according to the
32    license defined in the LICENSE file, which includes the Affero General
33    Public License, v3.0 ("AGPLv3") and some additional permissions and
34    terms pursuant to its AGPLv3 Section 7.
35
36    This notice must be preserved when any source code is 
37    conveyed and/or propagated.
38
39    Bacula(R) is a registered trademark of Kern Sibbald.
40 */
41
42 /* Debug flags */
43 #undef  DEBUG
44 #define DEBUG 1
45 #define TRACEBACK 1
46 #define TRACE_FILE 1
47 #define ENTER_LEAVE 1
48
49 /* If this is set stdout will not be closed on startup */
50 /* #define DEVELOPER 1 */
51
52 /* adjust DEVELOPER_MODE for status command */
53 #ifdef DEVELOPER
54 # define DEVELOPER_MODE 1
55 #else
56 # define DEVELOPER_MODE 0
57 #endif
58
59 /*
60  * SMCHECK does orphaned buffer checking (memory leaks)
61  *  it can always be turned on, but has some minor performance
62  *  penalties.
63  */
64 #ifdef DEVELOPER
65 # define SMCHECK
66 #endif
67
68 /*
69  * _USE_LOCKMGR does lock/unlock mutex tracking (dead lock)
70  *   it can always be turned on, but we advise to use it only
71  *   for debug
72  */
73 # ifndef _USE_LOCKMGR
74 #  define _USE_LOCKMGR
75 # endif /* _USE_LOCKMGR */
76 /*
77  * Enable priority management with the lock manager
78  *
79  * Note, turning this on will cause the Bacula SD to abort if
80  *  mutexes are executed out of order, which could lead to a
81  *  deadlock.  However, note that this is not necessarily a
82  *  deadlock, so turn this on only for debugging.
83  */
84 #define USE_LOCKMGR_PRIORITY
85
86 /*
87  * Enable thread verification before kill
88  *
89  * Note, this extra check have a high cost when using
90  * dozens of thread, so turn this only for debugging.
91  */
92 /* #define USE_LOCKMGR_SAFEKILL */
93
94 #if !HAVE_LINUX_OS && !HAVE_SUN_OS && !HAVE_DARWIN_OS && !HAVE_FREEBSD_OS && !HAVE_KFREEBSD_OS
95 # undef _USE_LOCKMGR
96 #endif
97
98 /*
99  * USE_VTAPE is a dummy tape driver. This is useful to
100  *  run regress test.
101  */
102 #ifdef HAVE_LINUX_OS
103 # define USE_VTAPE
104 #endif
105
106 /*
107  * USE_FTP is a ftp driver for the FD using curl.
108  */
109 // #define USE_FTP
110
111 /*
112  * for fastest speed but you must have a UPS to avoid unwanted shutdowns
113  */
114 //#define SQLITE3_INIT_QUERY "PRAGMA synchronous = OFF"
115
116 /*
117  * for more safety, but is 30 times slower than above
118  */
119 #define SQLITE3_INIT_QUERY "PRAGMA synchronous = NORMAL"
120    
121 /*
122  * This should always be on. It enables data encryption code
123  *  providing it is configured.
124  */
125 #define DATA_ENCRYPTION 1
126
127 /*
128  * This uses a Bacula specific bsnprintf rather than the sys lib
129  *  version because it is much more secure. It should always be
130  *  on.
131  */
132 #define USE_BSNPRINTF 1
133
134 /* Debug flags not normally turned on */
135
136 /* #define TRACE_JCR_CHAIN 1 */
137 /* #define TRACE_RES 1 */
138 /* #define DEBUG_MEMSET 1 */
139 /* #define DEBUG_MUTEX 1 */
140 /* #define DEBUG_BLOCK_CHECKSUM 1 */
141
142 #define BDEMO ""
143
144 /*
145  * Set SMALLOC_SANITY_CHECK to zero to turn off, otherwise
146  *  it is the maximum memory malloced before Bacula will
147  *  abort.  Except for debug situations, this should be zero
148  */
149 #define SMALLOC_SANITY_CHECK 0  /* 500000000  0.5 GB max */
150
151
152 /* Check if header of tape block is zero before writing */
153 /* #define DEBUG_BLOCK_ZEROING 1 */
154
155 /* #define FULL_DEBUG 1 */   /* normally on for testing only */
156
157 /* Turn this on ONLY if you want all Dmsg() to append to the
158  *   trace file. Implemented mainly for Win32 ...
159  */
160 /*  #define SEND_DMSG_TO_FILE 1 */
161
162
163 /* The following are turned on for performance testing */
164 /*
165  * If you turn on the NO_ATTRIBUTES_TEST and rebuild, the SD
166  *  will receive the attributes from the FD, will write them
167  *  to disk, then when the data is written to tape, it will
168  *  read back the attributes, but they will not be sent to
169  *  the Director. So this will eliminate: 1. the comm time
170  *  to send the attributes to the Director. 2. the time it
171  *  takes the Director to put them in the catalog database.
172  */
173 /* #define NO_ATTRIBUTES_TEST 1 */
174
175 /*
176 * If you turn on NO_TAPE_WRITE_TEST and rebuild, the SD
177 *  will do all normal actions, but will not write to the
178 *  Volume.  Note, this means a lot of functions such as
179 *  labeling will not work, so you must use it only when
180 *  Bacula is going to append to a Volume. This will eliminate
181 *  the time it takes to write to the Volume (not the time
182 *  it takes to do any positioning).
183 */
184 /* #define NO_TAPE_WRITE_TEST 1 */
185
186 /*
187  * If you turn on FD_NO_SEND_TEST and rebuild, the FD will
188  *  not send any attributes or data to the SD. This will
189  *  eliminate the comm time sending to the SD.
190  */
191 /* #define FD_NO_SEND_TEST 1 */
192
193 #endif  /* VERSION_H */