From: kramm Date: Tue, 23 Nov 2004 17:58:23 +0000 (+0000) Subject: fixed freetype-config check (again) X-Git-Tag: release-0-6-3~135 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=12ac3d42d4e9a7f19b42536183b63fe15cec7523 fixed freetype-config check (again) --- 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