Imported Upstream version 1.15.1
[deb_xorg-server.git] / include / site.h
CommitLineData
a09e091a
JB
1/************************************************************
2
3Copyright 1987, 1998 The Open Group
4
5Permission to use, copy, modify, distribute, and sell this software and its
6documentation for any purpose is hereby granted without fee, provided that
7the above copyright notice appear in all copies and that both that
8copyright notice and this permission notice appear in supporting
9documentation.
10
11The above copyright notice and this permission notice shall be included in
12all copies or substantial portions of the Software.
13
14THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
18AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
21Except as contained in this notice, the name of The Open Group shall not be
22used in advertising or otherwise to promote the sale, use or other dealings
23in this Software without prior written authorization from The Open Group.
24
25Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
26
27 All Rights Reserved
28
29Permission to use, copy, modify, and distribute this software and its
30documentation for any purpose and without fee is hereby granted,
31provided that the above copyright notice appear in all copies and that
32both that copyright notice and this permission notice appear in
33supporting documentation, and that the name of Digital not be
34used in advertising or publicity pertaining to distribution of the
35software without specific, written prior permission.
36
37DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
38ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
39DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
40ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
41WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
42ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
43SOFTWARE.
44
45********************************************************/
46
47#ifndef SITE_H
48#define SITE_H
49/*
50 * The vendor string identifies the vendor responsible for the
51 * server executable.
52 */
53#ifndef VENDOR_STRING
54#define VENDOR_STRING "The X.Org Foundation"
55#endif
56
57/*
58 * The vendor release number identifies, for the purpose of submitting
59 * traceable bug reports, the release number of software produced
60 * by the vendor.
61 */
62#ifndef VENDOR_RELEASE
63#define VENDOR_RELEASE 6600
64#endif
65
66/*
67 * The following constants are provided solely as a last line of defense. The
68 * normal build ALWAYS overrides them using a special rule given in
69 * server/dix/Imakefile. If you want to change either of these constants,
70 * you should set the DefaultFontPath or DefaultRGBDatabase configuration
71 * parameters.
72 * DO NOT CHANGE THESE VALUES OR THE DIX IMAKEFILE!
73 */
74#ifndef COMPILEDDEFAULTFONTPATH
75#define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/"
76#endif
77
78/*
79 * The following constants contain default values for all of the variables
80 * that can be initialized on the server command line or in the environment.
81 */
82#define COMPILEDDEFAULTFONT "fixed"
83#define COMPILEDCURSORFONT "cursor"
84#ifndef COMPILEDDISPLAYCLASS
85#define COMPILEDDISPLAYCLASS "MIT-unspecified"
86#endif
87#define DEFAULT_TIMEOUT 60 /* seconds */
88#define DEFAULT_KEYBOARD_CLICK 0
89#define DEFAULT_BELL 50
90#define DEFAULT_BELL_PITCH 400
91#define DEFAULT_BELL_DURATION 100
92#define DEFAULT_AUTOREPEAT TRUE
93#define DEFAULT_AUTOREPEATS {\
94 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\
95 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,\
96 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,\
97 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
98
99#define DEFAULT_LEDS 0x0 /* all off */
100#define DEFAULT_LEDS_MASK 0xffffffff /* 32 */
101#define DEFAULT_INT_RESOLUTION 1000
102#define DEFAULT_INT_MIN_VALUE 0
103#define DEFAULT_INT_MAX_VALUE 100
104#define DEFAULT_INT_DISPLAYED 0
105
106#define DEFAULT_PTR_NUMERATOR 2
107#define DEFAULT_PTR_DENOMINATOR 1
108#define DEFAULT_PTR_THRESHOLD 4
109
110#define DEFAULT_SCREEN_SAVER_TIME (10 * (60 * 1000))
111#define DEFAULT_SCREEN_SAVER_INTERVAL (10 * (60 * 1000))
112#define DEFAULT_SCREEN_SAVER_BLANKING PreferBlanking
113#define DEFAULT_SCREEN_SAVER_EXPOSURES AllowExposures
114#ifndef DEFAULT_ACCESS_CONTROL
115#define DEFAULT_ACCESS_CONTROL TRUE
116#endif
117
118/* Default logging parameters. */
119#ifndef DEFAULT_LOG_VERBOSITY
120#define DEFAULT_LOG_VERBOSITY 0
121#endif
122#ifndef DEFAULT_LOG_FILE_VERBOSITY
123#define DEFAULT_LOG_FILE_VERBOSITY 3
124#endif
125
126#endif /* SITE_H */