mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 08:58:10 +02:00
The meson build file for Apple GLX is not listed in the EXTRA_DIST make variable and therefore isn't shipped as part of the release tarball, so meson builds from the tarball will fail. Add the file to EXTRA_DIST to ensure it is included in the tarball. Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
46 lines
974 B
Makefile
46 lines
974 B
Makefile
EXTRA_DIST = \
|
|
RELEASE_NOTES \
|
|
meson.build
|
|
|
|
noinst_LTLIBRARIES = libappleglx.la
|
|
|
|
AM_CFLAGS = \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/glx \
|
|
-I$(top_builddir)/src/mesa \
|
|
-I$(top_srcdir)/src/mesa \
|
|
-I$(top_srcdir)/src/mapi \
|
|
-I$(top_builddir)/src/mapi/glapi \
|
|
-I$(top_srcdir)/src/mapi/glapi \
|
|
$(VISIBILITY_CFLAGS) \
|
|
$(DEFINES) \
|
|
$(X11_INCLUDES)
|
|
|
|
libappleglx_la_SOURCES = \
|
|
apple_cgl.c \
|
|
apple_cgl.h \
|
|
appledri.c \
|
|
appledri.h \
|
|
appledristr.h \
|
|
apple_glapi.c \
|
|
apple_glx.c \
|
|
apple_glx_context.c \
|
|
apple_glx_context.h \
|
|
apple_glx_drawable.c \
|
|
apple_glx_drawable.h \
|
|
apple_glx.h \
|
|
apple_glx_log.c \
|
|
apple_glx_log.h \
|
|
apple_glx_pbuffer.c \
|
|
apple_glx_pixmap.c \
|
|
apple_glx_surface.c \
|
|
apple_visual.c \
|
|
apple_visual.h \
|
|
apple_xgl_api.h \
|
|
apple_xgl_api_read.c \
|
|
apple_xgl_api_stereo.c \
|
|
apple_xgl_api_viewport.c \
|
|
glx_empty.c
|
|
|
|
libappleglx_la_LDFLAGS = -lXplugin -framework ApplicationServices -framework CoreFoundation
|