xserver/miext/sync/Makefile.am
Keith Packard aaf0e29619 Disable DRI3 and sync fence FD functions if xshmfence isn't available
Make sure the server can build when the xshmfence library isn't present

Signed-off-by: Keith Packard <keithp@keithp.com>
2013-11-04 18:53:36 -08:00

20 lines
288 B
Makefile

noinst_LTLIBRARIES = libsync.la
AM_CFLAGS = $(DIX_CFLAGS)
AM_CPPFLAGS =
if XORG
sdk_HEADERS = misync.h misyncstr.h misyncshm.h
endif
XSHMFENCE_SRCS = misyncshm.c
libsync_la_SOURCES = \
misync.c \
misync.h \
misyncstr.h
if XSHMFENCE
libsync_la_SOURCES += $(XSHMFENCE_SRCS)
endif