From: Dana Jansens Date: Fri, 2 Aug 2002 08:08:06 +0000 (+0000) Subject: make xft support default on X-Git-Tag: openbox-2_0_0~115 X-Git-Url: http://git.openbox.org/?p=mikachu%2Fopenbox.git;a=commitdiff_plain;h=76451a1346effd8da878055b8bbeb2a6ae0d4852 make xft support default on --- diff --git a/configure.in b/configure.in index f13ba2a..fa285cf 100644 --- a/configure.in +++ b/configure.in @@ -116,28 +116,27 @@ dnl Check for Xft extension support and proper library files. XFT="" AC_MSG_CHECKING([whether to build support for the Xft extension]) AC_ARG_ENABLE( - xft, [ --enable-xft enable support of the Xft extension [default=no]], - if test x$enableval = "xyes"; then - AC_MSG_RESULT([yes]) + xft, [ --enable-xft enable support of the Xft extension [default=yes]]) +: ${enableval="yes"} +if test x$enableval = "xyes"; then + AC_MSG_RESULT([yes]) - AC_CHECK_LIB(Xft, XftFontOpenXlfd, - AC_MSG_CHECKING([for X11/Xft/Xft.h]) - AC_TRY_LINK( + AC_CHECK_LIB(Xft, XftFontOpenXlfd, + AC_MSG_CHECKING([for X11/Xft/Xft.h]) + AC_TRY_LINK( #include #include , XftFont foo, - AC_MSG_RESULT([yes]) - XFT="yes" - LIBS="$LIBS -lXft", - AC_MSG_RESULT([no]) - ) + AC_MSG_RESULT([yes]) + XFT="yes" + LIBS="$LIBS -lXft", + AC_MSG_RESULT([no]) ) + ) - else - AC_MSG_RESULT([no]) - fi, +else AC_MSG_RESULT([no]) -) +fi if test x$XFT = "xyes"; then AC_DEFINE(XFT,1,Enable support of the Xft extension) fi