mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-02-18 21:10:44 +01:00
module for FreeBSD by setting some missing defines (XFree86Module,
IN_MODULE) in the dri directory. Note that those missing defines should
be somewhere generic, since there are other consumers of them, but I
haven't figured out where.
23 lines
750 B
Makefile
23 lines
750 B
Makefile
libdri_la_LTLIBRARIES = libdri.la
|
|
libdri_la_CFLAGS = -I$(top_srcdir)/hw/xfree86/common \
|
|
-I$(top_srcdir)/hw/xfree86/os-support \
|
|
-I$(top_srcdir)/hw/xfree86/os-support/bus \
|
|
-I$(top_srcdir)/GL/glx \
|
|
-I$(top_srcdir)/GL/include \
|
|
-I$(top_builddir)/GL/include \
|
|
-I@MESA_SOURCE@/include \
|
|
-DHAVE_XORG_CONFIG_H \
|
|
-DXFree86Module -DIN_MODULE \
|
|
@DRIPROTO_CFLAGS@ \
|
|
@LIBDRM_CFLAGS@
|
|
libdri_la_LDFLAGS = -module -avoid-version
|
|
libdri_ladir = $(moduledir)/extensions
|
|
libdri_la_SOURCES = \
|
|
dri.c \
|
|
dri.h \
|
|
drimodule.c \
|
|
dristruct.h \
|
|
sarea.h \
|
|
xf86dri.c
|
|
|
|
sdk_HEADERS = dri.h sarea.h dristruct.h
|