mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-17 20:38:06 +02:00
There were a few spots left in the source that were using the --with-mesa-source defined headers or the now removed $(top_srcdir)/GL directory. These aren't needed anymore as all the necessary source for GLX is in $(top_srcdir)/glx. Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
17 lines
358 B
Makefile
17 lines
358 B
Makefile
noinst_LTLIBRARIES = libCGLCore.la
|
|
AM_CFLAGS = $(XSERVER_CFLAGS) $(DIX_CFLAGS)
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/glx \
|
|
-I$(top_srcdir)/hw/xquartz \
|
|
-I$(top_srcdir)/hw/xquartz/xpr \
|
|
-I$(top_srcdir)/miext/damage
|
|
|
|
libCGLCore_la_SOURCES = \
|
|
indirect.c \
|
|
capabilities.c \
|
|
visualConfigs.c
|
|
|
|
EXTRA_DIST = \
|
|
capabilities.h \
|
|
visualConfigs.h
|