2.2.1:
* Fix bug with mutltibyte fonts being really tiny. (Ben Jansens)
+ * Stop using Utf8 drawing routines for Xft. These (Ben Jansens)
+ don't work at all for high-ascii letters, which are
+ used in the non-english locales.
+
* Fix menu redraw bug when dragging them off-screen or (Scott Moynes)
under other menus, with Xft fonts.
dnl Check for Xft extension support and proper library files.
XFT=""
-XFT_UTF8=""
+dnl XFT_UTF8=""
AC_MSG_CHECKING([whether to build support for the Xft extension])
AC_ARG_ENABLE(
xft, [ --enable-xft enable support of the Xft extension [default=yes]])
LIBS="$LIBS -lXft"
dnl Check for utf8 support in the Xft library
- AC_CHECK_LIB(Xft, XftDrawStringUtf8,
- XFT_UTF8="yes",
- ),
+ dnl AC_CHECK_LIB(Xft, XftDrawStringUtf8,
+ dnl XFT_UTF8="yes",
+ dnl),
+ ,
AC_MSG_RESULT([no])
)
fi
if test "$XFT" = "yes"; then
AC_DEFINE(XFT,1,[Enable support of the Xft extension])
- if test "$XFT_UTF8" = "yes"; then
- AC_DEFINE(XFT_UTF8,1,[Support for Utf8 text in the Xft extension])
- fi
+ dnl if test "$XFT_UTF8" = "yes"; then
+ dnl AC_DEFINE(XFT_UTF8,1,[Support for Utf8 text in the Xft extension])
+ dnl fi
fi
dnl Check for ordered 8bpp dithering