diff options
author | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-07-04 22:18:40 +0000 |
---|---|---|
committer | Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> | 2005-07-04 22:18:40 +0000 |
commit | 048045a9e714fc85c26028c4de36dff47644b826 (patch) | |
tree | 11bb25bf639eea792e8720d342f83064004deacc /include | |
parent | 508cdb5cb01a91b1bf3ef31da80b6b1d36286bf0 (diff) |
Add XWin DDX, make Xorg DDX conditional Make XF86VidMode and XF86Misc
conditional
Add XWin DDX
Added DDXTIME, DDXOSFATALERROR, DDXOSVERRORF and DDXBEFORERESET
Added fbcmap.c
Added miinitext.c
Added -I$(top_srcdir)/Xext/extmod to INCLUDES
Diffstat (limited to 'include')
-rw-r--r-- | include/dix-config.h.in | 12 | ||||
-rw-r--r-- | include/xwin-config.h.in | 24 |
2 files changed, 36 insertions, 0 deletions
diff --git a/include/dix-config.h.in b/include/dix-config.h.in index 7ad520509..a50f59829 100644 --- a/include/dix-config.h.in +++ b/include/dix-config.h.in @@ -26,6 +26,18 @@ /* Use OsVendorInit */ #undef DDXOSINIT +/* Use GetTimeInMillis */ +#undef DDXTIME + +/* Use OsVendorFatalError */ +#undef DDXOSFATALERROR + +/* Use OsVendorVErrorF */ +#undef DDXOSVERRORF + +/* Use ddxBeforeReset */ +#undef DDXBEFORERESET + /* Build DPMS extension */ #undef DPMSExtension diff --git a/include/xwin-config.h.in b/include/xwin-config.h.in new file mode 100644 index 000000000..d19e690a7 --- /dev/null +++ b/include/xwin-config.h.in @@ -0,0 +1,24 @@ +/* + * xwin-config.h.in + * + * This file has all defines used in the xwin ddx + * + */ +#include <dix-config.h> + +/* XFree86 based Xserver */ +#undef XFree86Server + +/* Winsock networking */ +#undef HAS_WINSOCK + +/* Cygwin has /dev/windows for signaling new win32 messages */ +#undef HAS_DEVWINDOWS + +/* Switch on debug messages */ +#undef CYGDEBUG +#undef CYGWINDOWING_DEBUG +#undef CYGMULTIWINDOW_DEBUG + +/* Do we require our own snprintf? */ +#undef NEED_SNPRINTF |