summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-07-07 21:17:37 +0000
committerDana Jansens <danakj@orodu.net>2002-07-07 21:17:37 +0000
commit5ba3ee6ec29cf3b54a1e3cc3233a37c0c7fdedee (patch)
tree0e6ec1dcbb3eb24ee9572a5b20c0bfb3de705efb /configure.in
parent137a0c4e596409a1d35f0f6ea1bd6e4fcd5a3831 (diff)
make the Xft check actually work
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in24
1 files changed, 12 insertions, 12 deletions
diff --git a/configure.in b/configure.in
index 3af55c50..fdd0708d 100644
--- a/configure.in
+++ b/configure.in
@@ -86,27 +86,28 @@ 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]],
+ xft, [ --enable-xft enable support of the Xft extension [default=no]],
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_MSG_RESULT([yes])
+
+ 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,
+, XftFont foo,
AC_MSG_RESULT([yes])
- XFT="yes",
+ XFT="yes",
AC_MSG_RESULT([no])
- )
+ )
)
+
else
- AC_MSG_RESULT([no])
+ AC_MSG_RESULT([no])
fi,
- AC_MSG_RESULT([no])
+ AC_MSG_RESULT([no])
)
if test x$XFT = "xyes"; then
- LIBS="$LIBS -lXft"
AC_DEFINE(XFT,1,Enable support of the Xft extension)
fi
@@ -261,7 +262,6 @@ nls/fr_FR/Makefile
nls/hu_HU/Makefile
nls/it_IT/Makefile
nls/ja_JP/Makefile
-nls/ko_KR/Makefile
nls/nl_NL/Makefile
nls/pt_BR/Makefile
nls/ru_RU/Makefile