Disable pkg-config on macOS
This commit is contained in:
parent
eb60dbce0d
commit
abf6e5632c
3
Makefile
3
Makefile
@ -68,8 +68,11 @@ endif
|
|||||||
|
|
||||||
# Find libraries with pkg-config if available.
|
# Find libraries with pkg-config if available.
|
||||||
ifneq (, $(shell which pkg-config))
|
ifneq (, $(shell which pkg-config))
|
||||||
|
# But not on macOS, it's annoying
|
||||||
|
ifneq ($(PLATFORM),Darwin)
|
||||||
PKG_CONFIG := pkg-config
|
PKG_CONFIG := pkg-config
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(PLATFORM),windows32)
|
ifeq ($(PLATFORM),windows32)
|
||||||
# To force use of the Unix version instead of the Windows version
|
# To force use of the Unix version instead of the Windows version
|
||||||
|
Loading…
Reference in New Issue
Block a user