From a0bd3ed5e996705aa0111faddad8ec61c9539c7c Mon Sep 17 00:00:00 2001 From: nikp123 Date: Wed, 6 Dec 2023 18:00:52 +0100 Subject: [PATCH] Fix missing SDL_gfx pkg-config check --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a334b30..ff07408 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,8 @@ CC ?= gcc PREFIX ?= /usr/local -SDL_CFLAGS := $(shell pkg-config --cflags sdl 2>&1) -SDL_LIBS = $(shell pkg-config --libs sdl) +SDL_CFLAGS := $(shell pkg-config --cflags sdl SDL_gfx 2>&1) +SDL_LIBS = $(shell pkg-config --libs sdl SDL_gfx) LIB_VERSION = 1.2