mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-31 01:14:47 +00:00
Also fixed DarwinEQEnqueue to match changes to the callback And also use dpmsstubs.c rather than copying the code into darwin.c (cherry picked from commit 4c5c30a4beb7a427b00b18097f548876ad3c11d7)
58 lines
1.1 KiB
Makefile
58 lines
1.1 KiB
Makefile
noinst_LTLIBRARIES = libXquartz.la
|
|
AM_CFLAGS = $(XSERVER_CFLAGS) $(DIX_CFLAGS)
|
|
AM_OBJCFLAGS = $(XSERVER_CFLAGS) $(DIX_CFLAGS)
|
|
AM_CPPFLAGS = \
|
|
-DBUILD_DATE=\"$(BUILD_DATE)\" \
|
|
-DXSERVER_VERSION=\"$(VERSION)\" \
|
|
-DINXQUARTZ \
|
|
-DUSE_NEW_CLUT \
|
|
-DXFree86Server \
|
|
-I$(top_srcdir)/miext/rootless
|
|
|
|
if X11APP
|
|
X11APP_SUBDIRS = bundle
|
|
endif
|
|
|
|
SUBDIRS = . xpr $(X11APP_SUBDIRS)
|
|
DIST_SUBDIRS = xpr bundle
|
|
|
|
libXquartz_la_SOURCES = \
|
|
$(top_srcdir)/fb/fbcmap_mi.c \
|
|
$(top_srcdir)/mi/miinitext.c \
|
|
$(top_srcdir)/Xext/dpmsstubs.c \
|
|
X11Application.m \
|
|
X11Controller.m \
|
|
applewm.c \
|
|
darwin.c \
|
|
darwinEvents.c \
|
|
darwinKeyboard.c \
|
|
darwinXinput.c \
|
|
keysym2ucs.c \
|
|
pseudoramiX.c \
|
|
quartz.c \
|
|
quartzAudio.c \
|
|
quartzCocoa.m \
|
|
quartzForeground.c \
|
|
quartzKeyboard.c \
|
|
quartzPasteboard.c \
|
|
quartzStartup.c
|
|
|
|
EXTRA_DIST = \
|
|
X11Application.h \
|
|
X11Controller.h \
|
|
applewmExt.h \
|
|
darwinClut8.h \
|
|
darwin.h \
|
|
darwinEvents.h \
|
|
darwinKeyboard.h \
|
|
keysym2ucs.h \
|
|
pseudoramiX.h \
|
|
quartz.h \
|
|
quartzAudio.h \
|
|
quartzCommon.h \
|
|
quartzCursor.c \
|
|
quartzCursor.h \
|
|
quartzForeground.h \
|
|
quartzKeyboard.h \
|
|
quartzPasteboard.h
|