From cf0823dcf3d1ee8e61be0dfc842b1be3a34b3aee Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 11 Nov 2002 07:56:30 +0000 Subject: [PATCH] look for xft --- configure.ac | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/configure.ac b/configure.ac index 4c0c5724..b7d371bb 100644 --- a/configure.ac +++ b/configure.ac @@ -90,6 +90,43 @@ AC_CHECK_LIB([X11], [XOpenDisplay], AC_MSG_ERROR([Could not find XOpenDisplay in -lX11.]) ) + +dnl Check for Xft2 +AC_MSG_CHECKING([for Xft version 2]) +XFT2="" +if pkg-config xft; then + AC_MSG_RESULT([yes]) + XFT2="yes" + LIBS="$LIBS `pkg-config --libs xft`" + CXXFLAGS="`pkg-config --cflags xft` $CXXFLAGS" +else + AC_MSG_RESULT([no]) +fi + +AC_CHECK_LIB([Xft], [XftFontOpenXlfd], + AC_MSG_CHECKING([for X11/Xft/Xft.h]) + AC_TRY_LINK( + [ + #include + #include + ], + [ + XftFont foo + ], + [ + AC_MSG_RESULT([yes]) + dnl This is for Xft version 1 + test "$XFT2" = "yes" || LIBS="$LIBS -lXft" + ], + [ + AC_MSG_RESULT([no]) + AC_MSG_ERROR([Openbox requires the Xft font library. +See http://www.fontconfig.org/ +]) + ] + ) +) + dnl Check for XShape extension support AC_CHECK_LIB([Xext], [XShapeCombineShape], AC_MSG_CHECKING([for X11/extensions/shape.h]) @@ -166,6 +203,8 @@ AC_ARG_ENABLE([xinerama], AC_MSG_RESULT([no]) ) + + AC_CONFIG_FILES([Makefile m4/Makefile po/Makefile.in -- 2.39.2