diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 5c41b0e..c2a716c 100644 --- a/configure.in +++ b/configure.in | |||
@@ -228,6 +228,20 @@ AC_ARG_ENABLE( | |||
228 | AC_MSG_RESULT([no]) | 228 | AC_MSG_RESULT([no]) |
229 | ) | 229 | ) |
230 | 230 | ||
231 | AC_MSG_CHECKING([whether to have Xft support]) | ||
232 | AC_ARG_ENABLE( | ||
233 | xft, | ||
234 | [ --enable-xft Xft (antialias) support [default=no]], | ||
235 | if test x$enableval = "xyes"; then | ||
236 | AC_MSG_RESULT([yes]) | ||
237 | AC_DEFINE(USE_XFT, 1, "antialias support") | ||
238 | LIBS="$LIBS -lXft" | ||
239 | else | ||
240 | AC_MSG_RESULT([no]) | ||
241 | fi, | ||
242 | AC_MSG_RESULT([no]) | ||
243 | ) | ||
244 | |||
231 | dnl Check for Xinerama support | 245 | dnl Check for Xinerama support |
232 | 246 | ||
233 | AC_MSG_CHECKING([whether to build support for the Xinerama extension]) | 247 | AC_MSG_CHECKING([whether to build support for the Xinerama extension]) |