From a48dcac07d9fc33d9201ef5fc3ae68d2f1c0f7a2 Mon Sep 17 00:00:00 2001 From: Karel Bilek Date: Sun, 18 Feb 2018 20:00:40 +0100 Subject: [PATCH] emulator: use SDL2 directly --- Makefile.include | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.include b/Makefile.include index 59d0115..c9e8fd5 100644 --- a/Makefile.include +++ b/Makefile.include @@ -90,8 +90,8 @@ CFLAGS += -DHEADLESS=1 else CFLAGS += -DHEADLESS=0 -CFLAGS += $(shell pkg-config --cflags sdl2) -LDLIBS += $(shell pkg-config --libs sdl2) +CFLAGS += -I/usr/include/SDL2 -D_REENTRANT +LDLIBS += -lSDL2 endif else