mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
automake: loader: don't create an empty dri3 helper
Seems that creating an empty one does not fair too well with MacOSX's ar. Considering that all the users of the helper include it only when needed, let's reshuffle the makefile. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92985 Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Tested-by: Vinson Lee <vlee@freedesktop.org> Tested-by: Kai Wasserbäch <kai@dev.carbon-project.org> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
115f179852
commit
7157085140
1 changed files with 3 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ include Makefile.sources
|
|||
|
||||
EXTRA_DIST = SConscript
|
||||
|
||||
noinst_LTLIBRARIES = libloader.la libloader_dri3_helper.la
|
||||
noinst_LTLIBRARIES = libloader.la
|
||||
|
||||
AM_CPPFLAGS = \
|
||||
$(DEFINES) \
|
||||
|
|
@ -57,6 +57,8 @@ libloader_la_LIBADD += \
|
|||
endif
|
||||
|
||||
if HAVE_DRI3
|
||||
noinst_LTLIBRARIES += libloader_dri3_helper.la
|
||||
|
||||
libloader_dri3_helper_la_SOURCES = \
|
||||
loader_dri3_helper.c \
|
||||
loader_dri3_helper.h
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue