mirror of
https://github.com/libretro/RetroArch
synced 2025-03-17 10:21:26 +00:00
Fix build when HAVE_XML isn't defined.
This commit is contained in:
parent
225647d0e3
commit
f5c5da8959
13
Makefile
13
Makefile
@ -163,7 +163,12 @@ ifeq ($(HAVE_SDL), 1)
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_OPENGL), 1)
|
||||
OBJ += gfx/gl.o gfx/gfx_context.o gfx/fonts/gl_font.o gfx/fonts/gl_raster_font.o gfx/math/matrix.o
|
||||
OBJ += gfx/gl.o \
|
||||
gfx/gfx_context.o \
|
||||
gfx/fonts/gl_font.o \
|
||||
gfx/fonts/gl_raster_font.o \
|
||||
gfx/math/matrix.o \
|
||||
gfx/state_tracker.o
|
||||
|
||||
ifeq ($(HAVE_KMS), 1)
|
||||
OBJ += gfx/context/drm_egl_ctx.o
|
||||
@ -239,12 +244,6 @@ ifeq ($(HAVE_XML), 1)
|
||||
DEFINES += $(XML_CFLAGS)
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_XML), 1)
|
||||
OBJ += gfx/state_tracker.o
|
||||
else ifeq ($(HAVE_CG), 1)
|
||||
OBJ += gfx/state_tracker.o
|
||||
endif
|
||||
|
||||
ifeq ($(HAVE_DYLIB), 1)
|
||||
LIBS += $(DYLIB_LIB)
|
||||
endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user