all repos — openbox @ 76451a1346effd8da878055b8bbeb2a6ae0d4852

openbox fork - make it a bit more like ryudo

make xft support default on
Dana Jansens danakj@orodu.net
commit

76451a1346effd8da878055b8bbeb2a6ae0d4852

parent

79916c273dcce6afb5ba7f395e427ce3fa376dfd

1 files changed, 14 insertions(+), 15 deletions(-)

jump to
M configure.inconfigure.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 <X11/Xlib.h> #include <X11/Xft/Xft.h> , 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