b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync/*
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Copyright 2005 Red Hat Inc., Raleigh, North Carolina.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync *
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * All Rights Reserved.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync *
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Permission is hereby granted, free of charge, to any person obtaining
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * a copy of this software and associated documentation files (the
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * "Software"), to deal in the Software without restriction, including
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * without limitation on the rights to use, copy, modify, merge,
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * publish, distribute, sublicense, and/or sell copies of the Software,
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * and to permit persons to whom the Software is furnished to do so,
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * subject to the following conditions:
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync *
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * The above copyright notice and this permission notice (including the
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * next paragraph) shall be included in all copies or substantial
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * portions of the Software.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync *
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * SOFTWARE.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync */
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync/*
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Authors:
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Kevin E. Martin <kem@redhat.com>
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync *
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync */
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync/** \file
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Provide configuration #define's and #undef's to build Xdmx in X.Org's
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * modular source tree.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync */
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#ifndef DMX_CONFIG_H
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#define DMX_CONFIG_H
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#include <dix-config.h>
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync/*
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Note 1: This is a signed int that is printed as a decimal number.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Since we want to make it human-interpretable, the fields are
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * defined as:
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * 2147483648
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * AAbbyymmdd
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * AA: major version 01-20
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * bb: minor version 00-99
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * yy: year 00-99 [See Note 2]
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * mm: month 01-12
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * dd: day 01-31
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync *
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * Note 2: The default epoch for the year is 2000.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * To change the default epoch, change the DMX_VENDOR_RELEASE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * macro below, bumb the minor version number, and change
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * xdpyinfo to key off the major/minor version to determine the
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * new epoch. Remember to do this on January 1, 2100 and every
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync * 100 years thereafter.
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync */
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#define DMX_VENDOR_RELEASE(major,minor,year,month,day) \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync ((major) * 100000000) + \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync ((minor) * 1000000) + \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync ((year-2000) * 10000) + \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync ((month) * 100) + \
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync ((day) * 1)
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#define VENDOR_RELEASE DMX_VENDOR_RELEASE(1,2,2004,6,30)
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#define VENDOR_STRING "DMX Project"
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync/* Enable the DMX extension */
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#define DMXEXT
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync/* Disable the extensions that are not currently supported */
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef BEZIER
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef PEXEXT
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef MULTIBUFFER
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XV
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XIE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef DBE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XF86VIDMODE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XF86MISC
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XFreeXDGA
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XF86DRI
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef MITSHM
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef TOGCUP
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef DPSEXT
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef MITMISC
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef SCREENSAVER
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef RANDR
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XFIXES
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef DAMAGE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef COMPOSITE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef FONTCACHE
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#undef XFree86LOADER
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync
b8e299dddd091ae24e0c08c45d91b8f937bd14d2vboxsync#endif /* DMX_CONFIG_H */