mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-05 09:58:21 +02:00
This patch blacklists the load "drm" line, moves some functions in dri module
links dri module against libdrm, and removes the X copy of libdrm
(cherry picked from fd91630b73 commit)
23 lines
762 B
Makefile
23 lines
762 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 \
|
|
@DRIPROTO_CFLAGS@ \
|
|
@LIBDRM_CFLAGS@ \
|
|
@GL_CFLAGS@
|
|
libdri_la_LDFLAGS = -module -avoid-version @LIBDRM_LIBS@
|
|
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
|