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).
diff --git a/ChangeLog b/ChangeLog
index d79947c..a756481 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 3078a34..3b84321 100644
--- a/configure.ac
+++ b/configure.ac
@@ -152,7 +152,7 @@
 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