Xft option
This commit is contained in:
parent
e1f9f6ad3d
commit
8e2f1d3d61
1 changed files with 14 additions and 0 deletions
14
configure.in
14
configure.in
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue