[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config
From: |
David Michael |
Subject: |
Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config |
Date: |
Tue, 11 Jun 2013 13:31:15 -0400 |
Hi,
A patch with a ChangeLog entry follows. I didn't see very specific
submission guidelines, so let me know if this message needs to be sent
in some more rigid format.
Thanks.
David
=== modified file 'ChangeLog'
--- ChangeLog 2013-06-07 16:36:42 +0000
+++ ChangeLog 2013-06-11 16:28:03 +0000
@@ -1,3 +1,8 @@
+2013-06-11 David Michael <address@hidden>
+
+ * configure.ac (FREETYPE): Change AC_CHECK_PROGS to AC_CHECK_TOOLS.
+ (freetype_cflags,freetype_libs): Change freetype-config to $FREETYPE.
+
2013-06-07 Andrey Borzenkov <address@hidden>
* grub-core/script/execute.c (grub_script_execute_sourcecode): Split
=== modified file 'configure.ac'
--- configure.ac 2013-06-07 14:02:16 +0000
+++ configure.ac 2013-06-11 13:54:44 +0000
@@ -944,7 +944,7 @@
if test x"$grub_mkfont_excuse" = x ; then
# Check for freetype libraries.
- AC_CHECK_PROGS([FREETYPE], [freetype-config])
+ AC_CHECK_TOOLS([FREETYPE], [freetype-config])
if test "x$FREETYPE" = x ; then
grub_mkfont_excuse=["need freetype2 library"]
fi
@@ -952,8 +952,8 @@
if test x"$grub_mkfont_excuse" = x ; then
# Check for freetype libraries.
- freetype_cflags=`freetype-config --cflags`
- freetype_libs=`freetype-config --libs`
+ freetype_cflags=`$FREETYPE --cflags`
+ freetype_libs=`$FREETYPE --libs`
SAVED_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $freetype_cflags"
AC_CHECK_HEADERS([ft2build.h], [],
- [BUG][PATCH] configure.ac: Respect the configured freetype-config, David Michael, 2013/06/07
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, Andrey Borzenkov, 2013/06/07
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, David Michael, 2013/06/07
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, Andrey Borzenkov, 2013/06/08
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, Paul Menzel, 2013/06/09
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, David Michael, 2013/06/10
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, David Michael, 2013/06/11
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, Andrey Borzenkov, 2013/06/11
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, David Michael, 2013/06/11
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, Andrey Borzenkov, 2013/06/11
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config,
David Michael <=
- Re: [BUG][PATCH] configure.ac: Respect the configured freetype-config, Vladimir 'φ-coder/phcoder' Serbinenko, 2013/06/15