Xft option

This commit is contained in:
fluxgen 2002-10-14 18:21:38 +00:00
parent e1f9f6ad3d
commit 8e2f1d3d61

View file

@ -228,6 +228,20 @@ AC_ARG_ENABLE(
AC_MSG_RESULT([no])
)
AC_MSG_CHECKING([whether to have Xft support])
AC_ARG_ENABLE(
xft,
[ --enable-xft Xft (antialias) support [default=no]],
if test x$enableval = "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE(USE_XFT, 1, "antialias support")
LIBS="$LIBS -lXft"
else
AC_MSG_RESULT([no])
fi,
AC_MSG_RESULT([no])
)
dnl Check for Xinerama support
AC_MSG_CHECKING([whether to build support for the Xinerama extension])