21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include "config.h"
#include "add.h"
#include <assert.h>
#include <dirent.h>
#include "cygsup.h"
/*
** WARNING: For Fossil version 1.x this value was always zero. For Fossil
** 2.x, it will probably always be one. When this value is zero,
** files in the checkout will not be moved by the "mv" command and
** files in the checkout will not be removed by the "rm" command.
**
** If the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option is used,
** the "mv-rm-files" setting will be consulted instead of using
** this value.
**
** To retain the Fossil version 1.x behavior when using Fossil 2.x,
** the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option must be used
** -AND- the "mv-rm-files" setting must be set to zero.
*/
#ifndef FOSSIL_MV_RM_FILE
#define FOSSIL_MV_RM_FILE (0)
#endif
|
|
|
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#include "config.h"
#include "add.h"
#include <assert.h>
#include <dirent.h>
#include "cygsup.h"
/*
** WARNING: For Fossil version x.x this value was always zero. For Fossil-NG
** it will probably always be one. When this value is zero,
** files in the checkout will not be moved by the "mv" command and
** files in the checkout will not be removed by the "rm" command.
**
** If the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option is used,
** the "mv-rm-files" setting will be consulted instead of using
** this value.
**
** To retain the Fossil version 2.x behavior when using Fossil-NG
** the FOSSIL_ENABLE_LEGACY_MV_RM compile-time option must be used
** -AND- the "mv-rm-files" setting must be set to zero.
*/
#ifndef FOSSIL_MV_RM_FILE
#define FOSSIL_MV_RM_FILE (0)
#endif
|