From Bob Kuehne, change the FREETYPE_INCLUDE and _LIB to hardcoded

version to avoid reliance on freetype-config.
This commit is contained in:
Robert Osfield
2004-08-06 19:55:36 +00:00
parent 9e797a8408
commit 2754f46c5d

View File

@@ -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`