-
Notifications
You must be signed in to change notification settings - Fork 9
/
local_options.h
60 lines (47 loc) · 2.19 KB
/
local_options.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// This file contains detailed readme for each local_options option.
/****************************************************************************
* EVERY time you change ANYTHING in this file, RECOMPILE from scratch. *
* (type "make clean" then "make" on a UNIX system) Failure to do so may *
* cause the driver to behave oddly. *
****************************************************************************/
#ifndef _LOCAL_OPTIONS_H_
#define _LOCAL_OPTIONS_H_
/****************************************************************************
* COMPAT *
****************************************************************************/
#undef NO_ADD_ACTION
#undef NO_SNOOP
#undef NO_WIZARDS
#undef NO_LIGHT
#define OLD_ED
#undef ED_INDENT_CASE
#define ED_INDENT_SPACES 4
#undef ED_USE_TABS
#define ED_TAB_WIDTH 8
#undef RECEIVE_ED
#define RESTRICTED_ED
#define SENSIBLE_MODIFIERS
/****************************************************************************
* MISCELLANEOUS *
****************************************************************************/
#define DEFAULT_PRAGMAS PRAGMA_WARNINGS + PRAGMA_SAVE_TYPES + PRAGMA_ERROR_CONTEXT + PRAGMA_OPTIMIZE
#define SAVE_EXTENSION ".o"
#undef PRIVS
#undef NO_SHADOWS
#undef USE_ICONV
#undef IPV6
/****************************************************************************
* PACKAGES *
****************************************************************************/
// PACKAGES are moved to CMAKE options, please don't try to add #define PACKAGE_* here.
/****************************************************************************
* PACKAGES CONFIGS *
****************************************************************************/
// configs for PACKAGE_COMPRESS
#define SAVE_GZ_EXTENSION ".o.gz"
// configs for PACKAGE_UIDS
#define AUTO_SETEUID
#undef AUTO_TRUST_BACKBONE
// configs for PACKAGE_PARSE
#define PARSE_DEBUG /* Only take effect in DEBUG build */
#endif /* _LOCAL_OPTIONS_H_ */