summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-08-17 17:57:38 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-08-17 17:57:38 +0000
commit69a7a16fd7d6dfcc21f3c4d508a505e38c93b1f6 (patch)
tree494f2caf2fa87ca93c16c2a87ce37829124a175e /configure.ac
parent40288378e9dd2f75ab43cea8c2ae82a25061ae53 (diff)
fixes http://bugzilla.gnome.org/show_bug.cgi?id=90839
Original commit message from CVS: fixes http://bugzilla.gnome.org/show_bug.cgi?id=90839
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index b1036523..d0c60e6b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -815,6 +815,13 @@ AC_ARG_ENABLE(examples,
esac],
[BUILD_EXAMPLES=yes]) dnl Default value
+dnl seeking needs freetype, so check for it here
+AC_CHECK_FT2(2.0.9,HAVE_FT2=yes,HAVE_FT2=no)
+dnl make the HAVE_FT2 variable available to automake and Makefile.am
+AM_CONDITIONAL(HAVE_FT2, test "x$HAVE_FT2" = "xyes")
+AC_SUBST(FT2_CFLAGS)
+AC_SUBST(FT2_LIBS)
+
dnl ################################################
dnl # Set defines according to variables set above #
dnl ################################################