Fixed linker issue (missing -lfontconfig) when configured with

--enable-xft (STR #2570)


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@8468 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2011-02-24 10:04:59 +00:00
parent 57210e8c78
commit 15e2f5e76d
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
CHANGES IN FLTK 1.1.11
- Fixed linker issue (missing -lfontconfig) when configured with
--enable-xft (STR #2570)
- Fixed fluid desktop file (STR #2328)
- Fixed OpenGL overlay drawing (STR #2437)
- Fixed Fl_Tabs selection border drawing, if tabs are at the bottom

View File

@ -873,6 +873,7 @@ case $uname in
CPPFLAGS="`$FTCONFIG --cflags` $CPPFLAGS"
CXXFLAGS="`$FTCONFIG --cflags` $CXXFLAGS"
AC_CHECK_LIB(fontconfig, FcPatternCreate)
AC_CHECK_HEADER(X11/Xft/Xft.h,
AC_CHECK_LIB(Xft, XftDrawCreate,
AC_DEFINE(USE_XFT)