From 3bc68fef8f47721e4f062510792c2eeb1c849ff7 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Mon, 27 Apr 2020 23:32:29 +0300 Subject: [PATCH] how do i pkg-config --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index aebda2d..1b5daac 100644 --- a/Makefile +++ b/Makefile @@ -131,8 +131,8 @@ ifeq (,$(PKG_CONFIG)) SDL_CFLAGS += -I/usr/local/include SDL_LDFLAGS += -lportaudio else -SDL_CFLAGS += $(shell $(PKG_CONFIG) --cflags portaudio) -SDL_LDFLAGS += $(shell $(PKG_CONFIG) --libs portaudio) +SDL_CFLAGS += $(shell $(PKG_CONFIG) --cflags libportaudio19) +SDL_LDFLAGS += $(shell $(PKG_CONFIG) --libs libportaudio19) endif endif