summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@redhat.com>2005-08-29 15:27:52 +0000
committerKristian Høgsberg <krh@redhat.com>2005-08-29 15:27:52 +0000
commit6b7b687492447eaf65a871deaadd2e136ceff635 (patch)
tree8be3249b66e9777b0b1c0a5c15ca624a5008a603
parent16741eaceed78ff707531d85039d7d966f6d9234 (diff)
2005-08-29 Kristian Høgsberg <krh@redhat.com>
* configure.ac (HAVE_FREETYPE_H): Patch from Hiroyuki Ikezoe: Set HAVE_FREETYPE_217_OR_OLDER to 0 if we found freetype using pkg-config (#4223).
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d79947cf..a7564815 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-08-29 Kristian Høgsberg <krh@redhat.com>
+
+ * configure.ac (HAVE_FREETYPE_H): Patch from Hiroyuki Ikezoe: Set
+ HAVE_FREETYPE_217_OR_OLDER to 0 if we found freetype using
+ pkg-config (#4223).
+
2005-08-24 Kristian Høgsberg <krh@redhat.com>
* configure.ac: Bump release to 0.4.1
diff --git a/configure.ac b/configure.ac
index 3078a349..3b843212 100644
--- a/configure.ac
+++ b/configure.ac
@@ -152,7 +152,7 @@ PKG_CHECK_MODULES(FREETYPE, freetype2 >= $FREETYPE_MIN_VERSION,
if test "x$freetype_pkgconfig" = "xyes"; then
AC_DEFINE(HAVE_FREETYPE_H, 1, [Have FreeType2 include files])
- AC_DEFINE_UNQUOTED(HAVE_FREETYPE_217_OR_OLDER, 1, [Defines if your system has the freetype library 2.1.7 or older])
+ AC_DEFINE_UNQUOTED(HAVE_FREETYPE_217_OR_OLDER, 0, [Defines if your system has the freetype library 2.1.7 or older])
else