blob: fecd0121c3207e8a0c4e768b04011e593b3661bd [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 72ad76841d87e857428693d812a961935284ac62 Mon Sep 17 00:00:00 2001
2From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
3Date: Thu, 12 Feb 2015 15:57:47 +0100
4Subject: [PATCH] configure-ac: do not check for freetype-config
5MIME-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8
9freetype-config is not allowed in our environment - see also binconfig-disabled
10
11Upstream-Status: inappropriate [OE specific]
12
13Signed-off-by: Andreas MΓΌller <schnitzeltony@googlemail.com>
14---
15 configure.ac | 7 -------
16 1 file changed, 7 deletions(-)
17
18diff --git a/configure.ac b/configure.ac
19index 26812b6..abec714 100644
20--- a/configure.ac
21+++ b/configure.ac
22@@ -647,13 +647,6 @@ if test "x$fontconfig_ok" = xno; then
23 fi
24
25
26-AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no)
27-if test "x$FREETYPE_CONFIG" != "xno" ; then
28- AC_MSG_CHECKING([for freetype libraries])
29- FREETYPE_LIBS=`$FREETYPE_CONFIG --libs`
30- AC_MSG_RESULT($FREETYPE_LIBS)
31-fi
32-AC_SUBST(FREETYPE_LIBS)
33
34
35 ##########################################
36--
371.9.3
38