diff options
author | Matthias Clasen <maclas@gmx.de> | 2004-02-22 01:02:57 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-02-22 01:02:57 +0000 |
commit | 74fd4c9581f7f38c27cf5c2e37066cdfc67316f1 (patch) | |
tree | 5401530c9bba93e3ac38f9276774773422b1da72 /configure.in | |
parent | 4a9f9160568554980bca810c027d0774f24457e1 (diff) | |
download | gtk+-74fd4c9581f7f38c27cf5c2e37066cdfc67316f1.tar.gz |
Add a check for a new enough fontconfig, since we picked up a direct
Sun Feb 22 02:04:03 2004 Matthias Clasen <maclas@gmx.de>
* configure.in: Add a check for a new enough fontconfig, since
we picked up a direct dependency on it with the Xft settings.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index bf1904ca9f..a592689a84 100644 --- a/configure.in +++ b/configure.in @@ -991,6 +991,13 @@ if test "x$gdktarget" = "xlinux-fb" || test "x$gdktarget" = "xx11" ; then fi if test "x$gdktarget" = "xx11"; then + # + # Check for fontconfig + # + if $PKG_CONFIG --exists 'fontconfig >= 2.2.91' ; then : ; else + AC_MSG_ERROR([fontconfig 2.2.91 is required for x11 target]) + fi + # We start off with the libraries from Pango ## be sure we also have Pango built with Xft2 support |