summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2002-11-11 07:56:30 +0000
committerDana Jansens <danakj@orodu.net>2002-11-11 07:56:30 +0000
commitcf0823dcf3d1ee8e61be0dfc842b1be3a34b3aee (patch)
tree67fc8492c7099ec8fb7543321fc4cda0a8345b6c
parent1694901f7aee074cbe771f683e80df91ba2041b6 (diff)
look for xft
-rw-r--r--configure.ac39
1 files changed, 39 insertions, 0 deletions
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 <X11/Xlib.h>
+ #include <X11/Xft/Xft.h>
+ ],
+ [
+ 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