diff options
author | infirit <[email protected]> | 2014-12-13 14:50:54 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-12-13 18:32:16 +0100 |
commit | 5561f9707602bca1e768a58f9c2ff30d70586ead (patch) | |
tree | 2532a696bb619c85e424d09ab8522ebf3d6b3d7f /configure.ac | |
parent | fc2923e36d4ac7a3ec2cf848e168d82cf77c0b16 (diff) | |
download | mate-settings-daemon-5561f9707602bca1e768a58f9c2ff30d70586ead.tar.bz2 mate-settings-daemon-5561f9707602bca1e768a58f9c2ff30d70586ead.tar.xz |
xsettings: Make fontconfig a hard dependency
It's required lower down the GTK+ stack on Unices anyway, so there's
no point in making it an option.
Taken from GSD commit: f6257d7e81aaa79dcd7430c0de092145f64f6146
From: Bastien Nocera <[email protected]>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac index 39badec..e2811eb 100644 --- a/configure.ac +++ b/configure.ac @@ -228,12 +228,7 @@ dnl --------------------------------------------------------------------------- dnl - Fontconfig dnl --------------------------------------------------------------------------- -have_fontconfig=no -PKG_CHECK_MODULES(FONTCONFIG, fontconfig, - [AC_DEFINE(HAVE_FONTCONFIG, 1, [Define if Fontconfig functionality is available]) - have_fontconfig=yes], - [have_fontconfig=no]) -AM_CONDITIONAL(HAVE_FONTCONFIG, test x"$have_fontconfig" = "xyes") +PKG_CHECK_MODULES(FONTCONFIG, fontconfig) dnl --------------------------------------------------------------------------- dnl - Keyboard plugin stuff |