From 4dda0f02044a189fa8eac3900d96260c5851271f Mon Sep 17 00:00:00 2001 From: François Revel Date: Sun, 23 Jan 2011 20:31:36 +0000 Subject: - whitespace cleanup. - check if /opt/local exists and add it to search paths, so libjpeg installed by MacPort can be found, as it doesn't seem to have a pkg-config descriptor. svn path=/trunk/netsurf/; revision=11471 --- cocoa/Makefile.target | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'cocoa/Makefile.target') 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 -- cgit v1.2.3