From eef64dc5f4d998518c314a765bc0a9db7f6fdf9b Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 20 Jul 2013 10:56:37 +0200 Subject: [PATCH 23/23] configure: make freetype a configurable option Allows disabling freetype support at configure time. Upstream-Status: Pending Signed-off-by: Martin Jansa --- configure | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure b/configure index 2a0be04..64fbaeb 100755 --- a/configure +++ b/configure @@ -1994,6 +1994,13 @@ while [ "$#" -gt 0 ]; do UNKNOWN_OPT=yes fi ;; + freetype) + if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ] || [ "$VAL" = "system" ]; then + CFG_LIBFREETYPE="$VAL" + else + UNKNOWN_OPT=yes + fi + ;; gtkstyle) if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then CFG_QGTKSTYLE="$VAL" -- 1.8.3.2