diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-14 03:05:35 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-09-14 03:05:35 +0000 |
commit | 672afd5dad38431a55a14570632480f3ac94c7a5 (patch) | |
tree | ba9f5e07507fa6bc255e47391bc2f6cc59f1931c /configure.ac | |
parent | 47c1be4e57a71e3715d8a4ed7eb9a2a64870932c (diff) | |
download | xine-lib-672afd5dad38431a55a14570632480f3ac94c7a5.tar.gz xine-lib-672afd5dad38431a55a14570632480f3ac94c7a5.tar.bz2 |
Use pkg-config also to check for freetype2.
CVS patchset: 8251
CVS date: 2006/09/14 03:05:35
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 12c133df8..43fc21224 100644 --- a/configure.ac +++ b/configure.ac @@ -1296,9 +1296,9 @@ AC_SUBST(WAND_LIBS) dnl --------------------------------------------- dnl freetype2 lib. dnl --------------------------------------------- - -AM_PATH_FREETYPE2() - +PKG_CHECK_MODULES([FT2], [freetype2]) +AC_SUBST([FT2_CFLAGS]) +AC_SUBST([FT2_LIBS]) dnl --------------------------------------------- dnl OSS style audio interface |