diff options
author | fluxgen <fluxgen> | 2002-10-14 18:21:38 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-10-14 18:21:38 (GMT) |
commit | 8e2f1d3d612f03446434c4de084033a851a22350 (patch) | |
tree | 6d035a38cf3fb3d3ebc2e7e5c3374a4adf563549 /configure.in | |
parent | e1f9f6ad3d6ac307c0fa64839e9a9925e3716cb2 (diff) | |
download | fluxbox_pavel-8e2f1d3d612f03446434c4de084033a851a22350.zip fluxbox_pavel-8e2f1d3d612f03446434c4de084033a851a22350.tar.bz2 |
Xft option
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]) |