make the Xft check actually work
This commit is contained in:
parent
137a0c4e59
commit
5ba3ee6ec2
1 changed files with 12 additions and 12 deletions
|
@ -89,24 +89,25 @@ 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
|
if test x$enableval = "xyes"; then
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([yes])
|
||||||
|
|
||||||
AC_CHECK_LIB(Xft, XftFontOpenXlfd,
|
AC_CHECK_LIB(Xft, XftFontOpenXlfd,
|
||||||
AC_MSG_CHECKING([for X11/Xft/Xft.h])
|
AC_MSG_CHECKING([for X11/Xft/Xft.h])
|
||||||
AC_TRY_LINK(
|
AC_TRY_LINK(
|
||||||
#include <X11/Xlib.h>
|
#include <X11/Xlib.h>
|
||||||
#include <X11/Xft/Xft.h>
|
#include <X11/Xft/Xft.h>
|
||||||
, XftFont foo,
|
, XftFont foo,
|
||||||
AC_MSG_RESULT([yes])
|
AC_MSG_RESULT([yes])
|
||||||
XFT="yes",
|
XFT="yes",
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
else
|
else
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
fi,
|
fi,
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
)
|
)
|
||||||
if test x$XFT = "xyes"; then
|
if test x$XFT = "xyes"; then
|
||||||
LIBS="$LIBS -lXft"
|
|
||||||
AC_DEFINE(XFT,1,Enable support of the Xft extension)
|
AC_DEFINE(XFT,1,Enable support of the Xft extension)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -261,7 +262,6 @@ nls/fr_FR/Makefile
|
||||||
nls/hu_HU/Makefile
|
nls/hu_HU/Makefile
|
||||||
nls/it_IT/Makefile
|
nls/it_IT/Makefile
|
||||||
nls/ja_JP/Makefile
|
nls/ja_JP/Makefile
|
||||||
nls/ko_KR/Makefile
|
|
||||||
nls/nl_NL/Makefile
|
nls/nl_NL/Makefile
|
||||||
nls/pt_BR/Makefile
|
nls/pt_BR/Makefile
|
||||||
nls/ru_RU/Makefile
|
nls/ru_RU/Makefile
|
||||||
|
|
Loading…
Reference in a new issue