summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cocoa/Makefile.target12
1 files changed, 9 insertions, 3 deletions
diff --git a/cocoa/Makefile.target b/cocoa/Makefile.target
index 584fa7e04..fdb063460 100644
--- a/cocoa/Makefile.target
+++ b/cocoa/Makefile.target
@@ -29,8 +29,14 @@
CFLAGS += -I/usr/X11/include
CFLAGS += -I/usr/include/libxml2
- CFLAGS += -Icocoa/PSMTabBarControl
- CFLAGS += -include cocoa/Prefix.pch
+ CFLAGS += -Icocoa/PSMTabBarControl
+ CFLAGS += -include cocoa/Prefix.pch
+
+ifneq ($(wildcard /opt/local*),)
+ # libjpeg is there when installed from MacPort.
+ LDFLAGS += -L/opt/local/lib
+ CFLAGS += -I/opt/local/include
+endif
VERSION_FULL := $(shell sed -n '/"/{s/.*"\(.*\)".*/\1/;p;}' desktop/version.c)
VERSION_MAJ := $(shell sed -n '/_major/{s/.* = \([0-9]*\).*/\1/;p;}' desktop/version.c)
@@ -163,4 +169,4 @@ NetSurf.app/Contents/Info.plist: cocoa/res/NetSurf-Info.plist cocoa/Makefile.tar
-e 's/$${MACOSX_DEPLOYMENT_TARGET}/$(MACOSX_VERSION)/' \
-e 's/$${NETSURF_VERSION}/$(VERSION_FULL)/' \
-e 's/$${NETSURF_SHORT_VERSION}/$(VERSION_MAJ).$(VERSION_MIN)/' \
- < cocoa/res/NetSurf-Info.plist > NetSurf.app/Contents/Info.plist \ No newline at end of file
+ < cocoa/res/NetSurf-Info.plist > NetSurf.app/Contents/Info.plist