mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Merge branch 'master' into XACE-SELINUX
Conflicts: Xext/EVI.c Xext/bigreq.c Xext/cup.c Xext/dpms.c Xext/fontcache.c Xext/mitmisc.c Xext/xcmisc.c Xext/xf86bigfont.c Xext/xtest.c configure.ac dbe/dbe.c hw/darwin/darwin.h hw/darwin/darwinEvents.c hw/darwin/iokit/xfIOKit.h hw/darwin/iokit/xfIOKitCursor.c hw/darwin/quartz/fullscreen/fullscreen.c hw/darwin/quartz/fullscreen/quartzCursor.c hw/darwin/quartz/quartz.c hw/darwin/quartz/quartzCommon.h hw/darwin/quartz/quartzCursor.c hw/darwin/quartz/xpr/dri.c hw/darwin/quartz/xpr/dristruct.h hw/darwin/quartz/xpr/xprCursor.c hw/darwin/quartz/xpr/xprFrame.c hw/xfree86/modes/xf86RandR12.c include/cursor.h miext/rootless/rootlessCommon.h miext/rootless/rootlessScreen.c miext/rootless/rootlessWindow.c render/picturestr.h Trying to pick up the pieces from the darwin churn here...
This commit is contained in:
@@ -148,6 +148,9 @@
|
||||
/* Define to 1 if you have version 2.2 (or newer) of the drm library */
|
||||
#undef HAVE_LIBDRM_2_2
|
||||
|
||||
/* Have Quartz */
|
||||
#undef XQUARTZ
|
||||
|
||||
/* Define to 1 if you have the `m' library (-lm). */
|
||||
#undef HAVE_LIBM
|
||||
|
||||
|
||||
@@ -41,28 +41,6 @@ extern int MaybeDeliverEventsToClient(
|
||||
|
||||
extern int ProcWarpPointer(ClientPtr /* client */);
|
||||
|
||||
#if 0
|
||||
extern void
|
||||
#ifdef XKB
|
||||
CoreProcessKeyboardEvent (
|
||||
#else
|
||||
ProcessKeyboardEvent (
|
||||
#endif
|
||||
xEvent * /* xE */,
|
||||
DeviceIntPtr /* keybd */,
|
||||
int /* count */);
|
||||
|
||||
extern void
|
||||
#ifdef XKB
|
||||
CoreProcessPointerEvent (
|
||||
#else
|
||||
ProcessPointerEvent (
|
||||
#endif
|
||||
xEvent * /* xE */,
|
||||
DeviceIntPtr /* mouse */,
|
||||
int /* count */);
|
||||
#endif
|
||||
|
||||
extern int EventSelectForWindow(
|
||||
WindowPtr /* pWin */,
|
||||
ClientPtr /* client */,
|
||||
|
||||
@@ -120,7 +120,7 @@ extern void DeleteClientFontStuff(ClientPtr /*client*/);
|
||||
|
||||
/* Quartz support on Mac OS X pulls in the QuickDraw
|
||||
framework whose InitFonts function conflicts here. */
|
||||
#ifdef __DARWIN__
|
||||
#ifdef __APPLE__
|
||||
#define InitFonts Darwin_X_InitFonts
|
||||
#endif
|
||||
extern void InitFonts(void);
|
||||
|
||||
@@ -167,7 +167,7 @@ extern XID FakeClientID(
|
||||
|
||||
/* Quartz support on Mac OS X uses the CarbonCore
|
||||
framework whose AddResource function conflicts here. */
|
||||
#ifdef __DARWIN__
|
||||
#ifdef __APPLE__
|
||||
#define AddResource Darwin_X_AddResource
|
||||
#endif
|
||||
extern Bool AddResource(
|
||||
|
||||
@@ -444,7 +444,7 @@ SOFTWARE.
|
||||
|
||||
#endif /* luna */
|
||||
|
||||
#if (defined(SVR4) && defined(__i386__)) || \
|
||||
#if (defined(SVR4) && (defined(__i386__) || (defined(__i386)))) || \
|
||||
defined(__alpha__) || defined(__alpha) || \
|
||||
defined(__i386__) || defined(__QNX__) || \
|
||||
defined(__s390x__) || defined(__s390__)
|
||||
|
||||
@@ -26,17 +26,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
#ifndef SWAPREQ_H
|
||||
#define SWAPREQ_H 1
|
||||
|
||||
/* The first two are in misc.h */
|
||||
#if 0
|
||||
extern void SwapLongs (
|
||||
CARD32 * /* list */,
|
||||
unsigned long /* count */);
|
||||
|
||||
extern void SwapShorts (
|
||||
short * /* list */,
|
||||
unsigned long /* count */);
|
||||
#endif
|
||||
|
||||
extern void SwapColorItem(
|
||||
xColorItem * /* pItem */);
|
||||
|
||||
|
||||
@@ -122,7 +122,7 @@ extern int DestroySubwindows(
|
||||
|
||||
/* Quartz support on Mac OS X uses the HIToolbox
|
||||
framework whose ChangeWindowAttributes function conflicts here. */
|
||||
#ifdef __DARWIN__
|
||||
#ifdef __APPLE__
|
||||
#define ChangeWindowAttributes Darwin_X_ChangeWindowAttributes
|
||||
#endif
|
||||
extern int ChangeWindowAttributes(
|
||||
@@ -133,7 +133,7 @@ extern int ChangeWindowAttributes(
|
||||
|
||||
/* Quartz support on Mac OS X uses the HIToolbox
|
||||
framework whose GetWindowAttributes function conflicts here. */
|
||||
#ifdef __DARWIN__
|
||||
#ifdef __APPLE__
|
||||
#define GetWindowAttributes(w,c,x) Darwin_X_GetWindowAttributes(w,c,x)
|
||||
extern void Darwin_X_GetWindowAttributes(
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user