diff options
author | Keith Packard <keithp@keithp.com> | 2003-06-25 23:21:03 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2003-06-25 23:21:03 +0000 |
commit | 79621aa5c786cdd4d14b43b58888979ef0d2a4c6 (patch) | |
tree | a71057793cdd8e9dd07a327de66f0e8170c900af /configure.in | |
parent | 2b45ef3a8a164648647eba1265db6a3d10ea7bad (diff) |
Lean on autoconf to find useful FreeType functions (bug 95)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 21652b18..20b9dce1 100644 --- a/configure.in +++ b/configure.in @@ -113,12 +113,15 @@ AC_SUBST(FREETYPE_LIBS) AC_SUBST(FREETYPE_CFLAGS) # -# Check to see whether we have FT_Get_First_Char(), new in 2.0.9 +# Check to see whether we have: +# FT_Get_Next_Char +# FT_Get_BDF_Property +# FT_Get_PS_Font_Info # fontconfig_save_libs=$LIBS LIBS="$LIBS $FREETYPE_LIBS" -AC_CHECK_FUNCS(FT_Get_First_Char) +AC_CHECK_FUNCS(FT_Get_Next_Char FT_Get_BDF_Property FT_Get_PS_Font_Info) LIBS=$fontconfig_save_libs # |