From 12ac3d42d4e9a7f19b42536183b63fe15cec7523 Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 23 Nov 2004 17:58:23 +0000 Subject: [PATCH] fixed freetype-config check (again) --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index ccecc0d..3179d66 100755 --- a/configure +++ b/configure @@ -10135,7 +10135,7 @@ fi OLDCPPFLAGS="${CPPFLAGS}" OLDLIBS="${LIBS}" if test "x${FREETYPE_CONFIG}" '!=' "x"; then - CPPFLAGS="$CPPFLAGS "`freetype-config --cflags` + CPPFLAGS="$CPPFLAGS "`$FREETYPE_CONFIG --cflags` else if test -d /usr/include/freetype2; then CPPFLAGS="$CPPFLAGS -I/usr/include/freetype2" else if test -d /usr/local/include/freetype2; then @@ -10533,7 +10533,7 @@ fi if test "x${HAVE_FREETYPE}" = "x1"; then if test "x${FREETYPE_CONFIG}" '!=' "x"; then - LIBS="$LIBS "`freetype-config --libs` + LIBS="$LIBS "`$FREETYPE_CONFIG --libs` else LIBS="$LIBS -lfreetype" fi -- 1.7.10.4