Use pkg-config on OS/X when Fink is available.
This commit is contained in:
parent
e6345b1238
commit
74665132bb
9
Makefile
9
Makefile
|
@ -60,10 +60,14 @@ else
|
|||
endif
|
||||
|
||||
ifeq ($(UNAME_S),Darwin) # Mac OS X/MacPorts stuff
|
||||
ifeq ($(shell fink -V > /dev/null 2>&1 && echo ok),ok)
|
||||
PORTS_CFLAGS := $(shell pkg-config --cflags libusb)
|
||||
PORTS_LDFLAGS := $(shell pkg-config --libs libusb) -ltermcap -pthread
|
||||
else
|
||||
PORTS_CFLAGS := -I/opt/local/include
|
||||
PORTS_LDFLAGS := -L/opt/local/lib
|
||||
else
|
||||
ifneq ($(filter $(UNAME_S),OpenBSD NetBSD DragonFly),)
|
||||
endif
|
||||
else ifneq ($(filter $(UNAME_S),OpenBSD NetBSD DragonFly),)
|
||||
PORTS_CFLAGS := $(shell pkg-config --cflags libusb)
|
||||
PORTS_LDFLAGS := $(shell pkg-config --libs libusb) -ltermcap -pthread
|
||||
else
|
||||
|
@ -71,7 +75,6 @@ else
|
|||
PORTS_LDFLAGS :=
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
INCLUDES = -I. -Isimio -Iformats -Itransport -Idrivers -Iutil -Iui
|
||||
GCC_CFLAGS = -O1 -Wall -Wno-char-subscripts -ggdb
|
||||
|
|
Loading…
Reference in New Issue