add check for gtk+ with multihead support and define HAVE_GTK_MULTIHEAD if

2002-07-27  Mark McLoughlin  <mark@skynet.ie>

        * configure.in: add check for gtk+ with multihead
        support and define HAVE_GTK_MULTIHEAD if found.

2002-07-27  Mark McLoughlin  <mark@skynet.ie>

        Add multiscreen support for background rendering.

        * gnome-settings-background.c:
        (background_callback): apply prefs to all screens.
        (gnome_settings_background_init): create a BGApplier for
        each screen.
        (gnome_settings_background_load): apply prefs to all
        screens.
This commit is contained in:
Mark McLoughlin 2002-07-28 19:15:27 +00:00 committed by Mark McLoughlin
parent 13e1dd836d
commit 1f18e59fb4
2 changed files with 22 additions and 0 deletions

View file

@ -78,6 +78,17 @@ GNOME_SETTINGS_DAEMON_LIBS="$GNOME_SETTINGS_DAEMON_LIBS $x_libs"
AC_PATH_PROG(GCONFTOOL, gconftool-2)
dnl
dnl Check for gtk+ with multihead support
dnl
AC_MSG_CHECKING([for gtk+ multihead support])
if $PKG_CONFIG --atleast-version 2.1.0 gtk+-2.0; then
AC_DEFINE(HAVE_GTK_MULTIHEAD,,[gtk+ with multihead support found])
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
dnl ==============================================
dnl End: Check that we meet the dependencies
dnl ==============================================