gnome-settings-daemon-06-xft.diff revision 20841
20841N/A--- gnome-settings-daemon-3.2.0/config.h.in-orig 2011-10-04 01:19:30.012934393 -0500
20841N/A+++ gnome-settings-daemon-3.2.0/config.h.in 2011-10-04 01:20:07.863840714 -0500
20841N/A@@ -84,6 +84,9 @@
12361N/A /* Define to 1 if you have the <unistd.h> header file. */
12361N/A #undef HAVE_UNISTD_H
12361N/A
12361N/A+/* Define if Xft functionality is available */
12361N/A+#undef HAVE_XFT2
12361N/A+
20841N/A /* Define to the sub-directory in which libtool stores uninstalled libraries.
20841N/A */
20841N/A #undef LT_OBJDIR
20841N/A--- gnome-settings-daemon-3.2.0/configure.ac-orig 2011-10-04 01:19:36.808875589 -0500
20841N/A+++ gnome-settings-daemon-3.2.0/configure.ac 2011-10-04 01:20:59.502920476 -0500
20841N/A@@ -93,6 +93,16 @@ AC_SUBST([GSD_PLUGIN_LDFLAGS])
12361N/A
20841N/A AC_PATH_PROG(GLIB_GENMARSHAL, glib-genmarshal)
12361N/A
12361N/A+dnl
12361N/A+dnl Check for Xft version 2; we build in extra functionality to the font capplet
12361N/A+dnl when we have it.
12361N/A+dnl
12361N/A+xft_modules=
12361N/A+if $PKG_CONFIG --exists xft ; then
12361N/A+ xft_modules="xft"
12361N/A+ AC_DEFINE(HAVE_XFT2,,[Define if Xft functionality is available])
12361N/A+fi
12361N/A+
20841N/A dnl ================================================================
20841N/A dnl GSettings stuff
20841N/A dnl ================================================================