]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/version.h
Remove the USE_WIN32STREAMEXTRACTION #defines (always on)
[bacula/bacula] / bacula / src / version.h
1 /*
2  *  Version $Id$
3  */
4
5 #undef  VERSION
6 #define VERSION "1.39.0"
7 #define BDATE   "13 November 2005"
8 #define LSMDATE "13Nov05"
9
10 /* Debug flags */
11 #undef  DEBUG
12 #define DEBUG 1
13 #define TRACEBACK 1
14 #define SMCHECK
15 #define TRACE_FILE 1
16
17 /* If this is set stdout will not be closed on startup */
18 #define DEVELOPER 1
19
20 /* #define USE_BSNPRINTF */
21
22 /* Debug flags not normally turned on */
23
24 /* #define FILE_SEEK 1 */  
25
26 /* #define TRACE_JCR_CHAIN 1 */
27 /* #define TRACE_RES 1 */
28 /* #define DEBUG_MEMSET 1 */
29 /* #define DEBUG_MUTEX 1 */
30
31 /* Check if header of tape block is zero before writing */
32 #define DEBUG_BLOCK_ZEROING 1
33
34 /* #define FULL_DEBUG 1 */   /* normally on for testing only */
35
36 /* Turn this on ONLY if you want all Dmsg() to append to the
37  *   trace file. Implemented mainly for Win32 ...
38  */
39 /*  #define SEND_DMSG_TO_FILE 1 */
40
41
42 /* The following are turned on for performance testing */
43 /*  
44  * If you turn on the NO_ATTRIBUTES_TEST and rebuild, the SD
45  *  will receive the attributes from the FD, will write them
46  *  to disk, then when the data is written to tape, it will
47  *  read back the attributes, but they will not be sent to
48  *  the Director. So this will eliminate: 1. the comm time
49  *  to send the attributes to the Director. 2. the time it
50  *  takes the Director to put them in the catalog database.
51  */
52 /* #define NO_ATTRIBUTES_TEST 1 */
53
54 /* 
55 * If you turn on NO_TAPE_WRITE_TEST and rebuild, the SD
56 *  will do all normal actions, but will not write to the
57 *  Volume.  Note, this means a lot of functions such as
58 *  labeling will not work, so you must use it only when 
59 *  Bacula is going to append to a Volume. This will eliminate
60 *  the time it takes to write to the Volume (not the time
61 *  it takes to do any positioning).
62 */
63 /* #define NO_TAPE_WRITE_TEST 1 */
64
65 /*
66  * If you turn on FD_NO_SEND_TEST and rebuild, the FD will
67  *  not send any attributes or data to the SD. This will
68  *  eliminate the comm time sending to the SD.
69  */
70 /* #define FD_NO_SEND_TEST 1 */