mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Cygwin/X: Cygwin doesn't have RTLD_LOCAL
RTLD_LOCAL is not defined on Cygwin Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
This commit is contained in:
committed by
Jon TURNEY
parent
5630ff8096
commit
7f781e780e
@@ -55,6 +55,13 @@
|
||||
#include "dispatch.h"
|
||||
#include "extension_string.h"
|
||||
|
||||
/* RTLD_LOCAL is not defined on Cygwin */
|
||||
#ifdef __CYGWIN__
|
||||
#ifndef RTLD_LOCAL
|
||||
#define RTLD_LOCAL 0
|
||||
#endif
|
||||
#endif
|
||||
|
||||
typedef struct __GLXDRIscreen __GLXDRIscreen;
|
||||
typedef struct __GLXDRIcontext __GLXDRIcontext;
|
||||
typedef struct __GLXDRIdrawable __GLXDRIdrawable;
|
||||
|
||||
Reference in New Issue
Block a user