summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/gnome/libgnomeprint/0001-configure-use-pkgconfig-for-freetype.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-gnome/recipes-gnome/gnome/libgnomeprint/0001-configure-use-pkgconfig-for-freetype.patch')
-rw-r--r--meta-gnome/recipes-gnome/gnome/libgnomeprint/0001-configure-use-pkgconfig-for-freetype.patch37
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gnome/libgnomeprint/0001-configure-use-pkgconfig-for-freetype.patch b/meta-gnome/recipes-gnome/gnome/libgnomeprint/0001-configure-use-pkgconfig-for-freetype.patch
new file mode 100644
index 000000000..174985a7e
--- /dev/null
+++ b/meta-gnome/recipes-gnome/gnome/libgnomeprint/0001-configure-use-pkgconfig-for-freetype.patch
@@ -0,0 +1,37 @@
1From ed31fd89f4c77d89390774d29427898a85b25ab1 Mon Sep 17 00:00:00 2001
2From: Koen Kooi <koen@dominion.thruhere.net>
3Date: Fri, 1 Aug 2014 13:58:36 +0200
4Subject: [PATCH] configure: use pkgconfig for freetype
5
6Upstream-status: Pending
7Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
8---
9 configure.in | 12 +++++-------
10 1 file changed, 5 insertions(+), 7 deletions(-)
11
12diff --git a/configure.in b/configure.in
13index 729278d..e569429 100644
14--- a/configure.in
15+++ b/configure.in
16@@ -164,13 +164,11 @@ dnl Checking for freetype2
17 dnl =================================
18 FREETYPE_LIBS=
19 FREETYPE_CFLAGS=
20-AC_PATH_PROG(FREETYPE_CONFIG, freetype-config, no)
21-if test "x$FREETYPE_CONFIG" = "xno" ; then
22- AC_MSG_ERROR(You need FreeType2 (freetype-devel v 2.x package) for this version of libgnomeprint)
23-else
24- FREETYPE_CFLAGS=`$FREETYPE_CONFIG --cflags`
25- FREETYPE_LIBS=`$FREETYPE_CONFIG --libs`
26-fi
27+PKG_CHECK_MODULES(FREETYPE2, freetype2,
28+ FREETYPE_CFLAGS="$CFLAGS $FREETYPE2_CFLAGS"
29+ FREETYPE_LIBS="$LIBS $FREETYPE2_LIBS",
30+ AC_MSG_ERROR([*** Unable to find FreeType2 library (http://www.freetype.org/)])
31+)
32
33 libgnomeprint_save_ldflags=$LDFLAGS
34 LDFLAGS="$LDFLAGS $FREETYPE_LIBS"
35--
361.9.0
37