how do i pkg-config

This commit is contained in:
Lior Halphon 2020-04-27 23:32:29 +03:00
parent 51177cd80d
commit 3bc68fef8f
1 changed files with 2 additions and 2 deletions

View File

@ -131,8 +131,8 @@ ifeq (,$(PKG_CONFIG))
SDL_CFLAGS += -I/usr/local/include SDL_CFLAGS += -I/usr/local/include
SDL_LDFLAGS += -lportaudio SDL_LDFLAGS += -lportaudio
else else
SDL_CFLAGS += $(shell $(PKG_CONFIG) --cflags portaudio) SDL_CFLAGS += $(shell $(PKG_CONFIG) --cflags libportaudio19)
SDL_LDFLAGS += $(shell $(PKG_CONFIG) --libs portaudio) SDL_LDFLAGS += $(shell $(PKG_CONFIG) --libs libportaudio19)
endif endif
endif endif