From 2754f46c5dc52d3bce3b603acd57f64ad6daf49a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 6 Aug 2004 19:55:36 +0000 Subject: [PATCH] From Bob Kuehne, change the FREETYPE_INCLUDE and _LIB to hardcoded version to avoid reliance on freetype-config. --- Make/makedefs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Make/makedefs b/Make/makedefs index 7acf596c9..08f01950c 100644 --- a/Make/makedefs +++ b/Make/makedefs @@ -465,8 +465,11 @@ ifeq ($(OS),Darwin) GIF_LIBS = -lungif TIFF_LIBS = -ltiff -lz -ljpeg - FREETYPE_INCLUDE = `freetype-config --cflags` - FREETYPE_LIB = `freetype-config --libs` +# FREETYPE_INCLUDE = `freetype-config --cflags` +# FREETYPE_LIB = `freetype-config --libs` + + FREETYPE_INCLUDE = -I$(SDKPATH)/usr/X11R6/include/freetype2 + FREETYPE_LIB = -lfreetype GDAL_INCLUDES = `gdal-config --cflags` GDAL_LIBS = `gdal-config --libs`