1/* $XFree86$ */
2
3/*
4 * This file contains DMX server specific defines
5 */
6
7#undef  XVendorString
8#define XVendorString	"DMX Project"
9
10/*
11 * Note 1: This is a signed int that is printed as a decimal number.
12 *         Since we want to make it human-interpretable, the fields are
13 *         defined as:
14 *         2147483648
15 *         AAbbyymmdd
16 *         AA: major version 01-20
17 *         bb: minor version 00-99
18 *         yy: year          00-99 [See Note 2]
19 *         mm: month         01-12
20 *         dd: day           01-31
21 *
22 * Note 2: The default epoch for the year is 2000.
23 *         To change the default epoch, change the DMX_VENDOR_RELEASE
24 *         macro below, bump the minor version number, and change
25 *         xdpyinfo to key off the major/minor version to determine the
26 *         new epoch.  Remember to do this on January 1, 2100 and every
27 *         100 years thereafter.
28 */
29#define DMX_VENDOR_RELEASE(major,minor,year,month,day) \
30    ((major)     * 100000000) + \
31    ((minor)     *   1000000) + \
32    ((year-2000) *     10000) + \
33    ((month)     *       100) + \
34    ((day)       *         1)
35#undef  XVendorRelease
36#define XVendorRelease	DMX_VENDOR_RELEASE(1,2,2004,6,30)
37
38EXTENSIONS_NOT_SUPPORTED = \
39	-UMULTIBUFFER \
40	-UXV \
41	-UDBE \
42	-UXF86VIDMODE \
43	-UXF86MISC \
44	-UXFreeXDGA \
45	-UXF86DRI \
46	-UMITSHM \
47	-UTOGCUP \
48	-UDPSEXT \
49	-UMITMISC \
50	-USCREENSAVER \
51	-URANDR \
52	-UXFIXES \
53	-UDAMAGE
54
55EXT_TEMP_NOT_SUPPORTED = \
56	-UFONTCACHE
57
58DMX_DEFINES = \
59	$(EXTENSIONS_NOT_SUPPORTED) \
60	$(EXT_TEMP_NOT_SUPPORTED) \
61	-UXFree86LOADER
62
63XCOMM MITSHM -- works but doesn't quite do what people think it should
64XCOMM DPMSExtension -- compiled in but is non-functional
65XCOMM MITMISC provides legacy support for X11R1,2 applications.  Disable.
66