mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 03:44:06 +00:00
Brought back the code removed in that commit so that we can bring back Cygwin support. Small changes are done in the process of resolving conflicts against the current head. Some checks have not been reverted, because they were not necessary anymore. Signed-off-by: b-aaz <b-aazbsd@proton.me>
29 lines
570 B
Plaintext
29 lines
570 B
Plaintext
/*
|
|
* xwin-config.h.in
|
|
*
|
|
* This file has all defines used in the xwin ddx
|
|
*
|
|
*/
|
|
|
|
#ifndef XSERVER_XWIN_CONFIG_H
|
|
#define XSERVER_XWIN_CONFIG_H
|
|
|
|
#include <dix-config.h>
|
|
|
|
/* Winsock networking */
|
|
#mesondefine HAS_WINSOCK
|
|
|
|
/* Cygwin has /dev/windows for signaling new win32 messages */
|
|
#mesondefine HAS_DEVWINDOWS
|
|
|
|
/* Switch on debug messages */
|
|
#mesondefine ENABLE_DEBUG
|
|
|
|
/* Default log location */
|
|
#mesondefine DEFAULT_LOGDIR
|
|
|
|
/* Whether we should re-locate the root to where the executable lives */
|
|
#mesondefine RELOCATE_PROJECTROOT
|
|
|
|
#endif /* XSERVER_XWIN_CONFIG_H */
|