]> git.saurik.com Git - cycript.git/blob - WebKit.mk
Somewhat better iconv handling on the Mac when MacPorts is in the path (aka Horrible...
[cycript.git] / WebKit.mk
1 ifneq ($(shell pkg-config webkit-1.0 --modversion 2>/dev/null),)
2 flags += $(shell pkg-config --cflags webkit-1.0)
3 library += $(shell pkg-config --libs webkit-1.0)
4 include Execute.mk
5 else
6 ifneq ($(shell pkg-config WebKitGtk --modversion 2>/dev/null),)
7 flags += $(shell pkg-config --cflags WebKitGtk)
8 library += $(shell pkg-config --libs WebKitGtk)
9 include Execute.mk
10 endif
11 endif