diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-08-17 17:57:38 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-08-17 17:57:38 +0000 |
commit | de7a0d3426727f219e69e1c9838bffd97cc6682d (patch) | |
tree | 4e4c8e1ad66e898f23af1aff32803d072272cfa2 /configure.ac | |
parent | 34a9b439a6d085222cfe9c647774f47e00d74a51 (diff) | |
download | gst-plugins-bad-de7a0d3426727f219e69e1c9838bffd97cc6682d.tar.gz gst-plugins-bad-de7a0d3426727f219e69e1c9838bffd97cc6682d.tar.bz2 gst-plugins-bad-de7a0d3426727f219e69e1c9838bffd97cc6682d.zip |
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.ac | 7 |
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 ################################################ |