summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKonstantin Ritt <ritt.ks@gmail.com>2013-09-08 06:20:43 +0300
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-08 10:29:04 +0200
commit1ae448acbd06b3770aaad2b083ac9f2384a764ca (patch)
tree1482c48d32a5db46a7f61f04b91adac58fa0727e /configure
parent3493b8058a62302382c6636a5df3b027843886d5 (diff)
Rename CFG_LIBFREETYPE to CFG_FREETYPE for consistency
Change-Id: Id1c240a849792e6196162662429a72ce2e293ba3 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 8 insertions, 8 deletions
diff --git a/configure b/configure
index 163166b5e7..0047ff29ba 100755
--- a/configure
+++ b/configure
@@ -891,7 +891,7 @@ CFG_OPENVG_ON_OPENGL=auto
CFG_EGL=auto
CFG_SSE=auto
CFG_FONTCONFIG=auto
-CFG_LIBFREETYPE=auto
+CFG_FREETYPE=auto
CFG_HARFBUZZ=no
CFG_SQL_AVAILABLE=
QT_ALL_BUILD_PARTS=" libs tools examples tests "
@@ -5213,7 +5213,7 @@ if [ "$CFG_FONTCONFIG" != "no" ]; then
QMakeVar set QMAKE_CFLAGS_FONTCONFIG "$QT_CFLAGS_FONTCONFIG"
QMakeVar set QMAKE_LIBS_FONTCONFIG "$QT_LIBS_FONTCONFIG"
CFG_FONTCONFIG=yes
- CFG_LIBFREETYPE=system
+ CFG_FREETYPE=system
else
CFG_FONTCONFIG=no
fi
@@ -5587,12 +5587,12 @@ fi
fi
# freetype support
-[ "$XPLATFORM_MINGW" = "yes" ] && [ "$CFG_LIBFREETYPE" = "auto" ] && CFG_LIBFREETYPE=no
-if [ "$CFG_LIBFREETYPE" = "auto" ]; then
+[ "$XPLATFORM_MINGW" = "yes" ] && [ "$CFG_FREETYPE" = "auto" ] && CFG_FREETYPE=no
+if [ "$CFG_FREETYPE" = "auto" ]; then
if compileTest unix/freetype "FreeType"; then
- CFG_LIBFREETYPE=system
+ CFG_FREETYPE=system
else
- CFG_LIBFREETYPE=yes
+ CFG_FREETYPE=yes
fi
fi
@@ -6012,10 +6012,10 @@ if [ "$CFG_GIF" = "no" ]; then
elif [ "$CFG_GIF" = "yes" ]; then
QT_CONFIG="$QT_CONFIG gif"
fi
-if [ "$CFG_LIBFREETYPE" = "no" ]; then
+if [ "$CFG_FREETYPE" = "no" ]; then
QT_CONFIG="$QT_CONFIG no-freetype"
QCONFIG_FLAGS="$QCONFIG_FLAGS QT_NO_FREETYPE"
-elif [ "$CFG_LIBFREETYPE" = "system" ]; then
+elif [ "$CFG_FREETYPE" = "system" ]; then
QT_CONFIG="$QT_CONFIG system-freetype"
else
QT_CONFIG="$QT_CONFIG freetype"