diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-01-23 22:26:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2014-01-23 22:26:00 (GMT) |
commit | e6b38af9e8fe2ddc0af5678854b6eab9d8cd321c (patch) | |
tree | 9b3d685e6e984f610b48447e165fe13f7551e3a9 /unix/configure.in | |
parent | 857ad319e1e8ef85c537ede8d628c08de911f03f (diff) | |
download | tk-e6b38af9e8fe2ddc0af5678854b6eab9d8cd321c.zip tk-e6b38af9e8fe2ddc0af5678854b6eab9d8cd321c.tar.gz tk-e6b38af9e8fe2ddc0af5678854b6eab9d8cd321c.tar.bz2 |
Fix [3606644]: Static build misses fontconfig
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/unix/configure.in b/unix/configure.in index fd817aa..5b74bb5 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -509,6 +509,18 @@ if test $tk_aqua = no; then CFLAGS=$tk_oldCFlags LIBS=$tk_oldLibs fi + dnl make sure that linking against fontconfig libraries finds Fc* symbols + if test "$found_xft" = "yes" ; then + tk_oldCFlags=$CFLAGS + CFLAGS="$CFLAGS $XINCLUDES $XFT_CFLAGS" + tk_oldLibs=$LIBS + LIBS="$tk_oldLIBS $XFT_LIBS $XLIBSW -lfontconfig" + AC_CHECK_LIB(fontconfig, FcFontSort, [ + XLIBSW="$XLIBSW -lfontconfig" + ], []) + CFLAGS=$tk_oldCFlags + LIBS=$tk_oldLibs + fi dnl print a warning if xft is unusable and was specifically requested if test "$found_xft" = "no" ; then if test "$enable_xft" = "yes" ; then |