diff options
author | Eric Anholt <anholt@freebsd.org> | 2005-10-20 23:27:03 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2005-10-20 23:27:03 +0000 |
commit | f30d091c1d8a9b8912c981a1c1dbde57c68d4ad5 (patch) | |
tree | 481a9a1bb3a72d67a40942a76e7ce5d26cd1c684 | |
parent | 66ab568492b90ef9783ac754f6cf418858102c2d (diff) |
Fix check for fontcache to look for "xfontcache" (Bill Crawford)
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2005-10-20 Eric Anholt <anholt@FreeBSD.org> + + * configure.ac: + Fix check for fontcache to look for "xfontcache" (Bill Crawford) + 2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org> * configure.ac: diff --git a/configure.ac b/configure.ac index 3c24939..3e4d078 100644 --- a/configure.ac +++ b/configure.ac @@ -53,7 +53,7 @@ PKG_CHECK_MODULES(SET_XF86MISC, xf86miscproto xxf86misc, #include <X11/Xproto.h>]) CPPFLAGS="$SAVE_CPPFLAGS"],[echo "not found"]) -PKG_CHECK_MODULES(SET_FONTCACHE, fontcacheproto fontcache, +PKG_CHECK_MODULES(SET_FONTCACHE, fontcacheproto xfontcache, [SAVE_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $SET_FONTCACHE_CFLAGS" AC_CHECK_HEADERS([X11/extensions/fontcache.h X11/extensions/fontcacheP.h],,,[#include <X11/Xlib.h>]) |