mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-08 16:30:19 +01: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:
parent
5630ff8096
commit
7f781e780e
1 changed files with 7 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue