r22256 - in /desktop/experimental/gdm/debian: TODO changelog patches/02_xnest-wrapper.patch patches/05_default_keyboard_layout_xkl.patch patches/90_relibtoolize.patch patches/series

lethalman-guest at users.alioth.debian.org lethalman-guest at users.alioth.debian.org
Sun Nov 8 10:56:11 UTC 2009


Author: lethalman-guest
Date: Sun Nov  8 10:56:11 2009
New Revision: 22256

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=22256
Log:
* debian/patches/02_xnest-wrapper.patch:
  - Update to apply cleanly.
* debian/patches/05_default_keyboard_layout_xkl.patch:
  - Ubuntu hal patch translated to libxklavier.
  - TODO: The default keyboard layout is wrong.
* debian/patches/90_relibtoolize.patch:
  - Update for 05_default_keyboard_layout_xkl.patch libxklavier changes to
    Makefile.am.

Added:
    desktop/experimental/gdm/debian/patches/05_default_keyboard_layout_xkl.patch
Modified:
    desktop/experimental/gdm/debian/TODO
    desktop/experimental/gdm/debian/changelog
    desktop/experimental/gdm/debian/patches/02_xnest-wrapper.patch
    desktop/experimental/gdm/debian/patches/90_relibtoolize.patch
    desktop/experimental/gdm/debian/patches/series

Modified: desktop/experimental/gdm/debian/TODO
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm/debian/TODO?rev=22256&op=diff
==============================================================================
--- desktop/experimental/gdm/debian/TODO [utf-8] (original)
+++ desktop/experimental/gdm/debian/TODO [utf-8] Sun Nov  8 10:56:11 2009
@@ -1,10 +1,5 @@
 This file lists the most obvious breakages in GDM. There are probably a 
 lot of bugs remaining after that, these are only the blockers.
-
- * The default keyboard layout is wrong
-   => Ubuntu has a patch, 01_default_keyboard_layout_hal.patch.
-   => It’s a giant hack to talk directly to HAL! We need to use 
-      libxklavier properly instead.
 
  * Settings are not migrated.
    => There are so many regressions, we probably need to ship the new 

Modified: desktop/experimental/gdm/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm/debian/changelog?rev=22256&op=diff
==============================================================================
--- desktop/experimental/gdm/debian/changelog [utf-8] (original)
+++ desktop/experimental/gdm/debian/changelog [utf-8] Sun Nov  8 10:56:11 2009
@@ -12,8 +12,16 @@
   * debian/control.in:
     - Require libxklavier-dev build-dep instead of libxklavier12-dev.
     - Update to Standards-Version 3.8.3, no additional changes needed.
+  * debian/patches/02_xnest-wrapper.patch:
+    - Update to apply cleanly.
   * debian/patches/04_custom-conf.patch:
     - TODO: The custom.conf file cannot be found.
+  * debian/patches/05_default_keyboard_layout_xkl.patch:
+    - Ubuntu hal patch translated to libxklavier.
+    - TODO: The default keyboard layout is wrong.
+  * debian/patches/90_relibtoolize.patch:
+    - Update for 05_default_keyboard_layout_xkl.patch libxklavier changes to
+      Makefile.am.
 
  -- Luca Bruno <lethalman88 at gmail.com>  Sun, 25 Oct 2009 11:04:57 +0100
 

Modified: desktop/experimental/gdm/debian/patches/02_xnest-wrapper.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm/debian/patches/02_xnest-wrapper.patch?rev=22256&op=diff
==============================================================================
--- desktop/experimental/gdm/debian/patches/02_xnest-wrapper.patch [utf-8] (original)
+++ desktop/experimental/gdm/debian/patches/02_xnest-wrapper.patch [utf-8] Sun Nov  8 10:56:11 2009
@@ -1,8 +1,6 @@
-Index: gdm-2.26.1/configure.ac
-===================================================================
---- gdm-2.26.1.orig/configure.ac	2009-03-16 20:50:10.000000000 +0100
-+++ gdm-2.26.1/configure.ac	2009-07-14 18:25:15.021281016 +0200
-@@ -1146,28 +1146,10 @@ dnl ------------------------------------
+--- gdm-2.28.1.orig/configure.ac	2009-10-20 00:12:45.000000000 +0200
++++ gdm-2.28.1/configure.ac	2009-11-08 11:28:25.000000000 +0100
+@@ -1152,28 +1152,10 @@
  dnl - Check for Xnest / Xephyr support
  dnl ---------------------------------------------------------------------------
  

Added: desktop/experimental/gdm/debian/patches/05_default_keyboard_layout_xkl.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm/debian/patches/05_default_keyboard_layout_xkl.patch?rev=22256&op=file
==============================================================================
--- desktop/experimental/gdm/debian/patches/05_default_keyboard_layout_xkl.patch (added)
+++ desktop/experimental/gdm/debian/patches/05_default_keyboard_layout_xkl.patch [utf-8] Sun Nov  8 10:56:11 2009
@@ -1,0 +1,85 @@
+Ubuntu hal patch translated to libxklavier.
+Always overrides keyboard layout variants: https://bugzilla.gnome.org/show_bug.cgi?id=572765
+--- gdm-2.28.1.orig/daemon/gdm-session-direct.c	2009-10-20 00:12:45.000000000 +0200
++++ gdm-2.28.1/daemon/gdm-session-direct.c	2009-11-07 14:58:54.000000000 +0100
+@@ -42,6 +42,9 @@
+ #include <glib/gstdio.h>
+ #include <glib-object.h>
+ 
++#include <libxklavier/xklavier.h>
++#include <X11/Xlib.h> /* for Display */
++
+ #include <dbus/dbus-glib.h>
+ #include <dbus/dbus-glib-lowlevel.h>
+ 
+@@ -598,14 +601,41 @@
+     return setlocale (LC_MESSAGES, NULL);
+ }
+ 
++static char *
++get_system_default_layout (GdmSessionDirect *session)
++{
++    char *result;
++    Display *display;
++    
++    result = NULL;    
++    display = XOpenDisplay (session->priv->display_id);
++    if (display) {
++        XklConfigRec *config;
++        XklEngine *engine = xkl_engine_get_instance (display);
++        if (engine)
++        {
++            XklConfigRec *config = xkl_config_rec_new ();
++            if (xkl_config_rec_get_from_server (config, engine) && config->layouts && config->layouts[0]) {
++                    result = g_strdup (config->layouts[0]);
++            }
++            g_object_unref (config);
++        }
++        XCloseDisplay (display);
++    }
++
++    if (!result)
++        result = g_strdup ("us");    
++    return result;
++}
++
+ static const char *
+ get_default_layout_name (GdmSessionDirect *session)
+ {
+-    if (session->priv->saved_layout != NULL) {
+-                return session->priv->saved_layout;
++    if (!session->priv->saved_layout) {
++        session->priv->saved_layout = get_system_default_layout (session);
+     }
+ 
+-    return "us";
++    return session->priv->saved_layout;
+ }
+ 
+ static char *
+--- gdm-2.28.1.orig/daemon/Makefile.am	2009-10-20 00:12:45.000000000 +0200
++++ gdm-2.28.1/daemon/Makefile.am	2009-11-08 11:25:30.000000000 +0100
+@@ -105,6 +105,7 @@
+ 	$(EXTRA_DAEMON_LIBS)	\
+ 	$(DAEMON_LIBS)		\
+ 	$(PAM_LIBS)		\
++	$(LIBXKLAVIER_LIBS)	\
+ 	$(NULL)
+ 
+ libexec_PROGRAMS = 			\
+@@ -151,6 +152,7 @@
+ 	$(XLIB_LIBS)				\
+ 	$(DAEMON_LIBS)				\
+ 	$(EXTRA_DAEMON_LIBS)                    \
++	$(LIBXKLAVIER_LIBS)			\
+ 	$(NULL)
+ 
+ gdm_factory_slave_SOURCES = 		\
+@@ -214,6 +216,7 @@
+ 	$(XLIB_LIBS)				\
+ 	$(DAEMON_LIBS)				\
+ 	$(EXTRA_DAEMON_LIBS)                    \
++	$(LIBXKLAVIER_LIBS)			\
+ 	$(NULL)
+ 
+ gdm_xdmcp_chooser_slave_SOURCES = 		\

Modified: desktop/experimental/gdm/debian/patches/90_relibtoolize.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm/debian/patches/90_relibtoolize.patch?rev=22256&op=diff
==============================================================================
--- desktop/experimental/gdm/debian/patches/90_relibtoolize.patch [utf-8] (original)
+++ desktop/experimental/gdm/debian/patches/90_relibtoolize.patch [utf-8] Sun Nov  8 10:56:11 2009
@@ -4,10 +4,9 @@
 autoconf
 rm -rf autom4te.cache/
 
-Index: gdm-2.28.1/aclocal.m4
-===================================================================
---- gdm-2.28.1.orig/aclocal.m4	2009-10-25 08:29:54.589764784 +0100
-+++ gdm-2.28.1/aclocal.m4	2009-10-25 08:29:39.981762928 +0100
+diff -urN gdm-2.28.1.orig/aclocal.m4 gdm-2.28.1/aclocal.m4
+--- gdm-2.28.1.orig/aclocal.m4	2009-10-20 01:50:44.000000000 +0200
++++ gdm-2.28.1/aclocal.m4	2009-11-08 11:32:53.000000000 +0100
 @@ -1,7 +1,7 @@
 -# generated automatically by aclocal 1.10 -*- Autoconf -*-
 +# generated automatically by aclocal 1.11 -*- Autoconf -*-
@@ -9556,10 +9555,816 @@
 +m4_include([m4/ltversion.m4])
 +m4_include([m4/lt~obsolete.m4])
  m4_include([acinclude.m4])
-Index: gdm-2.28.1/config.guess
-===================================================================
+diff -urN gdm-2.28.1.orig/common/Makefile.in gdm-2.28.1/common/Makefile.in
+--- gdm-2.28.1.orig/common/Makefile.in	2009-10-20 01:50:53.000000000 +0200
++++ gdm-2.28.1/common/Makefile.in	2009-11-08 11:32:58.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -18,8 +19,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -42,13 +44,16 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
+ LTLIBRARIES = $(noinst_LTLIBRARIES)
+ am__DEPENDENCIES_1 =
+ libgdmcommon_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+@@ -78,11 +83,14 @@
+ 	libgdmcommon_la-gdm-signal-handler.lo $(am__objects_1) \
+ 	$(am__objects_2)
+ libgdmcommon_la_OBJECTS = $(am_libgdmcommon_la_OBJECTS)
+-libgdmcommon_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
+-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libgdmcommon_la_CFLAGS) \
+-	$(CFLAGS) $(libgdmcommon_la_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_lt = $(am__v_lt_$(V))
++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
++am__v_lt_0 = --silent
++libgdmcommon_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++	$(libgdmcommon_la_CFLAGS) $(CFLAGS) $(libgdmcommon_la_LDFLAGS) \
++	$(LDFLAGS) -o $@
+ am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(gdmdir)"
+-libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+ am__EXEEXT_1 =
+ PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS)
+ am_gdm_crash_logger_OBJECTS =  \
+@@ -103,18 +111,32 @@
+ test_settings_server_OBJECTS = $(am_test_settings_server_OBJECTS)
+ test_settings_server_DEPENDENCIES = libgdmcommon.la \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
+-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
++DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
++am__mv = mv -f
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
++	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
++	$(AM_CFLAGS) $(CFLAGS)
++AM_V_CC = $(am__v_CC_$(V))
++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
++am__v_CC_0 = @echo "  CC    " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ CCLD = $(CC)
+-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+-	$(LDFLAGS) -o $@
++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
++	$(AM_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_CCLD = $(am__v_CCLD_$(V))
++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
++am__v_CCLD_0 = @echo "  CCLD  " $@;
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = $(libgdmcommon_la_SOURCES) $(gdm_crash_logger_SOURCES) \
+ 	$(test_log_SOURCES) $(test_settings_client_SOURCES) \
+ 	$(test_settings_server_SOURCES)
+@@ -127,8 +149,22 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+-gdmDATA_INSTALL = $(INSTALL_DATA)
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ DATA = $(gdm_DATA)
+ ETAGS = etags
+ CTAGS = ctags
+@@ -136,6 +172,7 @@
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -176,7 +213,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -191,8 +229,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -233,6 +270,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -242,6 +280,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -252,13 +291,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -272,6 +317,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -310,7 +356,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -346,6 +392,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -360,6 +407,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -509,14 +557,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  common/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  common/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu common/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu common/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -534,6 +582,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ clean-noinstLTLIBRARIES:
+ 	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
+@@ -544,54 +593,71 @@
+ 	  rm -f "$${dir}/so_locations"; \
+ 	done
+ libgdmcommon.la: $(libgdmcommon_la_OBJECTS) $(libgdmcommon_la_DEPENDENCIES) 
+-	$(libgdmcommon_la_LINK)  $(libgdmcommon_la_OBJECTS) $(libgdmcommon_la_LIBADD) $(LIBS)
++	$(AM_V_CCLD)$(libgdmcommon_la_LINK)  $(libgdmcommon_la_OBJECTS) $(libgdmcommon_la_LIBADD) $(LIBS)
+ install-libexecPROGRAMS: $(libexec_PROGRAMS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	     || test -f $$p1 \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
+-	  else :; fi; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	for p in $$list; do echo "$$p $$p"; done | \
++	sed 's/$(EXEEXT)$$//' | \
++	while read p p1; do if test -f $$p || test -f $$p1; \
++	  then echo "$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
++	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
++	sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
++	    else { print "f", $$3 "/" $$4, $$1; } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	    test -z "$$files" || { \
++	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
++	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
++	    } \
++	; done
+ 
+ uninstall-libexecPROGRAMS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
++	      -e 's/$$/$(EXEEXT)/' `; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
+ 
+ clean-libexecPROGRAMS:
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ 
+ clean-noinstPROGRAMS:
+-	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ gdm-crash-logger$(EXEEXT): $(gdm_crash_logger_OBJECTS) $(gdm_crash_logger_DEPENDENCIES) 
+ 	@rm -f gdm-crash-logger$(EXEEXT)
+-	$(LINK) $(gdm_crash_logger_OBJECTS) $(gdm_crash_logger_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(gdm_crash_logger_OBJECTS) $(gdm_crash_logger_LDADD) $(LIBS)
+ test-log$(EXEEXT): $(test_log_OBJECTS) $(test_log_DEPENDENCIES) 
+ 	@rm -f test-log$(EXEEXT)
+-	$(LINK) $(test_log_OBJECTS) $(test_log_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_log_OBJECTS) $(test_log_LDADD) $(LIBS)
+ test-settings-client$(EXEEXT): $(test_settings_client_OBJECTS) $(test_settings_client_DEPENDENCIES) 
+ 	@rm -f test-settings-client$(EXEEXT)
+-	$(LINK) $(test_settings_client_OBJECTS) $(test_settings_client_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_settings_client_OBJECTS) $(test_settings_client_LDADD) $(LIBS)
+ test-settings-server$(EXEEXT): $(test_settings_server_OBJECTS) $(test_settings_server_DEPENDENCIES) 
+ 	@rm -f test-settings-server$(EXEEXT)
+-	$(LINK) $(test_settings_server_OBJECTS) $(test_settings_server_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_settings_server_OBJECTS) $(test_settings_server_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT)
+@@ -620,141 +686,161 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test-settings-server.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+ 
+ libgdmcommon_la-gdm-address.lo: gdm-address.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-address.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo $(DEPDIR)/libgdmcommon_la-gdm-address.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-address.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo $(DEPDIR)/libgdmcommon_la-gdm-address.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-address.c' object='libgdmcommon_la-gdm-address.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
+ 
+ libgdmcommon_la-gdm-marshal.lo: gdm-marshal.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-marshal.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo $(DEPDIR)/libgdmcommon_la-gdm-marshal.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-marshal.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo $(DEPDIR)/libgdmcommon_la-gdm-marshal.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-marshal.c' object='libgdmcommon_la-gdm-marshal.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
+ 
+ libgdmcommon_la-gdm-common.lo: gdm-common.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-common.c' object='libgdmcommon_la-gdm-common.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
+ 
+ libgdmcommon_la-gdm-common-unknown-origin.lo: gdm-common-unknown-origin.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common-unknown-origin.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common-unknown-origin.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-common-unknown-origin.c' object='libgdmcommon_la-gdm-common-unknown-origin.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
+ 
+ libgdmcommon_la-gdm-profile.lo: gdm-profile.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-profile.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo $(DEPDIR)/libgdmcommon_la-gdm-profile.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-profile.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo $(DEPDIR)/libgdmcommon_la-gdm-profile.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-profile.c' object='libgdmcommon_la-gdm-profile.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
+ 
+ libgdmcommon_la-gdm-settings.lo: gdm-settings.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings.c' object='libgdmcommon_la-gdm-settings.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
+ 
+ libgdmcommon_la-gdm-settings-backend.lo: gdm-settings-backend.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-backend.c' object='libgdmcommon_la-gdm-settings-backend.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
+ 
+ libgdmcommon_la-gdm-settings-desktop-backend.lo: gdm-settings-desktop-backend.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-desktop-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-desktop-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-desktop-backend.c' object='libgdmcommon_la-gdm-settings-desktop-backend.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
+ 
+ libgdmcommon_la-gdm-settings-utils.lo: gdm-settings-utils.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-utils.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-utils.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-utils.c' object='libgdmcommon_la-gdm-settings-utils.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
+ 
+ libgdmcommon_la-gdm-settings-direct.lo: gdm-settings-direct.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-direct.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-direct.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-direct.c' object='libgdmcommon_la-gdm-settings-direct.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
+ 
+ libgdmcommon_la-gdm-settings-client.lo: gdm-settings-client.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-client.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-client.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-client.c' object='libgdmcommon_la-gdm-settings-client.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
+ 
+ libgdmcommon_la-gdm-log.lo: gdm-log.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-log.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo $(DEPDIR)/libgdmcommon_la-gdm-log.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-log.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo $(DEPDIR)/libgdmcommon_la-gdm-log.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-log.c' object='libgdmcommon_la-gdm-log.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
+ 
+ libgdmcommon_la-gdm-md5.lo: gdm-md5.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-md5.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo $(DEPDIR)/libgdmcommon_la-gdm-md5.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-md5.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo $(DEPDIR)/libgdmcommon_la-gdm-md5.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-md5.c' object='libgdmcommon_la-gdm-md5.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
+ 
+ libgdmcommon_la-gdm-signal-handler.lo: gdm-signal-handler.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-signal-handler.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-signal-handler.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-signal-handler.c' object='libgdmcommon_la-gdm-signal-handler.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
+ 
+ libgdmcommon_la-mkdtemp.lo: mkdtemp.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-mkdtemp.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo $(DEPDIR)/libgdmcommon_la-mkdtemp.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-mkdtemp.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo $(DEPDIR)/libgdmcommon_la-mkdtemp.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='mkdtemp.c' object='libgdmcommon_la-mkdtemp.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
+ 
+ gdm_crash_logger-gdm-crash-logger.o: gdm-crash-logger.c
+- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.o -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.o `test -f 'gdm-crash-logger.c' || echo '$(srcdir)/'`gdm-crash-logger.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.o -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.o `test -f 'gdm-crash-logger.c' || echo '$(srcdir)/'`gdm-crash-logger.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-crash-logger.c' object='gdm_crash_logger-gdm-crash-logger.o' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gdm_crash_logger-gdm-crash-logger.o `test -f 'gdm-crash-logger.c' || echo '$(srcdir)/'`gdm-crash-logger.c
+ 
+ gdm_crash_logger-gdm-crash-logger.obj: gdm-crash-logger.c
+- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.obj -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.obj `if test -f 'gdm-crash-logger.c'; then $(CYGPATH_W) 'gdm-crash-logger.c'; else $(CYGPATH_W) '$(srcdir)/gdm-crash-logger.c'; fi`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.obj -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.obj `if test -f 'gdm-crash-logger.c'; then $(CYGPATH_W) 'gdm-crash-logger.c'; else $(CYGPATH_W) '$(srcdir)/gdm-crash-logger.c'; fi`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-crash-logger.c' object='gdm_crash_logger-gdm-crash-logger.obj' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gdm_crash_logger-gdm-crash-logger.obj `if test -f 'gdm-crash-logger.c'; then $(CYGPATH_W) 'gdm-crash-logger.c'; else $(CYGPATH_W) '$(srcdir)/gdm-crash-logger.c'; fi`
+@@ -767,65 +853,72 @@
+ install-gdmDATA: $(gdm_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(gdmdir)" || $(MKDIR_P) "$(DESTDIR)$(gdmdir)"
+-	@list='$(gdm_DATA)'; for p in $$list; do \
++	@list='$(gdm_DATA)'; test -n "$(gdmdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(gdmDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gdmdir)/$$f'"; \
+-	  $(gdmDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gdmdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(gdmdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(gdmdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-gdmDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(gdm_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(gdmdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(gdmdir)/$$f"; \
+-	done
++	@list='$(gdm_DATA)'; test -n "$(gdmdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(gdmdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(gdmdir)" && rm -f $$files
+ 
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -846,13 +939,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -886,6 +983,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -908,6 +1006,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -916,18 +1016,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am: install-libexecPROGRAMS
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -950,7 +1060,7 @@
+ 
+ uninstall-am: uninstall-gdmDATA uninstall-libexecPROGRAMS
+ 
+-.MAKE: install-am install-strip
++.MAKE: all check install install-am install-strip
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+ 	clean-libexecPROGRAMS clean-libtool clean-noinstLTLIBRARIES \
+@@ -978,6 +1088,7 @@
+ 
+ gdm-marshal.h: gdm-marshal.list
+ 	@GLIB_GENMARSHAL@ $< --prefix=gdm_marshal --header > $@
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/compile gdm-2.28.1/compile
+--- gdm-2.28.1.orig/compile	2009-10-20 01:50:53.000000000 +0200
++++ gdm-2.28.1/compile	2009-11-08 11:32:57.000000000 +0100
+@@ -1,9 +1,10 @@
+ #! /bin/sh
+ # Wrapper for compilers which do not understand `-c -o'.
+ 
+-scriptversion=2005-05-14.22
++scriptversion=2009-04-28.21; # UTC
+ 
+-# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
++# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009  Free Software
++# Foundation, Inc.
+ # Written by Tom Tromey <tromey at cygnus.com>.
+ #
+ # This program is free software; you can redistribute it and/or modify
+@@ -17,8 +18,7 @@
+ # GNU General Public License for more details.
+ #
+ # You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
++# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ 
+ # As a special exception to the GNU General Public License, if you
+ # distribute this file as part of a program that contains a
+@@ -103,13 +103,13 @@
+ fi
+ 
+ # Name of file we expect compiler to create.
+-cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
++cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
+ 
+ # Create the lock directory.
+-# Note: use `[/.-]' here to ensure that we don't use the same name
++# Note: use `[/\\:.-]' here to ensure that we don't use the same name
+ # that we are using for the .o file.  Also, base the name on the expected
+ # object file name, since that is what matters with a parallel build.
+-lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
++lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
+ while true; do
+   if mkdir "$lockdir" >/dev/null 2>&1; then
+     break
+@@ -138,5 +138,6 @@
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
+ # time-stamp-start: "scriptversion="
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
+-# time-stamp-end: "$"
++# time-stamp-time-zone: "UTC"
++# time-stamp-end: "; # UTC"
+ # End:
+diff -urN gdm-2.28.1.orig/config.guess gdm-2.28.1/config.guess
 --- gdm-2.28.1.orig/config.guess	2009-10-20 01:50:55.000000000 +0200
-+++ gdm-2.28.1/config.guess	2009-10-25 08:29:42.434258710 +0100
++++ gdm-2.28.1/config.guess	2009-11-08 11:32:57.000000000 +0100
 @@ -1,10 +1,10 @@
  #! /bin/sh
  # Attempt to guess a canonical system name.
@@ -9574,7 +10379,7 @@
  
  # This file is free software; you can redistribute it and/or modify it
  # under the terms of the GNU General Public License as published by
-@@ -56,8 +56,8 @@ version="\
+@@ -56,8 +56,8 @@
  GNU config.guess ($timestamp)
  
  Originally written by Per Bothner.
@@ -9585,7 +10390,7 @@
  
  This is free software; see the source for copying conditions.  There is NO
  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
-@@ -161,6 +161,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:$
+@@ -161,6 +161,7 @@
  	    arm*) machine=arm-unknown ;;
  	    sh3el) machine=shl-unknown ;;
  	    sh3eb) machine=sh-unknown ;;
@@ -9593,7 +10398,7 @@
  	    *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
  	esac
  	# The Operating System including object format, if it has switched
-@@ -169,7 +170,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:$
+@@ -169,7 +170,7 @@
  	    arm*|i386|m68k|ns32k|sh3*|sparc|vax)
  		eval $set_cc_for_build
  		if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
@@ -9602,7 +10407,7 @@
  		then
  		    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
  		    # Return netbsd for either.  FIX?
-@@ -323,14 +324,30 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:$
+@@ -323,14 +324,30 @@
  	case `/usr/bin/uname -p` in
  	    sparc) echo sparc-icl-nx7; exit ;;
  	esac ;;
@@ -9635,7 +10440,7 @@
  	exit ;;
      sun4*:SunOS:6*:*)
  	# According to config.sub, this is the proper way to canonicalize
-@@ -531,7 +548,7 @@ EOF
+@@ -531,7 +548,7 @@
  		echo rs6000-ibm-aix3.2
  	fi
  	exit ;;
@@ -9644,7 +10449,7 @@
  	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
  	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
  		IBM_ARCH=rs6000
-@@ -639,7 +656,7 @@ EOF
+@@ -639,7 +656,7 @@
  	    # => hppa64-hp-hpux11.23
  
  	    if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
@@ -9653,7 +10458,7 @@
  	    then
  		HP_ARCH="hppa2.0w"
  	    else
-@@ -780,7 +797,7 @@ EOF
+@@ -780,7 +797,7 @@
      i*:CYGWIN*:*)
  	echo ${UNAME_MACHINE}-pc-cygwin
  	exit ;;
@@ -9662,7 +10467,7 @@
  	echo ${UNAME_MACHINE}-pc-mingw32
  	exit ;;
      i*:windows32*:*)
-@@ -790,15 +807,24 @@ EOF
+@@ -790,15 +807,24 @@
      i*:PW*:*)
  	echo ${UNAME_MACHINE}-pc-pw32
  	exit ;;
@@ -9693,7 +10498,7 @@
      i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
  	# How do we know it's Interix rather than the generic POSIX subsystem?
  	# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
-@@ -829,7 +855,14 @@ EOF
+@@ -829,7 +855,14 @@
  	echo ${UNAME_MACHINE}-pc-minix
  	exit ;;
      arm*:Linux:*:*)
@@ -9709,7 +10514,7 @@
  	exit ;;
      avr32*:Linux:*:*)
  	echo ${UNAME_MACHINE}-unknown-linux-gnu
-@@ -852,40 +885,17 @@ EOF
+@@ -852,40 +885,17 @@
      m68*:Linux:*:*)
  	echo ${UNAME_MACHINE}-unknown-linux-gnu
  	exit ;;
@@ -9755,7 +10560,7 @@
  	#else
  	CPU=
  	#endif
-@@ -917,10 +927,13 @@ EOF
+@@ -917,10 +927,13 @@
  	  EV67)  UNAME_MACHINE=alphaev67 ;;
  	  EV68*) UNAME_MACHINE=alphaev68 ;;
          esac
@@ -9770,7 +10575,7 @@
      parisc:Linux:*:* | hppa:Linux:*:*)
  	# Look for CPU level
  	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
-@@ -950,6 +963,9 @@ EOF
+@@ -950,6 +963,9 @@
      x86_64:Linux:*:*)
  	echo x86_64-unknown-linux-gnu
  	exit ;;
@@ -9780,7 +10585,7 @@
      i*86:Linux:*:*)
  	# The BFD linker knows what the default object file format is, so
  	# first see if it will tell us. cd to the root directory to prevent
-@@ -965,17 +981,6 @@ EOF
+@@ -965,17 +981,6 @@
  	  elf32-i386)
  		TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
  		;;
@@ -9798,7 +10603,7 @@
  	esac
  	# Determine whether the default compiler is a.out or elf
  	eval $set_cc_for_build
-@@ -1041,7 +1046,7 @@ EOF
+@@ -1041,7 +1046,7 @@
      i*86:syllable:*:*)
  	echo ${UNAME_MACHINE}-pc-syllable
  	exit ;;
@@ -9807,7 +10612,7 @@
  	echo i386-unknown-lynxos${UNAME_RELEASE}
  	exit ;;
      i*86:*DOS:*:*)
-@@ -1085,8 +1090,11 @@ EOF
+@@ -1085,8 +1090,11 @@
      pc:*:*:*)
  	# Left here for compatibility:
          # uname -m prints for DJGPP always 'pc', but it prints nothing about
@@ -9821,7 +10626,7 @@
          exit ;;
      Intel:Mach:3*:*)
  	echo i386-pc-mach3
-@@ -1124,6 +1132,16 @@ EOF
+@@ -1124,6 +1132,16 @@
      3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
          /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
            && { echo i486-ncr-sysv4; exit; } ;;
@@ -9838,7 +10643,7 @@
      m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
  	echo m68k-unknown-lynxos${UNAME_RELEASE}
  	exit ;;
-@@ -1136,7 +1154,7 @@ EOF
+@@ -1136,7 +1154,7 @@
      rs6000:LynxOS:2.*:*)
  	echo rs6000-unknown-lynxos${UNAME_RELEASE}
  	exit ;;
@@ -9847,7 +10652,7 @@
  	echo powerpc-unknown-lynxos${UNAME_RELEASE}
  	exit ;;
      SM[BE]S:UNIX_SV:*:*)
-@@ -1199,6 +1217,9 @@ EOF
+@@ -1199,6 +1217,9 @@
      BePC:BeOS:*:*)	# BeOS running on Intel PC compatible.
  	echo i586-pc-beos
  	exit ;;
@@ -9857,7 +10662,7 @@
      SX-4:SUPER-UX:*:*)
  	echo sx4-nec-superux${UNAME_RELEASE}
  	exit ;;
-@@ -1208,6 +1229,15 @@ EOF
+@@ -1208,6 +1229,15 @@
      SX-6:SUPER-UX:*:*)
  	echo sx6-nec-superux${UNAME_RELEASE}
  	exit ;;
@@ -9873,7 +10678,7 @@
      Power*:Rhapsody:*:*)
  	echo powerpc-apple-rhapsody${UNAME_RELEASE}
  	exit ;;
-@@ -1298,6 +1328,9 @@ EOF
+@@ -1298,6 +1328,9 @@
      i*86:rdos:*:*)
  	echo ${UNAME_MACHINE}-pc-rdos
  	exit ;;
@@ -9883,7 +10688,7 @@
  esac
  
  #echo '(No uname command or uname output not recognized.)' 1>&2
-@@ -1458,9 +1491,9 @@ This script, last modified $timestamp, h
+@@ -1458,9 +1491,9 @@
  the operating system you are using. It is advised that you
  download the most up to date version of the config scripts from
  
@@ -9895,10 +10700,9 @@
  
  If the version you run ($0) is already up to date, please
  send the following data and any information you think might be
-Index: gdm-2.28.1/config.sub
-===================================================================
+diff -urN gdm-2.28.1.orig/config.sub gdm-2.28.1/config.sub
 --- gdm-2.28.1.orig/config.sub	2009-10-20 01:50:55.000000000 +0200
-+++ gdm-2.28.1/config.sub	2009-10-25 08:29:42.438259288 +0100
++++ gdm-2.28.1/config.sub	2009-11-08 11:32:57.000000000 +0100
 @@ -1,10 +1,10 @@
  #! /bin/sh
  # Configuration validation subroutine script.
@@ -9913,7 +10717,7 @@
  
  # This file is (in principle) common to ALL GNU software.
  # The presence of a machine in this file suggests that SOME GNU software
-@@ -72,8 +72,8 @@ Report bugs and patches to <config-patch
+@@ -72,8 +72,8 @@
  version="\
  GNU config.sub ($timestamp)
  
@@ -9924,7 +10728,7 @@
  
  This is free software; see the source for copying conditions.  There is NO
  warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
-@@ -122,6 +122,7 @@ maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-
+@@ -122,6 +122,7 @@
  case $maybe_os in
    nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \
    uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \
@@ -9932,7 +10736,7 @@
    storm-chaos* | os2-emx* | rtmk-nova*)
      os=-$maybe_os
      basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
-@@ -152,6 +153,9 @@ case $os in
+@@ -152,6 +153,9 @@
  		os=
  		basic_machine=$1
  		;;
@@ -9942,7 +10746,7 @@
  	-sim | -cisco | -oki | -wec | -winbond)
  		os=
  		basic_machine=$1
-@@ -245,17 +249,20 @@ case $basic_machine in
+@@ -245,17 +249,20 @@
  	| bfin \
  	| c4x | clipper \
  	| d10v | d30v | dlx | dsp16xx \
@@ -9966,7 +10770,7 @@
  	| mips64vr4100 | mips64vr4100el \
  	| mips64vr4300 | mips64vr4300el \
  	| mips64vr5000 | mips64vr5000el \
-@@ -268,6 +275,7 @@ case $basic_machine in
+@@ -268,6 +275,7 @@
  	| mipsisa64sr71k | mipsisa64sr71kel \
  	| mipstx39 | mipstx39el \
  	| mn10200 | mn10300 \
@@ -9974,7 +10778,7 @@
  	| mt \
  	| msp430 \
  	| nios | nios2 \
-@@ -277,7 +285,7 @@ case $basic_machine in
+@@ -277,7 +285,7 @@
  	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \
  	| pyramid \
  	| score \
@@ -9983,7 +10787,7 @@
  	| sh64 | sh64le \
  	| sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
  	| sparcv8 | sparcv9 | sparcv9b | sparcv9v \
-@@ -286,7 +294,7 @@ case $basic_machine in
+@@ -286,7 +294,7 @@
  	| v850 | v850e \
  	| we32k \
  	| x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
@@ -9992,7 +10796,7 @@
  		basic_machine=$basic_machine-unknown
  		;;
  	m6811 | m68hc11 | m6812 | m68hc12)
-@@ -324,19 +332,22 @@ case $basic_machine in
+@@ -324,19 +332,22 @@
  	| clipper-* | craynv-* | cydra-* \
  	| d10v-* | d30v-* | dlx-* \
  	| elxsi-* \
@@ -10018,7 +10822,7 @@
  	| mips64vr4100-* | mips64vr4100el-* \
  	| mips64vr4300-* | mips64vr4300el-* \
  	| mips64vr5000-* | mips64vr5000el-* \
-@@ -358,20 +369,24 @@ case $basic_machine in
+@@ -358,20 +369,24 @@
  	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \
  	| pyramid-* \
  	| romp-* | rs6000-* \
@@ -10047,7 +10851,7 @@
  		;;
  	# Recognize the various machine names and aliases which stand
  	# for a CPU type and a company and sometimes even an OS.
-@@ -435,6 +450,10 @@ case $basic_machine in
+@@ -435,6 +450,10 @@
  		basic_machine=m68k-apollo
  		os=-bsd
  		;;
@@ -10058,7 +10862,7 @@
  	aux)
  		basic_machine=m68k-apple
  		os=-aux
-@@ -443,10 +462,26 @@ case $basic_machine in
+@@ -443,10 +462,26 @@
  		basic_machine=ns32k-sequent
  		os=-dynix
  		;;
@@ -10085,7 +10889,7 @@
  	convex-c1)
  		basic_machine=c1-convex
  		os=-bsd
-@@ -475,8 +510,8 @@ case $basic_machine in
+@@ -475,8 +510,8 @@
  		basic_machine=craynv-cray
  		os=-unicosmp
  		;;
@@ -10096,7 +10900,7 @@
  		os=-elf
  		;;
  	crds | unos)
-@@ -514,6 +549,10 @@ case $basic_machine in
+@@ -514,6 +549,10 @@
  		basic_machine=m88k-motorola
  		os=-sysv3
  		;;
@@ -10107,7 +10911,7 @@
  	djgpp)
  		basic_machine=i586-pc
  		os=-msdosdjgpp
-@@ -668,6 +707,14 @@ case $basic_machine in
+@@ -668,6 +707,14 @@
  		basic_machine=m68k-isi
  		os=-sysv
  		;;
@@ -10122,7 +10926,7 @@
  	m88k-omron*)
  		basic_machine=m88k-omron
  		;;
-@@ -683,6 +730,10 @@ case $basic_machine in
+@@ -683,6 +730,10 @@
  		basic_machine=i386-pc
  		os=-mingw32
  		;;
@@ -10133,7 +10937,7 @@
  	miniframe)
  		basic_machine=m68000-convergent
  		;;
-@@ -809,6 +860,14 @@ case $basic_machine in
+@@ -809,6 +860,14 @@
  		basic_machine=i860-intel
  		os=-osf
  		;;
@@ -10148,7 +10952,7 @@
  	pbd)
  		basic_machine=sparc-tti
  		;;
-@@ -925,6 +984,9 @@ case $basic_machine in
+@@ -925,6 +984,9 @@
  		basic_machine=sh-hitachi
  		os=-hms
  		;;
@@ -10158,7 +10962,7 @@
  	sh64)
  		basic_machine=sh64-unknown
  		;;
-@@ -1014,6 +1076,10 @@ case $basic_machine in
+@@ -1014,6 +1076,10 @@
  		basic_machine=tic6x-unknown
  		os=-coff
  		;;
@@ -10169,7 +10973,7 @@
  	tx39)
  		basic_machine=mipstx39-unknown
  		;;
-@@ -1089,6 +1155,10 @@ case $basic_machine in
+@@ -1089,6 +1155,10 @@
  		basic_machine=z8k-unknown
  		os=-sim
  		;;
@@ -10180,7 +10984,7 @@
  	none)
  		basic_machine=none-none
  		os=-none
-@@ -1127,7 +1197,7 @@ case $basic_machine in
+@@ -1127,7 +1197,7 @@
  	we32k)
  		basic_machine=we32k-att
  		;;
@@ -10189,7 +10993,7 @@
  		basic_machine=sh-unknown
  		;;
  	sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v)
-@@ -1197,10 +1267,11 @@ case $os in
+@@ -1197,10 +1267,11 @@
  	# Each alternative MUST END IN A *, to match a version number.
  	# -sysv* is not here because it comes later, after sysvr4.
  	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
@@ -10203,7 +11007,7 @@
  	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \
  	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \
  	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \
-@@ -1209,7 +1280,7 @@ case $os in
+@@ -1209,7 +1280,7 @@
  	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \
  	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
  	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
@@ -10212,7 +11016,7 @@
  	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
  	      | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \
  	      | -uxpv* | -beos* | -mpeix* | -udk* \
-@@ -1219,7 +1290,7 @@ case $os in
+@@ -1219,7 +1290,7 @@
  	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \
  	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \
  	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \
@@ -10221,7 +11025,7 @@
  	# Remember, each alternative MUST END IN *, to match a version number.
  		;;
  	-qnx*)
-@@ -1349,6 +1420,9 @@ case $os in
+@@ -1349,6 +1420,9 @@
  	-zvmoe)
  		os=-zvmoe
  		;;
@@ -10231,7 +11035,7 @@
  	-none)
  		;;
  	*)
-@@ -1414,6 +1488,9 @@ case $basic_machine in
+@@ -1414,6 +1488,9 @@
  	m68*-cisco)
  		os=-aout
  		;;
@@ -10241,7 +11045,7 @@
  	mips*-cisco)
  		os=-elf
  		;;
-@@ -1543,7 +1620,7 @@ case $basic_machine in
+@@ -1543,7 +1620,7 @@
  			-sunos*)
  				vendor=sun
  				;;
@@ -10250,10 +11054,9 @@
  				vendor=ibm
  				;;
  			-beos*)
-Index: gdm-2.28.1/configure
-===================================================================
+diff -urN gdm-2.28.1.orig/configure gdm-2.28.1/configure
 --- gdm-2.28.1.orig/configure	2009-10-20 01:50:52.000000000 +0200
-+++ gdm-2.28.1/configure	2009-10-25 08:29:46.233756977 +0100
++++ gdm-2.28.1/configure	2009-11-08 11:33:03.000000000 +0100
 @@ -1,62 +1,83 @@
  #! /bin/sh
  # Guess values for system-dependent variables and create Makefiles.
@@ -10373,7 +11176,7 @@
  fi
  
  
-@@ -65,20 +86,18 @@ fi
+@@ -65,20 +86,18 @@
  # there to prevent editors from complaining about space-tab.
  # (If _AS_PATH_WALK were called with IFS unset, it would disable word
  # splitting by setting IFS to empty value.)
@@ -10397,7 +11200,7 @@
  IFS=$as_save_IFS
  
       ;;
-@@ -89,32 +108,272 @@ if test "x$as_myself" = x; then
+@@ -89,32 +108,272 @@
    as_myself=$0
  fi
  if test ! -f "$as_myself"; then
@@ -10685,7 +11488,7 @@
  if expr a : '\(a\)' >/dev/null 2>&1 &&
     test "X`expr 00001 : '.*\(...\)'`" = X001; then
    as_expr=expr
-@@ -128,13 +387,17 @@ else
+@@ -128,13 +387,17 @@
    as_basename=false
  fi
  
@@ -10705,7 +11508,7 @@
      sed '/^.*\/\([^/][^/]*\)\/*$/{
  	    s//\1/
  	    q
-@@ -149,440 +412,154 @@ echo X/"$0" |
+@@ -149,440 +412,154 @@
  	  }
  	  s/.*/./; q'`
  
@@ -11266,7 +12069,7 @@
    exit 0
  fi
  
-@@ -590,121 +567,116 @@ fi
+@@ -590,121 +567,116 @@
  # if CDPATH is set.
  (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  
@@ -11479,7 +12282,7 @@
  exec 7<&0 </dev/null 6>&1
  
  # Name of the host.
-@@ -723,7 +695,6 @@ cross_compiling=no
+@@ -723,7 +695,6 @@
  subdirs=
  MFLAGS=
  MAKEFLAGS=
@@ -11487,7 +12290,7 @@
  
  # Identity of this package.
  PACKAGE_NAME='gdm'
-@@ -731,6 +702,7 @@ PACKAGE_TARNAME='gdm'
+@@ -731,6 +702,7 @@
  PACKAGE_VERSION='2.28.1'
  PACKAGE_STRING='gdm 2.28.1'
  PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gdm'
@@ -11495,7 +12298,7 @@
  
  ac_unique_file="daemon/gdm-manager.c"
  # Factoring default headers for most tests.
-@@ -769,277 +741,346 @@ ac_includes_default="\
+@@ -769,277 +741,346 @@
  # include <unistd.h>
  #endif"
  
@@ -12110,7 +12913,7 @@
        ac_precious_vars='build_alias
  host_alias
  target_alias
-@@ -1053,8 +1094,6 @@ CXX
+@@ -1053,8 +1094,6 @@
  CXXFLAGS
  CCC
  CXXCPP
@@ -12119,7 +12922,7 @@
  PKG_CONFIG
  GTHREAD_CFLAGS
  GTHREAD_LIBS
-@@ -1082,4671 +1121,2844 @@ SIMPLE_CHOOSER_LIBS
+@@ -1082,4671 +1121,2844 @@
  APPLET_CFLAGS
  APPLET_LIBS
  CHECK_CFLAGS
@@ -19207,7 +20010,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -5757,414 +3969,401 @@ main ()
+@@ -5757,414 +3969,401 @@
    return 0;
  }
  _ACEOF
@@ -19964,7 +20767,7 @@
  do
    # Use a header file that comes with gcc, so configuring glibc
    # with a fresh cross-compiler works.
-@@ -6172,11 +4371,7 @@ do
+@@ -6172,11 +4371,7 @@
    # <limits.h> exists even on freestanding compilers.
    # On the NeXT, cc -E runs the code through the compiler's parser,
    # not just through cpp. "Syntax error" is here to catch this case.
@@ -19977,7 +20780,7 @@
  /* end confdefs.h.  */
  #ifdef __STDC__
  # include <limits.h>
-@@ -6185,9270 +4380,6444 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -6185,9270 +4380,6444 @@
  #endif
  		     Syntax error
  _ACEOF
@@ -34615,7 +35418,7 @@
  library_names_spec=
  libname_spec='lib$name'
  soname_spec=
-@@ -15462,20 +10831,6 @@ shlibpath_overrides_runpath=unknown
+@@ -15462,20 +10831,6 @@
  version_type=none
  dynamic_linker="$host_os ld.so"
  sys_lib_dlsearch_path_spec="/lib /usr/lib"
@@ -34636,7 +35439,7 @@
  need_lib_prefix=unknown
  hardcode_into_libs=no
  
-@@ -15493,7 +10848,7 @@ aix3*)
+@@ -15493,7 +10848,7 @@
    soname_spec='${libname}${release}${shared_ext}$major'
    ;;
  
@@ -34645,7 +35448,7 @@
    version_type=linux
    need_lib_prefix=no
    need_version=no
-@@ -15512,7 +10867,7 @@ aix4* | aix5*)
+@@ -15512,7 +10867,7 @@
        aix4 | aix4.[01] | aix4.[01].*)
        if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  	   echo ' yes '
@@ -34654,7 +35457,7 @@
  	:
        else
  	can_build_shared=no
-@@ -15538,9 +10893,18 @@ aix4* | aix5*)
+@@ -15538,9 +10893,18 @@
    ;;
  
  amigaos*)
@@ -34676,7 +35479,7 @@
    ;;
  
  beos*)
-@@ -15563,25 +10927,28 @@ bsdi[45]*)
+@@ -15563,25 +10927,28 @@
    # libtool to hard-code these into programs
    ;;
  
@@ -34710,7 +35513,7 @@
      shlibpath_overrides_runpath=yes
  
      case $host_os in
-@@ -15590,20 +10957,20 @@ cygwin* | mingw* | pw32*)
+@@ -15590,20 +10957,20 @@
        soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
        sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
        ;;
@@ -34736,7 +35539,7 @@
        fi
        ;;
      pw32*)
-@@ -15627,17 +10994,13 @@ darwin* | rhapsody*)
+@@ -15627,17 +10994,13 @@
    version_type=darwin
    need_lib_prefix=no
    need_version=no
@@ -34757,7 +35560,7 @@
    sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
    ;;
  
-@@ -15654,18 +11017,6 @@ freebsd1*)
+@@ -15654,18 +11017,6 @@
    dynamic_linker=no
    ;;
  
@@ -34776,7 +35579,7 @@
  freebsd* | dragonfly*)
    # DragonFly does not have aout.  When/if they implement a new
    # versioning mechanism, adjust this.
-@@ -15703,7 +11054,7 @@ freebsd* | dragonfly*)
+@@ -15703,7 +11054,7 @@
      shlibpath_overrides_runpath=no
      hardcode_into_libs=yes
      ;;
@@ -34785,7 +35588,7 @@
      shlibpath_overrides_runpath=yes
      hardcode_into_libs=yes
      ;;
-@@ -15742,18 +11093,18 @@ hpux9* | hpux10* | hpux11*)
+@@ -15742,18 +11093,18 @@
      fi
      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
      ;;
@@ -34816,7 +35619,7 @@
      shrext_cmds='.sl'
      dynamic_linker="$host_os dld.sl"
      shlibpath_var=SHLIB_PATH
-@@ -15766,7 +11117,7 @@ hpux9* | hpux10* | hpux11*)
+@@ -15766,7 +11117,7 @@
    postinstall_cmds='chmod 555 $lib'
    ;;
  
@@ -34825,7 +35628,7 @@
    version_type=linux
    need_lib_prefix=no
    need_version=no
-@@ -15821,7 +11172,7 @@ linux*oldld* | linux*aout* | linux*coff*
+@@ -15821,7 +11172,7 @@
    ;;
  
  # This must be Linux ELF.
@@ -34834,7 +35637,7 @@
    version_type=linux
    need_lib_prefix=no
    need_version=no
-@@ -15830,6 +11181,32 @@ linux*)
+@@ -15830,6 +11181,32 @@
    finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
    shlibpath_var=LD_LIBRARY_PATH
    shlibpath_overrides_runpath=no
@@ -34867,7 +35670,7 @@
    # This implies no fast_install, which is unacceptable.
    # Some rework will be needed to allow for fast_install
    # before this can be enabled.
-@@ -15837,7 +11214,7 @@ linux*)
+@@ -15837,7 +11214,7 @@
  
    # Append ld.so.conf contents to the search path
    if test -f /etc/ld.so.conf; then
@@ -34876,7 +35679,7 @@
      sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
    fi
  
-@@ -15850,7 +11227,7 @@ linux*)
+@@ -15850,7 +11227,7 @@
    dynamic_linker='GNU/Linux ld.so'
    ;;
  
@@ -34885,7 +35688,7 @@
    version_type=linux
    need_lib_prefix=no
    need_version=no
-@@ -15859,14 +11236,14 @@ knetbsd*-gnu)
+@@ -15859,14 +11236,14 @@
    shlibpath_var=LD_LIBRARY_PATH
    shlibpath_overrides_runpath=no
    hardcode_into_libs=yes
@@ -34902,7 +35705,7 @@
      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
      finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
      dynamic_linker='NetBSD (a.out) ld.so'
-@@ -15887,14 +11264,16 @@ newsos6)
+@@ -15887,14 +11264,16 @@
    shlibpath_overrides_runpath=yes
    ;;
  
@@ -34922,7 +35725,7 @@
    ;;
  
  openbsd*)
-@@ -15903,13 +11282,13 @@ openbsd*)
+@@ -15903,13 +11282,13 @@
    need_lib_prefix=no
    # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
    case $host_os in
@@ -34939,7 +35742,7 @@
      case $host_os in
        openbsd2.[89] | openbsd2.[89].*)
  	shlibpath_overrides_runpath=no
-@@ -15943,6 +11322,10 @@ osf3* | osf4* | osf5*)
+@@ -15943,6 +11322,10 @@
    sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
    ;;
  
@@ -34950,7 +35753,7 @@
  solaris*)
    version_type=linux
    need_lib_prefix=no
-@@ -15977,7 +11360,6 @@ sysv4 | sysv4.3*)
+@@ -15977,7 +11360,6 @@
      sni)
        shlibpath_overrides_runpath=no
        need_lib_prefix=no
@@ -34958,7 +35761,7 @@
        runpath_var=LD_RUN_PATH
        ;;
      siemens)
-@@ -16008,13 +11390,12 @@ sysv5* | sco3.2v5* | sco5v6* | unixware*
+@@ -16008,13 +11390,12 @@
    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
    soname_spec='${libname}${release}${shared_ext}$major'
    shlibpath_var=LD_LIBRARY_PATH
@@ -34973,7 +35776,7 @@
      case $host_os in
        sco3.2v5*)
          sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
-@@ -16024,6 +11405,17 @@ sysv5* | sco3.2v5* | sco5v6* | unixware*
+@@ -16024,6 +11405,17 @@
    sys_lib_dlsearch_path_spec='/usr/lib'
    ;;
  
@@ -34991,7 +35794,7 @@
  uts4*)
    version_type=linux
    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
-@@ -16035,8 +11427,8 @@ uts4*)
+@@ -16035,8 +11427,8 @@
    dynamic_linker=no
    ;;
  esac
@@ -35002,7 +35805,7 @@
  test "$dynamic_linker" = no && can_build_shared=no
  
  variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
-@@ -16044,1383 +11436,1113 @@ if test "$GCC" = yes; then
+@@ -16044,1383 +11436,1113 @@
    variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  fi
  
@@ -37284,7 +38087,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -17431,55 +12553,37 @@ main ()
+@@ -17431,55 +12553,37 @@
    return 0;
  }
  _ACEOF
@@ -37366,7 +38169,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -17490,2075 +12594,2414 @@ main ()
+@@ -17490,2075 +12594,2414 @@
    return 0;
  }
  _ACEOF
@@ -41550,7 +42353,7 @@
  
  ac_ext=c
  ac_cpp='$CPP $CPPFLAGS'
-@@ -19566,47 +15009,6 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS con
+@@ -19566,47 +15009,6 @@
  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
@@ -41598,7 +42401,7 @@
  
  
  
-@@ -19619,24 +15021,21 @@ LIBTOOL='$(SHELL) $(top_builddir)/libtoo
+@@ -19619,24 +15021,21 @@
  
  
  
@@ -41630,7 +42433,7 @@
  /* end confdefs.h.  */
  #include <stdlib.h>
  #include <stdarg.h>
-@@ -19651,47 +15050,23 @@ main ()
+@@ -19651,47 +15050,23 @@
    return 0;
  }
  _ACEOF
@@ -41683,7 +42486,7 @@
  else
    ac_cv_header_stdc=no
  fi
-@@ -19701,18 +15076,14 @@ fi
+@@ -19701,18 +15076,14 @@
  
  if test $ac_cv_header_stdc = yes; then
    # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
@@ -41705,7 +42508,7 @@
  else
    ac_cv_header_stdc=no
  fi
-@@ -19722,14 +15093,10 @@ fi
+@@ -19722,14 +15093,10 @@
  
  if test $ac_cv_header_stdc = yes; then
    # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
@@ -41722,7 +42525,7 @@
  /* end confdefs.h.  */
  #include <ctype.h>
  #include <stdlib.h>
-@@ -19756,48 +15123,22 @@ main ()
+@@ -19756,48 +15123,22 @@
    return 0;
  }
  _ACEOF
@@ -41779,7 +42582,7 @@
  
  fi
  
-@@ -19809,53 +15150,49 @@ ac_config_headers="$ac_config_headers co
+@@ -19809,53 +15150,49 @@
  
  
  
@@ -41848,7 +42651,7 @@
  else
    case $INTLTOOL_UPDATE in
    [\\/]* | ?:[\\/]*)
-@@ -19867,14 +15204,14 @@ for as_dir in $PATH
+@@ -19867,14 +15204,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -41866,7 +42669,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -19882,20 +15219,20 @@ esac
+@@ -19882,20 +15219,20 @@
  fi
  INTLTOOL_UPDATE=$ac_cv_path_INTLTOOL_UPDATE
  if test -n "$INTLTOOL_UPDATE"; then
@@ -41895,7 +42698,7 @@
  else
    case $INTLTOOL_MERGE in
    [\\/]* | ?:[\\/]*)
-@@ -19907,14 +15244,14 @@ for as_dir in $PATH
+@@ -19907,14 +15244,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -41913,7 +42716,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -19922,20 +15259,20 @@ esac
+@@ -19922,20 +15259,20 @@
  fi
  INTLTOOL_MERGE=$ac_cv_path_INTLTOOL_MERGE
  if test -n "$INTLTOOL_MERGE"; then
@@ -41942,7 +42745,7 @@
  else
    case $INTLTOOL_EXTRACT in
    [\\/]* | ?:[\\/]*)
-@@ -19947,14 +15284,14 @@ for as_dir in $PATH
+@@ -19947,14 +15284,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -41960,7 +42763,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -19962,18 +15299,16 @@ esac
+@@ -19962,18 +15299,16 @@
  fi
  INTLTOOL_EXTRACT=$ac_cv_path_INTLTOOL_EXTRACT
  if test -n "$INTLTOOL_EXTRACT"; then
@@ -41984,7 +42787,7 @@
  fi
  
    INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
-@@ -20095,10 +15430,10 @@ INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.
+@@ -20095,10 +15430,10 @@
  # Check the gettext tools to make sure they are GNU
  # Extract the first word of "xgettext", so it can be a program name with args.
  set dummy xgettext; ac_word=$2
@@ -41999,7 +42802,7 @@
  else
    case $XGETTEXT in
    [\\/]* | ?:[\\/]*)
-@@ -20110,14 +15445,14 @@ for as_dir in $PATH
+@@ -20110,14 +15445,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42017,7 +42820,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -20125,20 +15460,20 @@ esac
+@@ -20125,20 +15460,20 @@
  fi
  XGETTEXT=$ac_cv_path_XGETTEXT
  if test -n "$XGETTEXT"; then
@@ -42046,7 +42849,7 @@
  else
    case $MSGMERGE in
    [\\/]* | ?:[\\/]*)
-@@ -20150,14 +15485,14 @@ for as_dir in $PATH
+@@ -20150,14 +15485,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42064,7 +42867,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -20165,20 +15500,20 @@ esac
+@@ -20165,20 +15500,20 @@
  fi
  MSGMERGE=$ac_cv_path_MSGMERGE
  if test -n "$MSGMERGE"; then
@@ -42093,7 +42896,7 @@
  else
    case $MSGFMT in
    [\\/]* | ?:[\\/]*)
-@@ -20190,14 +15525,14 @@ for as_dir in $PATH
+@@ -20190,14 +15525,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42111,7 +42914,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -20205,20 +15540,20 @@ esac
+@@ -20205,20 +15540,20 @@
  fi
  MSGFMT=$ac_cv_path_MSGFMT
  if test -n "$MSGFMT"; then
@@ -42140,7 +42943,7 @@
  else
    case $GMSGFMT in
    [\\/]* | ?:[\\/]*)
-@@ -20230,14 +15565,14 @@ for as_dir in $PATH
+@@ -20230,14 +15565,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42158,7 +42961,7 @@
  IFS=$as_save_IFS
  
    test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
-@@ -20246,33 +15581,29 @@ esac
+@@ -20246,33 +15581,29 @@
  fi
  GMSGFMT=$ac_cv_path_GMSGFMT
  if test -n "$GMSGFMT"; then
@@ -42202,7 +43005,7 @@
  else
    case $INTLTOOL_PERL in
    [\\/]* | ?:[\\/]*)
-@@ -20284,14 +15615,14 @@ for as_dir in $PATH
+@@ -20284,14 +15615,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42220,7 +43023,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -20299,173 +15630,63 @@ esac
+@@ -20299,173 +15630,63 @@
  fi
  INTLTOOL_PERL=$ac_cv_path_INTLTOOL_PERL
  if test -n "$INTLTOOL_PERL"; then
@@ -42423,7 +43226,7 @@
    DATADIRNAME=share
  else
    DATADIRNAME=lib
-@@ -20477,9 +15698,8 @@ fi
+@@ -20477,9 +15698,8 @@
      ;;
      esac
  fi
@@ -42435,7 +43238,7 @@
  fi
  
  
-@@ -20493,10 +15713,10 @@ if test "x$ac_cv_env_PKG_CONFIG_set" != 
+@@ -20493,10 +15713,10 @@
  	if test -n "$ac_tool_prefix"; then
    # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
  set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
@@ -42450,7 +43253,7 @@
  else
    case $PKG_CONFIG in
    [\\/]* | ?:[\\/]*)
-@@ -20508,14 +15728,14 @@ for as_dir in $PATH
+@@ -20508,14 +15728,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42468,7 +43271,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -20523,11 +15743,11 @@ esac
+@@ -20523,11 +15743,11 @@
  fi
  PKG_CONFIG=$ac_cv_path_PKG_CONFIG
  if test -n "$PKG_CONFIG"; then
@@ -42484,7 +43287,7 @@
  fi
  
  
-@@ -20536,10 +15756,10 @@ if test -z "$ac_cv_path_PKG_CONFIG"; the
+@@ -20536,10 +15756,10 @@
    ac_pt_PKG_CONFIG=$PKG_CONFIG
    # Extract the first word of "pkg-config", so it can be a program name with args.
  set dummy pkg-config; ac_word=$2
@@ -42499,7 +43302,7 @@
  else
    case $ac_pt_PKG_CONFIG in
    [\\/]* | ?:[\\/]*)
-@@ -20551,14 +15771,14 @@ for as_dir in $PATH
+@@ -20551,14 +15771,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -42517,7 +43320,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -20566,11 +15786,11 @@ esac
+@@ -20566,11 +15786,11 @@
  fi
  ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
  if test -n "$ac_pt_PKG_CONFIG"; then
@@ -42533,7 +43336,7 @@
  fi
  
    if test "x$ac_pt_PKG_CONFIG" = x; then
-@@ -20578,12 +15798,8 @@ fi
+@@ -20578,12 +15798,8 @@
    else
      case $cross_compiling:$ac_tool_warned in
  yes:)
@@ -42548,7 +43351,7 @@
  ac_tool_warned=yes ;;
  esac
      PKG_CONFIG=$ac_pt_PKG_CONFIG
-@@ -20595,14 +15811,14 @@ fi
+@@ -20595,14 +15811,14 @@
  fi
  if test -n "$PKG_CONFIG"; then
  	_pkg_min_version=0.9.0
@@ -42569,7 +43372,7 @@
  		PKG_CONFIG=""
  	fi
  
-@@ -20610,35 +15826,33 @@ fi
+@@ -20610,35 +15826,33 @@
  
  gdu_cv_version_required=0.3.2
  
@@ -42616,7 +43419,7 @@
    withval=$with_help_dir;
  else
    with_help_dir='${datadir}/gnome/help'
-@@ -20649,7 +15863,7 @@ HELP_DIR="$with_help_dir"
+@@ -20649,7 +15863,7 @@
  
  
  # Check whether --with-omf-dir was given.
@@ -42625,7 +43428,7 @@
    withval=$with_omf_dir;
  else
    with_omf_dir='${datadir}/omf'
-@@ -20660,7 +15874,7 @@ OMF_DIR="$with_omf_dir"
+@@ -20660,7 +15874,7 @@
  
  
  # Check whether --with-help-formats was given.
@@ -42634,7 +43437,7 @@
    withval=$with_help_formats;
  else
    with_help_formats=''
-@@ -20670,7 +15884,7 @@ DOC_USER_FORMATS="$with_help_formats"
+@@ -20670,7 +15884,7 @@
  
  
  # Check whether --enable-scrollkeeper was given.
@@ -42643,7 +43446,7 @@
    enableval=$enable_scrollkeeper;
  else
    enable_scrollkeeper=yes
-@@ -20708,145 +15922,12 @@ _ACEOF
+@@ -20708,145 +15922,12 @@
  
  
  
@@ -42794,7 +43597,7 @@
  _ACEOF
  
  fi
-@@ -20854,16 +15935,12 @@ fi
+@@ -20854,16 +15935,12 @@
  done
  
      if test $ac_cv_header_locale_h = yes; then
@@ -42816,7 +43619,7 @@
  /* end confdefs.h.  */
  #include <locale.h>
  int
-@@ -20874,46 +15951,23 @@ return LC_MESSAGES
+@@ -20874,46 +15951,23 @@
    return 0;
  }
  _ACEOF
@@ -42871,7 +43674,7 @@
  
  
      gt_cv_have_gettext=no
-@@ -20922,153 +15976,20 @@ _ACEOF
+@@ -20922,153 +15976,20 @@
      XGETTEXT=:
      INTLLIBS=
  
@@ -43032,7 +43835,7 @@
  /* end confdefs.h.  */
  
  #include <libintl.h>
-@@ -21081,50 +16002,25 @@ return !ngettext ("","", 1)
+@@ -21081,50 +16002,25 @@
    return 0;
  }
  _ACEOF
@@ -43094,7 +43897,7 @@
  /* end confdefs.h.  */
  
  #include <libintl.h>
-@@ -21136,131 +16032,27 @@ return !dgettext ("","")
+@@ -21136,131 +16032,27 @@
    ;
    return 0;
  }
@@ -43242,7 +44045,7 @@
  _ACEOF
  
  fi
-@@ -21275,18 +16067,14 @@ done
+@@ -21275,18 +16067,14 @@
  	 || test "$gt_cv_func_ngettext_libc" != "yes" \
           || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
  
@@ -43266,7 +44069,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -21304,51 +16092,26 @@ return bindtextdomain ();
+@@ -21304,51 +16092,26 @@
    return 0;
  }
  _ACEOF
@@ -43330,7 +44133,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -21366,51 +16129,26 @@ return ngettext ();
+@@ -21366,51 +16129,26 @@
    return 0;
  }
  _ACEOF
@@ -43394,7 +44197,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -21428,39 +16166,18 @@ return dgettext ();
+@@ -21428,39 +16166,18 @@
    return 0;
  }
  _ACEOF
@@ -43441,7 +44244,7 @@
    gt_cv_func_dgettext_libintl=yes
  fi
  
-@@ -21470,22 +16187,18 @@ fi
+@@ -21470,22 +16187,18 @@
  
  
  	if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
@@ -43473,7 +44276,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -21503,51 +16216,26 @@ return ngettext ();
+@@ -21503,51 +16216,26 @@
    return 0;
  }
  _ACEOF
@@ -43537,7 +44340,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -21565,39 +16253,18 @@ return dcgettext ();
+@@ -21565,39 +16253,18 @@
    return 0;
  }
  _ACEOF
@@ -43584,7 +44387,7 @@
    gt_cv_func_dgettext_libintl=yes
  			libintl_extra_libs=-liconv
  else
-@@ -21619,95 +16286,12 @@ fi
+@@ -21619,95 +16286,12 @@
            glib_save_LIBS="$LIBS"
            LIBS="$LIBS -lintl $libintl_extra_libs"
            unset ac_cv_func_bind_textdomain_codeset
@@ -43685,7 +44488,7 @@
  _ACEOF
  
  fi
-@@ -21737,16 +16321,14 @@ done
+@@ -21737,16 +16321,14 @@
  
        if test "$gt_cv_have_gettext" = "yes"; then
  
@@ -43707,7 +44510,7 @@
  else
    case "$MSGFMT" in
    /*)
-@@ -21770,112 +16352,29 @@ esac
+@@ -21770,112 +16352,29 @@
  fi
  MSGFMT="$ac_cv_path_MSGFMT"
  if test "$MSGFMT" != "no"; then
@@ -43831,7 +44634,7 @@
  	  cat >conftest.foo <<_ACEOF
  
  msgid ""
-@@ -21889,25 +16388,25 @@ msgstr ""
+@@ -21889,25 +16388,25 @@
  "Content-Transfer-Encoding: 8bit\n"
  
  _ACEOF
@@ -43868,7 +44671,7 @@
  else
    case $GMSGFMT in
    [\\/]* | ?:[\\/]*)
-@@ -21919,14 +16418,14 @@ for as_dir in $PATH
+@@ -21919,14 +16418,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -43886,7 +44689,7 @@
  IFS=$as_save_IFS
  
    test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT"
-@@ -21935,20 +16434,20 @@ esac
+@@ -21935,20 +16434,20 @@
  fi
  GMSGFMT=$ac_cv_path_GMSGFMT
  if test -n "$GMSGFMT"; then
@@ -43915,7 +44718,7 @@
  else
    case "$XGETTEXT" in
    /*)
-@@ -21972,18 +16471,14 @@ esac
+@@ -21972,18 +16471,14 @@
  fi
  XGETTEXT="$ac_cv_path_XGETTEXT"
  if test "$XGETTEXT" != ":"; then
@@ -43939,7 +44742,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -21995,114 +16490,14 @@ extern int _nl_msg_cat_cntr;
+@@ -21995,114 +16490,14 @@
    return 0;
  }
  _ACEOF
@@ -44058,7 +44861,7 @@
    CATOBJEXT=.gmo
                 DATADIRNAME=share
  else
-@@ -22117,9 +16512,8 @@ fi
+@@ -22117,9 +16512,8 @@
  	    ;;
  	    esac
  fi
@@ -44070,7 +44873,7 @@
            LIBS="$glib_save_LIBS"
  	  INSTOBJEXT=.mo
  	else
-@@ -22133,9 +16527,7 @@ fi
+@@ -22133,9 +16527,7 @@
  
      if test "$gt_cv_have_gettext" = "yes" ; then
  
@@ -44081,7 +44884,7 @@
  
      fi
  
-@@ -22143,8 +16535,8 @@ _ACEOF
+@@ -22143,8 +16535,8 @@
                    if $XGETTEXT --omit-header /dev/null 2> /dev/null; then
          : ;
        else
@@ -44092,7 +44895,7 @@
          XGETTEXT=":"
        fi
      fi
-@@ -22176,8 +16568,8 @@ echo "${ECHO_T}found xgettext program is
+@@ -22176,8 +16568,8 @@
       if test "x$ALL_LINGUAS" = "x"; then
         LINGUAS=
       else
@@ -44103,7 +44906,7 @@
         NEW_LINGUAS=
         for presentlang in $ALL_LINGUAS; do
           useit=no
-@@ -22201,8 +16593,8 @@ echo $ECHO_N "checking for catalogs to b
+@@ -22201,8 +16593,8 @@
           fi
         done
         LINGUAS=$NEW_LINGUAS
@@ -44114,7 +44917,7 @@
       fi
  
            if test -n "$LINGUAS"; then
-@@ -22252,7 +16644,7 @@ DEVKIT_POWER_REQUIRED_VERSION=008
+@@ -22252,7 +16644,7 @@
  
  
      # Check whether --enable-compile-warnings was given.
@@ -44123,7 +44926,7 @@
    enableval=$enable_compile_warnings;
  else
    enable_compile_warnings="yes"
-@@ -22283,13 +16675,9 @@ fi
+@@ -22283,13 +16675,9 @@
  	for option in -Wno-sign-compare; do
  		SAVE_CFLAGS="$CFLAGS"
  		CFLAGS="$CFLAGS $option"
@@ -44140,7 +44943,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -22300,35 +16688,15 @@ main ()
+@@ -22300,35 +16688,15 @@
    return 0;
  }
  _ACEOF
@@ -44180,7 +44983,7 @@
  		if test $has_option = yes; then
  		  warning_flags="$warning_flags $option"
  		fi
-@@ -22341,27 +16709,25 @@ echo "${ECHO_T}$has_option" >&6; }
+@@ -22341,27 +16709,25 @@
  	fi
  	;;
      *)
@@ -44216,7 +45019,7 @@
      complCFLAGS=
      if test "x$enable_iso_c" != "xno"; then
  	if test "x$GCC" = "xyes"; then
-@@ -22375,8 +16741,8 @@ echo $ECHO_N "checking what language com
+@@ -22375,8 +16741,8 @@
  	esac
  	fi
      fi
@@ -44227,7 +45030,7 @@
  
      WARN_CFLAGS="$warning_flags $complCFLAGS"
  
-@@ -22384,40 +16750,44 @@ echo "${ECHO_T}$complCFLAGS" >&6; }
+@@ -22384,40 +16750,44 @@
  
  
  pkg_failed=no
@@ -44292,7 +45095,7 @@
  fi
  
  
-@@ -22430,25 +16800,14 @@ else
+@@ -22430,25 +16800,14 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -44321,7 +45124,7 @@
  
  $GTHREAD_PKG_ERRORS
  
-@@ -22458,20 +16817,11 @@ installed software in a non-standard pre
+@@ -22458,20 +16817,11 @@
  Alternatively, you may set the environment variables GTHREAD_CFLAGS
  and GTHREAD_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -44346,7 +45149,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -22480,13 +16830,12 @@ and GTHREAD_LIBS to avoid the need to ca
+@@ -22480,13 +16830,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -44363,7 +45166,7 @@
  	:
  fi
  
-@@ -22494,24 +16843,25 @@ fi
+@@ -22494,24 +16843,25 @@
  
  
  pkg_failed=no
@@ -44399,7 +45202,7 @@
    pkg_cv_COMMON_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gobject-2.0 >= $GLIB_REQUIRED_VERSION
          gio-2.0 >= $GLIB_REQUIRED_VERSION
-@@ -22519,24 +16869,26 @@ if test -n "$COMMON_CFLAGS"; then
+@@ -22519,24 +16869,26 @@
  else
    pkg_failed=yes
  fi
@@ -44436,7 +45239,7 @@
    pkg_cv_COMMON_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gobject-2.0 >= $GLIB_REQUIRED_VERSION
          gio-2.0 >= $GLIB_REQUIRED_VERSION
-@@ -22544,8 +16896,9 @@ if test -n "$COMMON_LIBS"; then
+@@ -22544,8 +16896,9 @@
  else
    pkg_failed=yes
  fi
@@ -44448,7 +45251,7 @@
  fi
  
  
-@@ -22558,34 +16911,20 @@ else
+@@ -22558,34 +16911,20 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -44488,7 +45291,7 @@
          gobject-2.0 >= $GLIB_REQUIRED_VERSION
          gio-2.0 >= $GLIB_REQUIRED_VERSION
  ) were not met:
-@@ -22598,20 +16937,11 @@ installed software in a non-standard pre
+@@ -22598,20 +16937,11 @@
  Alternatively, you may set the environment variables COMMON_CFLAGS
  and COMMON_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -44513,7 +45316,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -22620,13 +16950,12 @@ and COMMON_LIBS to avoid the need to cal
+@@ -22620,13 +16950,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -44530,7 +45333,7 @@
  	:
  fi
  
-@@ -22634,24 +16963,25 @@ fi
+@@ -22634,24 +16963,25 @@
  
  
  pkg_failed=no
@@ -44566,7 +45369,7 @@
    pkg_cv_DAEMON_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gobject-2.0 >= $GLIB_REQUIRED_VERSION
          gio-2.0 >= $GLIB_REQUIRED_VERSION
-@@ -22659,24 +16989,26 @@ if test -n "$DAEMON_CFLAGS"; then
+@@ -22659,24 +16989,26 @@
  else
    pkg_failed=yes
  fi
@@ -44603,7 +45406,7 @@
    pkg_cv_DAEMON_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gobject-2.0 >= $GLIB_REQUIRED_VERSION
          gio-2.0 >= $GLIB_REQUIRED_VERSION
-@@ -22684,8 +17016,9 @@ if test -n "$DAEMON_LIBS"; then
+@@ -22684,8 +17016,9 @@
  else
    pkg_failed=yes
  fi
@@ -44615,7 +45418,7 @@
  fi
  
  
-@@ -22698,34 +17031,20 @@ else
+@@ -22698,34 +17031,20 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -44655,7 +45458,7 @@
          gobject-2.0 >= $GLIB_REQUIRED_VERSION
          gio-2.0 >= $GLIB_REQUIRED_VERSION
  ) were not met:
-@@ -22738,20 +17057,11 @@ installed software in a non-standard pre
+@@ -22738,20 +17057,11 @@
  Alternatively, you may set the environment variables DAEMON_CFLAGS
  and DAEMON_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -44680,7 +45483,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -22760,24 +17070,23 @@ and DAEMON_LIBS to avoid the need to cal
+@@ -22760,24 +17070,23 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -44711,7 +45514,7 @@
    withval=$with_x;
  fi
  
-@@ -22787,11 +17096,9 @@ if test "x$with_x" = xno; then
+@@ -22787,11 +17096,9 @@
    have_x=disabled
  else
    case $x_includes,$x_libraries in #(
@@ -44726,7 +45529,7 @@
  else
    # One or both of the vars are not set, and there is no cached value.
  ac_x_includes=no ac_x_libraries=no
-@@ -22812,7 +17119,7 @@ _ACEOF
+@@ -22812,7 +17119,7 @@
        eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
      done
      # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
@@ -44735,7 +45538,7 @@
        if test ! -f "$ac_im_usrlibdir/libX11.$ac_extension" &&
  	 test -f "$ac_im_libdir/libX11.$ac_extension"; then
  	ac_im_usrlibdir=$ac_im_libdir; break
-@@ -22826,7 +17133,7 @@ _ACEOF
+@@ -22826,7 +17133,7 @@
  	*) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;;
      esac
      case $ac_im_usrlibdir in
@@ -44744,7 +45547,7 @@
  	*) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;;
      esac
    fi
-@@ -22838,21 +17145,25 @@ fi
+@@ -22838,21 +17145,25 @@
  # Check X11 before X11Rn because it is often a symlink to the current release.
  ac_x_header_dirs='
  /usr/X11/include
@@ -44770,7 +45573,7 @@
  /usr/local/include/X11R6
  /usr/local/include/X11R5
  /usr/local/include/X11R4
-@@ -22874,36 +17185,14 @@ ac_x_header_dirs='
+@@ -22874,36 +17185,14 @@
  if test "$ac_x_includes" = no; then
    # Guess where to find include files, by looking for Xlib.h.
    # First, try using that file with no special directory specified.
@@ -44809,7 +45612,7 @@
    for ac_dir in $ac_x_header_dirs; do
    if test -r "$ac_dir/X11/Xlib.h"; then
      ac_x_includes=$ac_dir
-@@ -22911,7 +17200,6 @@ sed 's/^/| /' conftest.$ac_ext >&5
+@@ -22911,7 +17200,6 @@
    fi
  done
  fi
@@ -44817,7 +45620,7 @@
  rm -f conftest.err conftest.$ac_ext
  fi # $ac_x_includes = no
  
-@@ -22921,11 +17209,7 @@ if test "$ac_x_libraries" = no; then
+@@ -22921,11 +17209,7 @@
    # Don't add to $LIBS permanently.
    ac_save_LIBS=$LIBS
    LIBS="-lX11 $LIBS"
@@ -44830,7 +45633,7 @@
  /* end confdefs.h.  */
  #include <X11/Xlib.h>
  int
-@@ -22936,36 +17220,16 @@ XrmInitialize ()
+@@ -22936,36 +17220,16 @@
    return 0;
  }
  _ACEOF
@@ -44871,7 +45674,7 @@
      if test -r "$ac_dir/libX11.$ac_extension"; then
        ac_x_libraries=$ac_dir
        break 2
-@@ -22973,9 +17237,8 @@ do
+@@ -22973,9 +17237,8 @@
    done
  done
  fi
@@ -44883,7 +45686,7 @@
  fi # $ac_x_libraries = no
  
  case $ac_x_includes,$ac_x_libraries in #(
-@@ -22996,8 +17259,8 @@ fi
+@@ -22996,8 +17259,8 @@
  fi # $with_x != no
  
  if test "$have_x" != yes; then
@@ -44894,7 +45697,7 @@
    no_x=yes
  else
    # If each of the values was on the command line, it overrides each guess.
-@@ -23007,46 +17270,50 @@ else
+@@ -23007,46 +17270,50 @@
    ac_cv_have_x="have_x=yes\
  	ac_x_includes='$x_includes'\
  	ac_x_libraries='$x_libraries'"
@@ -44967,7 +45770,7 @@
  fi
  
  
-@@ -23059,21 +17326,19 @@ else
+@@ -23059,21 +17326,19 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -44994,7 +45797,7 @@
  
    X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
  else
-@@ -23086,403 +17351,68 @@ else
+@@ -23086,403 +17351,68 @@
      X_LIBS="$X_LIBS -L$x_libraries"
      # For Solaris; some versions of Sun CC require a space after -R and
      # others require no space.  Words are not sufficient . . . .
@@ -45435,7 +46238,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -23491,64 +17421,26 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -23491,64 +17421,26 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -45510,7 +46313,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -23557,88 +17449,40 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -23557,88 +17449,40 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -45618,7 +46421,7 @@
  
  /* Override any GCC internal prototype to avoid an error.
     Use char because int might match the return type of a GCC
-@@ -23646,67 +17490,58 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -23646,67 +17490,58 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -45723,7 +46526,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -23715,149 +17550,95 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -23715,149 +17550,95 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -45930,7 +46733,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -23866,81 +17647,48 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -23866,81 +17647,48 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -46037,7 +46840,7 @@
  
  /* Override any GCC internal prototype to avoid an error.
     Use char because int might match the return type of a GCC
-@@ -23948,67 +17696,47 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -23948,67 +17696,47 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -46130,7 +46933,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24026,39 +17754,18 @@ return shmat ();
+@@ -24026,39 +17754,18 @@
    return 0;
  }
  _ACEOF
@@ -46177,7 +46980,7 @@
    X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
  fi
  
-@@ -24074,18 +17781,14 @@ fi
+@@ -24074,18 +17781,14 @@
    # These have to be linked with before -lX11, unlike the other
    # libraries we check for below, so use a different variable.
    # John Interrante, Karl Berry
@@ -46201,7 +47004,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24103,39 +17806,18 @@ return IceConnectionNumber ();
+@@ -24103,39 +17806,18 @@
    return 0;
  }
  _ACEOF
@@ -46248,7 +47051,7 @@
    X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
  fi
  
-@@ -24144,9 +17826,7 @@ fi
+@@ -24144,9 +17826,7 @@
  fi
  
      if test "x$no_x" = xyes; then
@@ -46259,7 +47062,7 @@
      else
        XLIB_LIBS="$X_PRE_LIBS $X_LIBS -lXau -lX11 -lXext $X_EXTRA_LIBS"
        XLIB_CFLAGS=$X_CFLAGS
-@@ -24155,9 +17835,7 @@ elif test $pkg_failed = untried; then
+@@ -24155,9 +17835,7 @@
  	if test "$no_x" = yes; then
    # Not all programs may use this symbol, but it does not hurt to define it.
  
@@ -46270,7 +47073,7 @@
  
    X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
  else
-@@ -24170,16 +17848,12 @@ else
+@@ -24170,16 +17848,12 @@
      X_LIBS="$X_LIBS -L$x_libraries"
      # For Solaris; some versions of Sun CC require a space after -R and
      # others require no space.  Words are not sufficient . . . .
@@ -46290,7 +47093,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -24190,37 +17864,13 @@ main ()
+@@ -24190,37 +17864,13 @@
    return 0;
  }
  _ACEOF
@@ -46333,7 +47136,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -24231,41 +17881,19 @@ main ()
+@@ -24231,41 +17881,19 @@
    return 0;
  }
  _ACEOF
@@ -46384,7 +47187,7 @@
      ac_c_werror_flag=$ac_xsave_c_werror_flag
      LIBS=$ac_xsave_LIBS
    fi
-@@ -24281,11 +17909,7 @@ rm -f core conftest.err conftest.$ac_obj
+@@ -24281,11 +17909,7 @@
      # libraries were built with DECnet support.  And Karl Berry says
      # the Alpha needs dnet_stub (dnet does not exist).
      ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
@@ -46397,7 +47200,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24303,41 +17927,17 @@ return XOpenDisplay ();
+@@ -24303,41 +17927,17 @@
    return 0;
  }
  _ACEOF
@@ -46446,7 +47249,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24355,150 +17955,31 @@ return dnet_ntoa ();
+@@ -24355,150 +17955,31 @@
    return 0;
  }
  _ACEOF
@@ -46619,7 +47422,7 @@
  
  /* Override any GCC internal prototype to avoid an error.
     Use char because int might match the return type of a GCC
-@@ -24506,67 +17987,58 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -24506,67 +17987,58 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -46722,7 +47525,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24584,55 +18056,30 @@ return gethostbyname ();
+@@ -24584,55 +18056,30 @@
    return 0;
  }
  _ACEOF
@@ -46790,7 +47593,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24650,39 +18097,18 @@ return gethostbyname ();
+@@ -24650,39 +18097,18 @@
    return 0;
  }
  _ACEOF
@@ -46837,7 +47640,7 @@
    X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
  fi
  
-@@ -24696,101 +18122,20 @@ fi
+@@ -24696,101 +18122,20 @@
      # variants that don't use the name server (or something).  -lsocket
      # must be given before -lnsl if both are needed.  We assume that
      # if connect needs -lnsl, so does gethostbyname.
@@ -46946,7 +47749,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24808,140 +18153,38 @@ return connect ();
+@@ -24808,140 +18153,38 @@
    return 0;
  }
  _ACEOF
@@ -47101,7 +47904,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -24959,140 +18202,38 @@ return remove ();
+@@ -24959,140 +18202,38 @@
    return 0;
  }
  _ACEOF
@@ -47256,7 +48059,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -25104,45 +18245,24 @@ extern "C"
+@@ -25104,45 +18245,24 @@
  char shmat ();
  int
  main ()
@@ -47315,7 +48118,7 @@
    X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
  fi
  
-@@ -25158,18 +18278,14 @@ fi
+@@ -25158,18 +18278,14 @@
    # These have to be linked with before -lX11, unlike the other
    # libraries we check for below, so use a different variable.
    # John Interrante, Karl Berry
@@ -47339,7 +48142,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -25187,39 +18303,18 @@ return IceConnectionNumber ();
+@@ -25187,39 +18303,18 @@
    return 0;
  }
  _ACEOF
@@ -47386,7 +48189,7 @@
    X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
  fi
  
-@@ -25228,9 +18323,7 @@ fi
+@@ -25228,9 +18323,7 @@
  fi
  
      if test "x$no_x" = xyes; then
@@ -47397,7 +48200,7 @@
      else
        XLIB_LIBS="$X_PRE_LIBS $X_LIBS -lXau -lX11 -lXext $X_EXTRA_LIBS"
        XLIB_CFLAGS=$X_CFLAGS
-@@ -25238,8 +18331,8 @@ echo "$as_me: error: \"no (requires X de
+@@ -25238,8 +18331,8 @@
  else
  	XLIB_CFLAGS=$pkg_cv_XLIB_CFLAGS
  	XLIB_LIBS=$pkg_cv_XLIB_LIBS
@@ -47408,7 +48211,7 @@
  	:
  fi
  
-@@ -25247,46 +18340,50 @@ fi
+@@ -25247,46 +18340,50 @@
  
  
  pkg_failed=no
@@ -47481,7 +48284,7 @@
  fi
  
  
-@@ -25299,28 +18396,16 @@ else
+@@ -25299,28 +18396,16 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -47515,7 +48318,7 @@
  ) were not met:
  
  $GTK_PKG_ERRORS
-@@ -25331,20 +18416,11 @@ installed software in a non-standard pre
+@@ -25331,20 +18416,11 @@
  Alternatively, you may set the environment variables GTK_CFLAGS
  and GTK_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -47540,7 +48343,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -25353,13 +18429,12 @@ and GTK_LIBS to avoid the need to call p
+@@ -25353,13 +18429,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -47557,7 +48360,7 @@
  	:
  fi
  
-@@ -25367,46 +18442,50 @@ fi
+@@ -25367,46 +18442,50 @@
  
  
  pkg_failed=no
@@ -47630,7 +48433,7 @@
  fi
  
  
-@@ -25419,28 +18498,16 @@ else
+@@ -25419,28 +18498,16 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -47664,7 +48467,7 @@
  ) were not met:
  
  $CANBERRA_GTK_PKG_ERRORS
-@@ -25451,20 +18518,11 @@ installed software in a non-standard pre
+@@ -25451,20 +18518,11 @@
  Alternatively, you may set the environment variables CANBERRA_GTK_CFLAGS
  and CANBERRA_GTK_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -47689,7 +48492,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -25473,13 +18531,12 @@ and CANBERRA_GTK_LIBS to avoid the need 
+@@ -25473,13 +18531,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -47706,7 +48509,7 @@
  	:
  fi
  
-@@ -25487,46 +18544,50 @@ fi
+@@ -25487,46 +18544,50 @@
  
  
  pkg_failed=no
@@ -47779,7 +48582,7 @@
  fi
  
  
-@@ -25539,28 +18600,16 @@ else
+@@ -25539,28 +18600,16 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -47813,7 +48616,7 @@
  ) were not met:
  
  $GCONF_PKG_ERRORS
-@@ -25571,20 +18620,11 @@ installed software in a non-standard pre
+@@ -25571,20 +18620,11 @@
  Alternatively, you may set the environment variables GCONF_CFLAGS
  and GCONF_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -47838,7 +48641,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -25593,13 +18633,12 @@ and GCONF_LIBS to avoid the need to call
+@@ -25593,13 +18633,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -47855,7 +48658,7 @@
  	:
  fi
  
-@@ -25607,40 +18646,44 @@ fi
+@@ -25607,40 +18646,44 @@
  
  
  pkg_failed=no
@@ -47920,7 +48723,7 @@
  fi
  
  
-@@ -25653,15 +18696,15 @@ else
+@@ -25653,15 +18696,15 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -47940,7 +48743,7 @@
                  have_devicekit_power=no
  
  elif test $pkg_failed = untried; then
-@@ -25670,15 +18713,13 @@ elif test $pkg_failed = untried; then
+@@ -25670,15 +18713,13 @@
  else
  	DEVKIT_POWER_CFLAGS=$pkg_cv_DEVKIT_POWER_CFLAGS
  	DEVKIT_POWER_LIBS=$pkg_cv_DEVKIT_POWER_LIBS
@@ -47959,7 +48762,7 @@
  
  fi
  
-@@ -25687,19 +18728,20 @@ fi
+@@ -25687,19 +18728,20 @@
  
  
  pkg_failed=no
@@ -47988,7 +48791,7 @@
    ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
-@@ -25707,8 +18749,8 @@ if test -n "$SIMPLE_GREETER_CFLAGS"; the
+@@ -25707,8 +18749,8 @@
  	fontconfig >= $FONTCONFIG_REQUIRED_VERSION
  ") 2>&5
    ac_status=$?
@@ -47999,7 +48802,7 @@
    pkg_cv_SIMPLE_GREETER_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
-@@ -25718,19 +18760,21 @@ if test -n "$SIMPLE_GREETER_CFLAGS"; the
+@@ -25718,19 +18760,21 @@
  else
    pkg_failed=yes
  fi
@@ -48029,7 +48832,7 @@
    ($PKG_CONFIG --exists --print-errors "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
-@@ -25738,8 +18782,8 @@ if test -n "$SIMPLE_GREETER_LIBS"; then
+@@ -25738,8 +18782,8 @@
  	fontconfig >= $FONTCONFIG_REQUIRED_VERSION
  ") 2>&5
    ac_status=$?
@@ -48040,7 +48843,7 @@
    pkg_cv_SIMPLE_GREETER_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
-@@ -25749,8 +18793,9 @@ if test -n "$SIMPLE_GREETER_LIBS"; then
+@@ -25749,8 +18793,9 @@
  else
    pkg_failed=yes
  fi
@@ -48052,7 +48855,7 @@
  fi
  
  
-@@ -25763,40 +18808,24 @@ else
+@@ -25763,40 +18808,24 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -48098,7 +48901,7 @@
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
          gconf-2.0 >= $GCONF_REQUIRED_VERSION
-@@ -25811,20 +18840,11 @@ installed software in a non-standard pre
+@@ -25811,20 +18840,11 @@
  Alternatively, you may set the environment variables SIMPLE_GREETER_CFLAGS
  and SIMPLE_GREETER_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -48123,7 +48926,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -25833,13 +18853,12 @@ and SIMPLE_GREETER_LIBS to avoid the nee
+@@ -25833,13 +18853,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -48140,7 +48943,7 @@
  	:
  fi
  
-@@ -25847,40 +18866,44 @@ fi
+@@ -25847,40 +18866,44 @@
  
  
  pkg_failed=no
@@ -48205,7 +49008,7 @@
  fi
  
  
-@@ -25893,30 +18916,28 @@ else
+@@ -25893,30 +18916,28 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -48243,7 +49046,7 @@
  
  fi
   if test x$have_libxklavier = xyes; then
-@@ -25933,26 +18954,27 @@ fi
+@@ -25933,26 +18954,27 @@
  
  
  pkg_failed=no
@@ -48281,7 +49084,7 @@
    pkg_cv_SIMPLE_CHOOSER_CFLAGS=`$PKG_CONFIG --cflags "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
-@@ -25961,26 +18983,28 @@ if test -n "$SIMPLE_CHOOSER_CFLAGS"; the
+@@ -25961,26 +18983,28 @@
  else
    pkg_failed=yes
  fi
@@ -48320,7 +49123,7 @@
    pkg_cv_SIMPLE_CHOOSER_LIBS=`$PKG_CONFIG --libs "dbus-glib-1 >= $DBUS_GLIB_REQUIRED_VERSION
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
-@@ -25989,8 +19013,9 @@ if test -n "$SIMPLE_CHOOSER_LIBS"; then
+@@ -25989,8 +19013,9 @@
  else
    pkg_failed=yes
  fi
@@ -48332,7 +49135,7 @@
  fi
  
  
-@@ -26003,37 +19028,22 @@ else
+@@ -26003,37 +19028,22 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -48375,7 +49178,7 @@
          gtk+-2.0 >= $GTK_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION
          gconf-2.0 >= $GCONF_REQUIRED_VERSION
-@@ -26047,20 +19057,11 @@ installed software in a non-standard pre
+@@ -26047,20 +19057,11 @@
  Alternatively, you may set the environment variables SIMPLE_CHOOSER_CFLAGS
  and SIMPLE_CHOOSER_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -48400,7 +49203,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -26069,13 +19070,12 @@ and SIMPLE_CHOOSER_LIBS to avoid the nee
+@@ -26069,13 +19070,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -48417,7 +49220,7 @@
  	:
  fi
  
-@@ -26083,52 +19083,56 @@ fi
+@@ -26083,52 +19083,56 @@
  
  
  pkg_failed=no
@@ -48496,7 +49299,7 @@
  fi
  
  
-@@ -26141,31 +19145,18 @@ else
+@@ -26141,31 +19145,18 @@
          _pkg_short_errors_supported=no
  fi
          if test $_pkg_short_errors_supported = yes; then
@@ -48533,7 +49336,7 @@
          libpanelapplet-2.0 >= $GNOME_PANEL_REQUIRED_VERSION
          libglade-2.0 >= $LIBGLADE_REQUIRED_VERSION) were not met:
  
-@@ -26177,20 +19168,11 @@ installed software in a non-standard pre
+@@ -26177,20 +19168,11 @@
  Alternatively, you may set the environment variables APPLET_CFLAGS
  and APPLET_LIBS to avoid the need to call pkg-config.
  See the pkg-config man page for more details.
@@ -48558,7 +49361,7 @@
  is in your PATH or set the PKG_CONFIG environment variable to the full
  path to pkg-config.
  
-@@ -26199,13 +19181,12 @@ and APPLET_LIBS to avoid the need to cal
+@@ -26199,13 +19181,12 @@
  See the pkg-config man page for more details.
  
  To get pkg-config, see <http://pkg-config.freedesktop.org/>.
@@ -48575,7 +49378,7 @@
  	:
  fi
  
-@@ -26216,10 +19197,10 @@ PLUGIN_LIBTOOL_FLAGS="-export_dynamic -m
+@@ -26216,10 +19197,10 @@
  
  # Extract the first word of "glib-genmarshal", so it can be a program name with args.
  set dummy glib-genmarshal; ac_word=$2
@@ -48590,7 +49393,7 @@
  else
    case $GLIB_GENMARSHAL in
    [\\/]* | ?:[\\/]*)
-@@ -26231,14 +19212,14 @@ for as_dir in $PATH
+@@ -26231,14 +19212,14 @@
  do
    IFS=$as_save_IFS
    test -z "$as_dir" && as_dir=.
@@ -48608,7 +49411,7 @@
  IFS=$as_save_IFS
  
    ;;
-@@ -26246,20 +19227,18 @@ esac
+@@ -26246,20 +19227,18 @@
  fi
  GLIB_GENMARSHAL=$ac_cv_path_GLIB_GENMARSHAL
  if test -n "$GLIB_GENMARSHAL"; then
@@ -48634,7 +49437,7 @@
  
    X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS=
  else
-@@ -26272,16 +19251,12 @@ else
+@@ -26272,16 +19251,12 @@
      X_LIBS="$X_LIBS -L$x_libraries"
      # For Solaris; some versions of Sun CC require a space after -R and
      # others require no space.  Words are not sufficient . . . .
@@ -48654,7 +49457,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -26292,37 +19267,13 @@ main ()
+@@ -26292,37 +19267,13 @@
    return 0;
  }
  _ACEOF
@@ -48697,7 +49500,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -26333,41 +19284,19 @@ main ()
+@@ -26333,41 +19284,19 @@
    return 0;
  }
  _ACEOF
@@ -48748,7 +49551,7 @@
      ac_c_werror_flag=$ac_xsave_c_werror_flag
      LIBS=$ac_xsave_LIBS
    fi
-@@ -26383,11 +19312,7 @@ rm -f core conftest.err conftest.$ac_obj
+@@ -26383,11 +19312,7 @@
      # libraries were built with DECnet support.  And Karl Berry says
      # the Alpha needs dnet_stub (dnet does not exist).
      ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
@@ -48761,7 +49564,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -26405,41 +19330,17 @@ return XOpenDisplay ();
+@@ -26405,41 +19330,17 @@
    return 0;
  }
  _ACEOF
@@ -48810,7 +49613,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -26457,55 +19358,30 @@ return dnet_ntoa ();
+@@ -26457,55 +19358,30 @@
    return 0;
  }
  _ACEOF
@@ -48878,7 +49681,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -26523,47 +19399,25 @@ return dnet_ntoa ();
+@@ -26523,47 +19399,25 @@
    return 0;
  }
  _ACEOF
@@ -48935,7 +49738,7 @@
      LIBS="$ac_xsave_LIBS"
  
      # msh at cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT,
-@@ -26574,101 +19428,20 @@ rm -f core conftest.err conftest.$ac_obj
+@@ -26574,101 +19428,20 @@
      # on Irix 5.2, according to T.E. Dickey.
      # The functions gethostbyname, getservbyname, and inet_addr are
      # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
@@ -49044,7 +49847,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -26686,55 +19459,30 @@ return gethostbyname ();
+@@ -26686,55 +19459,30 @@
    return 0;
  }
  _ACEOF
@@ -49112,7 +49915,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -26752,39 +19500,18 @@ return gethostbyname ();
+@@ -26752,39 +19500,18 @@
    return 0;
  }
  _ACEOF
@@ -49159,7 +49962,7 @@
    X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
  fi
  
-@@ -26798,101 +19525,20 @@ fi
+@@ -26798,101 +19525,20 @@
      # variants that don't use the name server (or something).  -lsocket
      # must be given before -lnsl if both are needed.  We assume that
      # if connect needs -lnsl, so does gethostbyname.
@@ -49268,7 +50071,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -26910,140 +19556,38 @@ return connect ();
+@@ -26910,140 +19556,38 @@
    return 0;
  }
  _ACEOF
@@ -49423,7 +50226,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -27056,145 +19600,43 @@ char remove ();
+@@ -27056,145 +19600,43 @@
  int
  main ()
  {
@@ -49593,7 +50396,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -27212,39 +19654,18 @@ return shmat ();
+@@ -27212,39 +19654,18 @@
    return 0;
  }
  _ACEOF
@@ -49640,7 +50443,7 @@
    X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
  fi
  
-@@ -27260,18 +19681,14 @@ fi
+@@ -27260,18 +19681,14 @@
    # These have to be linked with before -lX11, unlike the other
    # libraries we check for below, so use a different variable.
    # John Interrante, Karl Berry
@@ -49664,7 +50467,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -27289,1099 +19706,345 @@ return IceConnectionNumber ();
+@@ -27289,1099 +19706,345 @@
    return 0;
  }
  _ACEOF
@@ -50996,7 +51799,7 @@
  _ACEOF
  
  fi
-@@ -28389,94 +20052,76 @@ fi
+@@ -28389,94 +20052,76 @@
  done
  
  
@@ -51148,7 +51951,7 @@
  _ACEOF
  
  fi
-@@ -28493,103 +20138,19 @@ EXTRA_SETUP_LIBS=""
+@@ -28493,103 +20138,19 @@
  EXTRA_TEST_LIBS=""
  EXTRA_GREETER_LIBS=""
  
@@ -51259,7 +52062,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -28607,39 +20168,18 @@ return socket ();
+@@ -28607,39 +20168,18 @@
    return 0;
  }
  _ACEOF
@@ -51306,7 +52109,7 @@
  
  			   EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lsocket"
  			   EXTRA_SLAVE_LIBS="$EXTRA_SLAVE_LIBS -lsocket"
-@@ -28653,103 +20193,19 @@ fi
+@@ -28653,103 +20193,19 @@
  
  fi
  
@@ -51417,7 +52220,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -28767,39 +20223,18 @@ return gethostbyname ();
+@@ -28767,39 +20223,18 @@
    return 0;
  }
  _ACEOF
@@ -51464,7 +52267,7 @@
  
  			   EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lnsl"
  			   EXTRA_SLAVE_LIBS="$EXTRA_SLAVE_LIBS -lnsl"
-@@ -28809,232 +20244,79 @@ fi
+@@ -28809,232 +20244,79 @@
  
  fi
  
@@ -51736,7 +52539,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -29052,44 +20334,21 @@ return sched_yield ();
+@@ -29052,44 +20334,21 @@
    return 0;
  }
  _ACEOF
@@ -51789,7 +52592,7 @@
  
  			   EXTRA_DAEMON_LIBS="$EXTRA_DAEMON_LIBS -lrt"
  else
-@@ -29099,103 +20358,19 @@ fi
+@@ -29099,103 +20358,19 @@
  
  fi
  
@@ -51900,7 +52703,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -29213,39 +20388,18 @@ return inet_aton ();
+@@ -29213,39 +20388,18 @@
    return 0;
  }
  _ACEOF
@@ -51947,7 +52750,7 @@
  
  			   EXTRA_CHOOSER_LIBS="$EXTRA_CHOOSER_LIBS -lresolv"
  fi
-@@ -29255,92 +20409,10 @@ fi
+@@ -29255,92 +20409,10 @@
  
  
  mkdtemp_missing=false
@@ -52043,7 +52846,7 @@
  
  else
    mkdtemp_missing=true
-@@ -29356,10 +20428,10 @@ fi
+@@ -29356,10 +20428,10 @@
  
  
  
@@ -52057,7 +52860,7 @@
    enableval=$enable_ipv6;
  else
    enable_ipv6=no
-@@ -29367,11 +20439,7 @@ fi
+@@ -29367,11 +20439,7 @@
  
  
  if test x$enable_ipv6 = xyes; then
@@ -52070,7 +52873,7 @@
  /* end confdefs.h.  */
  
      #include <sys/types.h>
-@@ -29387,136 +20455,32 @@ main ()
+@@ -29387,136 +20455,32 @@
    return 0;
  }
  _ACEOF
@@ -52217,7 +53020,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -29534,146 +20498,42 @@ return getaddrinfo ();
+@@ -29534,146 +20498,42 @@
    return 0;
  }
  _ACEOF
@@ -52384,7 +53187,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -29691,40 +20551,20 @@ return inet_ntop ();
+@@ -29691,40 +20551,20 @@
    return 0;
  }
  _ACEOF
@@ -52434,7 +53237,7 @@
    "LIBS=$LIBS -l$lib";have_inet_ntop=yes;break
  fi
  
-@@ -29735,29 +20575,27 @@ fi
+@@ -29735,29 +20575,27 @@
        if test x$have_inet_ntop = xyes; then
          have_ipv6=yes
  
@@ -52472,7 +53275,7 @@
    withval=$with_user;
  fi
  
-@@ -29778,7 +20616,7 @@ _ACEOF
+@@ -29778,7 +20616,7 @@
  withval=""
  
  # Check whether --with-group was given.
@@ -52481,7 +53284,7 @@
    withval=$with_group;
  fi
  
-@@ -29800,10 +20638,10 @@ _ACEOF
+@@ -29800,10 +20638,10 @@
  withval=""
  
  # Check whether --with-pam-prefix was given.
@@ -52495,7 +53298,7 @@
               fi
  fi
  
-@@ -29816,18 +20654,14 @@ fi
+@@ -29816,18 +20654,14 @@
  
  
  have_pam=no
@@ -52519,7 +53322,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -29845,39 +20679,18 @@ return pam_start ();
+@@ -29845,39 +20679,18 @@
    return 0;
  }
  _ACEOF
@@ -52566,7 +53369,7 @@
    have_pam=yes
  fi
  
-@@ -29885,171 +20698,33 @@ fi
+@@ -29885,171 +20698,33 @@
  if test "x$have_pam" = "xyes"; then
          PAM_LIBS="${PAM_LIBS} -lpam"
  else
@@ -52750,7 +53553,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -30067,104 +20742,67 @@ return pam_syslog ();
+@@ -30067,104 +20742,67 @@
    return 0;
  }
  _ACEOF
@@ -52878,7 +53681,7 @@
  		#ifdef HAVE_USERSEC_H
  		#include <usersec.h>
  		#endif
-@@ -30179,490 +20817,66 @@ main ()
+@@ -30179,490 +20817,66 @@
    return 0;
  }
  _ACEOF
@@ -53400,7 +54203,7 @@
  
  fi
  
-@@ -30683,20 +20897,16 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS con
+@@ -30683,20 +20897,16 @@
  ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  ac_compiler_gnu=$ac_cv_c_compiler_gnu
  
@@ -53427,7 +54230,7 @@
  /* end confdefs.h.  */
  
  #define _POSIX_PTHREAD_SEMANTICS
-@@ -30720,42 +20930,18 @@ main ()
+@@ -30720,42 +20930,18 @@
    return 0;
  }
  _ACEOF
@@ -53476,7 +54279,7 @@
  ac_ext=c
  ac_cpp='$CPP $CPPFLAGS'
  ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-@@ -30765,21 +20951,15 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
+@@ -30765,21 +20951,15 @@
  
  if test "$ac_cv_func_posix_getpwnam_r" = yes; then
  
@@ -53504,7 +54307,7 @@
  /* end confdefs.h.  */
  #include <pwd.h>
  int
-@@ -30793,304 +20973,60 @@ char buffer[10000];
+@@ -30793,304 +20973,60 @@
    return 0;
  }
  _ACEOF
@@ -53833,7 +54636,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -31108,60 +21044,33 @@ return login ();
+@@ -31108,60 +21044,33 @@
    return 0;
  }
  _ACEOF
@@ -53907,7 +54710,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -31179,60 +21088,33 @@ return logout ();
+@@ -31179,60 +21088,33 @@
    return 0;
  }
  _ACEOF
@@ -53981,7 +54784,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -31246,211 +21128,51 @@ int
+@@ -31246,211 +21128,51 @@
  main ()
  {
  return logwtmp ();
@@ -54216,7 +55019,7 @@
  /* end confdefs.h.  */
  #include <sys/types.h>
  #include <sys/time.h>
-@@ -31465,65 +21187,35 @@ return 0;
+@@ -31465,65 +21187,35 @@
    return 0;
  }
  _ACEOF
@@ -54292,7 +55095,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31549,49 +21241,23 @@ UTMP ut; char *p; p=ut.ut_host;
+@@ -31549,49 +21241,23 @@
    return 0;
  }
  _ACEOF
@@ -54350,7 +55153,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31617,49 +21283,23 @@ UTMP ut; int i; i=ut.ut_pid;
+@@ -31617,49 +21283,23 @@
    return 0;
  }
  _ACEOF
@@ -54408,7 +55211,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31685,49 +21325,23 @@ UTMP ut; char *p; p=ut.ut_id;
+@@ -31685,49 +21325,23 @@
    return 0;
  }
  _ACEOF
@@ -54466,7 +55269,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31753,49 +21367,23 @@ UTMP ut; char *p; p=ut.ut_name;
+@@ -31753,49 +21367,23 @@
    return 0;
  }
  _ACEOF
@@ -54524,7 +55327,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31821,49 +21409,23 @@ UTMP ut; int i; i=(int) ut.ut_type;
+@@ -31821,49 +21409,23 @@
    return 0;
  }
  _ACEOF
@@ -54582,7 +55385,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31889,49 +21451,23 @@ UTMP ut; ut.ut_exit.e_termination=0;
+@@ -31889,49 +21451,23 @@
    return 0;
  }
  _ACEOF
@@ -54640,7 +55443,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -31957,49 +21493,23 @@ UTMP ut; char *p; p=ut.ut_user;
+@@ -31957,49 +21493,23 @@
    return 0;
  }
  _ACEOF
@@ -54698,7 +55501,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -32025,49 +21535,23 @@ UTMP ut; ut.ut_time=0;
+@@ -32025,49 +21535,23 @@
    return 0;
  }
  _ACEOF
@@ -54756,7 +55559,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -32093,49 +21577,23 @@ UTMP ut; ut.ut_tv.tv_sec=0; ut.ut_tv.tv_
+@@ -32093,49 +21577,23 @@
    return 0;
  }
  _ACEOF
@@ -54814,7 +55617,7 @@
  /* end confdefs.h.  */
  #ifdef TIME_WITH_SYS_TIME
  #include <sys/time.h>
-@@ -32161,51 +21619,25 @@ UTMP ut; ut.ut_syslen=0;
+@@ -32161,51 +21619,25 @@
    return 0;
  }
  _ACEOF
@@ -54874,7 +55677,7 @@
  /* end confdefs.h.  */
  
    #include <utmpx.h>
-@@ -32220,42 +21652,20 @@ main ()
+@@ -32220,42 +21652,20 @@
    return 0;
  }
  _ACEOF
@@ -54922,7 +55725,7 @@
  
  
  
-@@ -32263,64 +21673,18 @@ XDMCP_LIBS=""
+@@ -32263,64 +21673,18 @@
  if test x$with_xdmcp != xno ; then
  	xdmcp_save_CPPFLAGS="$CPPFLAGS"
  	CPPFLAGS="$CPPFLAGS $X_CFLAGS"
@@ -54995,7 +55798,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -32338,44 +21702,21 @@ return XdmcpFlush ();
+@@ -32338,44 +21702,21 @@
    return 0;
  }
  _ACEOF
@@ -55048,7 +55851,7 @@
  
  		     	XDMCP_LIBS="-lXdmcp"
  		     	XDMCP_SUPPORT=yes
-@@ -32387,9 +21728,7 @@ fi
+@@ -32387,9 +21728,7 @@
  
  
  	if test x$with_xdmcp = xyes -a "x$XDMCP_SUPPORT" = "x" ; then
@@ -55059,7 +55862,7 @@
  	fi
  	CPPFLAGS="$xdmcp_save_CPPFLAGS"
  fi
-@@ -32470,24 +21809,18 @@ else
+@@ -32470,24 +21809,18 @@
  	else
  		LIBWRAP_LIBS="-L/usr/sfw/lib -R/usr/sfw/lib -lwrap"
  
@@ -55090,7 +55893,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -32505,72 +21838,45 @@ return hosts_ctl ();
+@@ -32505,72 +21838,45 @@
    return 0;
  }
  _ACEOF
@@ -55180,7 +55983,7 @@
  /* end confdefs.h.  */
  
  #include <tcpd.h>
-@@ -32584,37 +21890,13 @@ return hosts_access;
+@@ -32584,37 +21890,13 @@
    return 0;
  }
  _ACEOF
@@ -55221,7 +56024,7 @@
  /* end confdefs.h.  */
  
  #include <tcpd.h>
-@@ -32628,48 +21910,26 @@ return hosts_access;
+@@ -32628,48 +21910,26 @@
    return 0;
  }
  _ACEOF
@@ -55280,7 +56083,7 @@
  		fi
    fi
  fi
-@@ -32680,27 +21940,21 @@ fi
+@@ -32680,27 +21940,21 @@
  
  if $PKG_CONFIG --exists xft ; then
  
@@ -55314,7 +56117,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -32718,39 +21972,18 @@ return XOpenDevice ();
+@@ -32718,39 +21972,18 @@
    return 0;
  }
  _ACEOF
@@ -55361,7 +56164,7 @@
    XINPUT_LIBS=-lXi
  fi
  
-@@ -32761,13 +21994,9 @@ if test "x$XINPUT_LIBS" = x; then
+@@ -32761,13 +21994,9 @@
      if test x$os_solaris = xyes ; then
         XINPUT_RPATH_FLAGS="-R$xinputpath"
      fi
@@ -55378,7 +56181,7 @@
  /* end confdefs.h.  */
  
  int
-@@ -32778,215 +22007,302 @@ XOpenDevice()
+@@ -32778,215 +22007,302 @@
    return 0;
  }
  _ACEOF
@@ -55853,7 +56656,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -32995,138 +22311,118 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -32995,138 +22311,118 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -56077,7 +56880,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -33135,547 +22431,303 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -33135,547 +22431,303 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -56839,7 +57642,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -33684,63 +22736,73 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -33684,63 +22736,73 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -56954,7 +57757,7 @@
  /* end confdefs.h.  */
  
  /* Override any GCC internal prototype to avoid an error.
-@@ -33749,3024 +22811,3170 @@ cat >>conftest.$ac_ext <<_ACEOF
+@@ -33749,3024 +22811,3170 @@
  #ifdef __cplusplus
  extern "C"
  #endif
@@ -62691,7 +63494,7 @@
      fi
      rm -f "po/stamp-it" "po/stamp-it.tmp" "po/POTFILES" "po/Makefile.tmp"
      >"po/stamp-it.tmp"
-@@ -36789,11 +25997,13 @@ echo "$as_me: error: po/Makefile.in.in w
+@@ -36789,11 +25997,13 @@
  done # for ac_tag
  
  
@@ -62707,7 +63510,7 @@
  
  # configure is writing to config.log, and then calls config.status.
  # config.status does its own redirection, appending to config.log.
-@@ -36813,7 +26023,11 @@ if test "$no_create" != yes; then
+@@ -36813,7 +26023,11 @@
    exec 5>>config.log
    # Use ||, not &&, to avoid exiting from the if with $? = 1, which
    # would make configure fail if this is the last instruction.
@@ -62720,10 +63523,7045 @@
  fi
  
  
-Index: gdm-2.28.1/ltmain.sh
-===================================================================
+diff -urN gdm-2.28.1.orig/daemon/Makefile.in gdm-2.28.1/daemon/Makefile.in
+--- gdm-2.28.1.orig/daemon/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/daemon/Makefile.in	2009-11-08 11:32:58.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -17,8 +18,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -52,18 +54,19 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
+ am__EXEEXT_1 =
+ am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(sbindir)" \
+ 	"$(DESTDIR)$(sbindir)"
+-libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+-sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+ PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS) $(sbin_PROGRAMS)
+ am__gdm_binary_SOURCES_DIST = main.c gdm-display-access-file.c \
+ 	gdm-display-access-file.h gdm-display-store.c \
+@@ -102,7 +105,10 @@
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1)
+-gdm_binary_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
++AM_V_lt = $(am__v_lt_$(V))
++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
++am__v_lt_0 = --silent
++gdm_binary_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
+ 	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+ 	$(gdm_binary_LDFLAGS) $(LDFLAGS) -o $@
+ am_gdm_factory_slave_OBJECTS = factory-slave-main.$(OBJEXT) \
+@@ -115,9 +121,10 @@
+ gdm_factory_slave_DEPENDENCIES =  \
+ 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
+-gdm_factory_slave_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
+-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+-	$(gdm_factory_slave_LDFLAGS) $(LDFLAGS) -o $@
++gdm_factory_slave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++	$(AM_CFLAGS) $(CFLAGS) $(gdm_factory_slave_LDFLAGS) $(LDFLAGS) \
++	-o $@
+ am_gdm_product_slave_OBJECTS = product-slave-main.$(OBJEXT) \
+ 	gdm-server.$(OBJEXT) gdm-session.$(OBJEXT) \
+ 	gdm-session-direct.$(OBJEXT) gdm-session-record.$(OBJEXT) \
+@@ -127,10 +134,11 @@
+ gdm_product_slave_DEPENDENCIES =  \
+ 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+-	$(am__DEPENDENCIES_1)
+-gdm_product_slave_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
+-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+-	$(gdm_product_slave_LDFLAGS) $(LDFLAGS) -o $@
++	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
++gdm_product_slave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++	$(AM_CFLAGS) $(CFLAGS) $(gdm_product_slave_LDFLAGS) $(LDFLAGS) \
++	-o $@
+ am__gdm_session_worker_SOURCES_DIST = session-worker-main.c \
+ 	ck-connector.h ck-connector.c gdm-session-settings.h \
+ 	gdm-session-settings.c gdm-session-auditor.h \
+@@ -149,9 +157,10 @@
+ gdm_session_worker_DEPENDENCIES =  \
+ 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1)
+-gdm_session_worker_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
+-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+-	$(gdm_session_worker_LDFLAGS) $(LDFLAGS) -o $@
++gdm_session_worker_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++	$(AM_CFLAGS) $(CFLAGS) $(gdm_session_worker_LDFLAGS) \
++	$(LDFLAGS) -o $@
+ am_gdm_simple_slave_OBJECTS = simple-slave-main.$(OBJEXT) \
+ 	gdm-greeter-server.$(OBJEXT) ck-connector.$(OBJEXT) \
+ 	gdm-welcome-session.$(OBJEXT) gdm-greeter-session.$(OBJEXT) \
+@@ -163,10 +172,11 @@
+ gdm_simple_slave_DEPENDENCIES =  \
+ 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+-	$(am__DEPENDENCIES_1)
+-gdm_simple_slave_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
+-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+-	$(gdm_simple_slave_LDFLAGS) $(LDFLAGS) -o $@
++	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
++gdm_simple_slave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++	$(AM_CFLAGS) $(CFLAGS) $(gdm_simple_slave_LDFLAGS) $(LDFLAGS) \
++	-o $@
+ am_gdm_xdmcp_chooser_slave_OBJECTS =  \
+ 	xdmcp-chooser-slave-main.$(OBJEXT) \
+ 	gdm-chooser-server.$(OBJEXT) ck-connector.$(OBJEXT) \
+@@ -189,21 +199,55 @@
+ test_session_DEPENDENCIES = $(top_builddir)/common/libgdmcommon.la \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+-	$(am__DEPENDENCIES_1)
+-sbinSCRIPT_INSTALL = $(INSTALL_SCRIPT)
++	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
++am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
++am__vpath_adj = case $$p in \
++    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
++    *) f=$$p;; \
++  esac;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ SCRIPTS = $(sbin_SCRIPTS)
+-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
++DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
++am__mv = mv -f
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
++	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
++	$(AM_CFLAGS) $(CFLAGS)
++AM_V_CC = $(am__v_CC_$(V))
++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
++am__v_CC_0 = @echo "  CC    " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ CCLD = $(CC)
+-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+-	$(LDFLAGS) -o $@
++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
++	$(AM_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_CCLD = $(am__v_CCLD_$(V))
++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
++am__v_CCLD_0 = @echo "  CCLD  " $@;
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = $(gdm_binary_SOURCES) $(EXTRA_gdm_binary_SOURCES) \
+ 	$(gdm_factory_slave_SOURCES) $(gdm_product_slave_SOURCES) \
+ 	$(gdm_session_worker_SOURCES) $(gdm_simple_slave_SOURCES) \
+@@ -221,6 +265,7 @@
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -261,7 +306,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -276,8 +322,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -318,6 +363,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -327,6 +373,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -337,13 +384,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -357,6 +410,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -395,7 +449,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -431,6 +485,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -445,6 +500,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -517,6 +573,7 @@
+ 	$(EXTRA_DAEMON_LIBS)	\
+ 	$(DAEMON_LIBS)		\
+ 	$(PAM_LIBS)		\
++	$(LIBXKLAVIER_LIBS)	\
+ 	$(NULL)
+ 
+ gdm_simple_slave_SOURCES = \
+@@ -555,6 +612,7 @@
+ 	$(XLIB_LIBS)				\
+ 	$(DAEMON_LIBS)				\
+ 	$(EXTRA_DAEMON_LIBS)                    \
++	$(LIBXKLAVIER_LIBS)			\
+ 	$(NULL)
+ 
+ gdm_factory_slave_SOURCES = \
+@@ -618,6 +676,7 @@
+ 	$(XLIB_LIBS)				\
+ 	$(DAEMON_LIBS)				\
+ 	$(EXTRA_DAEMON_LIBS)                    \
++	$(LIBXKLAVIER_LIBS)			\
+ 	$(NULL)
+ 
+ gdm_xdmcp_chooser_slave_SOURCES = \
+@@ -734,14 +793,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  daemon/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  daemon/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu daemon/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu daemon/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -759,112 +818,160 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ install-libexecPROGRAMS: $(libexec_PROGRAMS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	     || test -f $$p1 \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
+-	  else :; fi; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	for p in $$list; do echo "$$p $$p"; done | \
++	sed 's/$(EXEEXT)$$//' | \
++	while read p p1; do if test -f $$p || test -f $$p1; \
++	  then echo "$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
++	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
++	sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
++	    else { print "f", $$3 "/" $$4, $$1; } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	    test -z "$$files" || { \
++	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
++	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
++	    } \
++	; done
+ 
+ uninstall-libexecPROGRAMS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
++	      -e 's/$$/$(EXEEXT)/' `; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
+ 
+ clean-libexecPROGRAMS:
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ 
+ clean-noinstPROGRAMS:
+-	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ install-sbinPROGRAMS: $(sbin_PROGRAMS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
+-	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	     || test -f $$p1 \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
+-	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \
+-	  else :; fi; \
+-	done
++	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
++	for p in $$list; do echo "$$p $$p"; done | \
++	sed 's/$(EXEEXT)$$//' | \
++	while read p p1; do if test -f $$p || test -f $$p1; \
++	  then echo "$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
++	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
++	sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
++	    else { print "f", $$3 "/" $$4, $$1; } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	    test -z "$$files" || { \
++	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
++	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
++	    } \
++	; done
+ 
+ uninstall-sbinPROGRAMS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(sbindir)/$$f"; \
+-	done
++	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
++	      -e 's/$$/$(EXEEXT)/' `; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(sbindir)" && rm -f $$files
+ 
+ clean-sbinPROGRAMS:
+-	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ gdm-binary$(EXEEXT): $(gdm_binary_OBJECTS) $(gdm_binary_DEPENDENCIES) 
+ 	@rm -f gdm-binary$(EXEEXT)
+-	$(gdm_binary_LINK) $(gdm_binary_OBJECTS) $(gdm_binary_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(gdm_binary_LINK) $(gdm_binary_OBJECTS) $(gdm_binary_LDADD) $(LIBS)
+ gdm-factory-slave$(EXEEXT): $(gdm_factory_slave_OBJECTS) $(gdm_factory_slave_DEPENDENCIES) 
+ 	@rm -f gdm-factory-slave$(EXEEXT)
+-	$(gdm_factory_slave_LINK) $(gdm_factory_slave_OBJECTS) $(gdm_factory_slave_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(gdm_factory_slave_LINK) $(gdm_factory_slave_OBJECTS) $(gdm_factory_slave_LDADD) $(LIBS)
+ gdm-product-slave$(EXEEXT): $(gdm_product_slave_OBJECTS) $(gdm_product_slave_DEPENDENCIES) 
+ 	@rm -f gdm-product-slave$(EXEEXT)
+-	$(gdm_product_slave_LINK) $(gdm_product_slave_OBJECTS) $(gdm_product_slave_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(gdm_product_slave_LINK) $(gdm_product_slave_OBJECTS) $(gdm_product_slave_LDADD) $(LIBS)
+ gdm-session-worker$(EXEEXT): $(gdm_session_worker_OBJECTS) $(gdm_session_worker_DEPENDENCIES) 
+ 	@rm -f gdm-session-worker$(EXEEXT)
+-	$(gdm_session_worker_LINK) $(gdm_session_worker_OBJECTS) $(gdm_session_worker_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(gdm_session_worker_LINK) $(gdm_session_worker_OBJECTS) $(gdm_session_worker_LDADD) $(LIBS)
+ gdm-simple-slave$(EXEEXT): $(gdm_simple_slave_OBJECTS) $(gdm_simple_slave_DEPENDENCIES) 
+ 	@rm -f gdm-simple-slave$(EXEEXT)
+-	$(gdm_simple_slave_LINK) $(gdm_simple_slave_OBJECTS) $(gdm_simple_slave_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(gdm_simple_slave_LINK) $(gdm_simple_slave_OBJECTS) $(gdm_simple_slave_LDADD) $(LIBS)
+ gdm-xdmcp-chooser-slave$(EXEEXT): $(gdm_xdmcp_chooser_slave_OBJECTS) $(gdm_xdmcp_chooser_slave_DEPENDENCIES) 
+ 	@rm -f gdm-xdmcp-chooser-slave$(EXEEXT)
+-	$(LINK) $(gdm_xdmcp_chooser_slave_OBJECTS) $(gdm_xdmcp_chooser_slave_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(gdm_xdmcp_chooser_slave_OBJECTS) $(gdm_xdmcp_chooser_slave_LDADD) $(LIBS)
+ test-hal-seats$(EXEEXT): $(test_hal_seats_OBJECTS) $(test_hal_seats_DEPENDENCIES) 
+ 	@rm -f test-hal-seats$(EXEEXT)
+-	$(LINK) $(test_hal_seats_OBJECTS) $(test_hal_seats_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_hal_seats_OBJECTS) $(test_hal_seats_LDADD) $(LIBS)
+ test-session$(EXEEXT): $(test_session_OBJECTS) $(test_session_DEPENDENCIES) 
+ 	@rm -f test-session$(EXEEXT)
+-	$(LINK) $(test_session_OBJECTS) $(test_session_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_session_OBJECTS) $(test_session_LDADD) $(LIBS)
+ install-sbinSCRIPTS: $(sbin_SCRIPTS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
+-	@list='$(sbin_SCRIPTS)'; for p in $$list; do \
++	@list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  if test -f $$d$$p; then \
+-	    f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
+-	    echo " $(sbinSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
+-	    $(sbinSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(sbindir)/$$f"; \
+-	  else :; fi; \
+-	done
++	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n' \
++	    -e 'h;s|.*|.|' \
++	    -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) { files[d] = files[d] " " $$1; \
++	      if (++n[d] == $(am__install_max)) { \
++		print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
++	    else { print "f", d "/" $$4, $$1 } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	     if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	     test -z "$$files" || { \
++	       echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
++	       $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
++	     } \
++	; done
+ 
+ uninstall-sbinSCRIPTS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(sbin_SCRIPTS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
+-	  echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(sbindir)/$$f"; \
+-	done
++	@list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	       sed -e 's,.*/,,;$(transform)'`; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(sbindir)" && rm -f $$files
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT)
+@@ -919,22 +1026,25 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xdmcp-chooser-slave-main.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+@@ -950,45 +1060,49 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -1009,13 +1123,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -1049,6 +1167,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -1071,6 +1190,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -1079,19 +1200,29 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am: install-libexecPROGRAMS install-sbinPROGRAMS \
+ 	install-sbinSCRIPTS
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -1115,7 +1246,7 @@
+ uninstall-am: uninstall-libexecPROGRAMS uninstall-sbinPROGRAMS \
+ 	uninstall-sbinSCRIPTS
+ 
+-.MAKE: install-am install-strip
++.MAKE: all check install install-am install-strip
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+ 	clean-libexecPROGRAMS clean-libtool clean-noinstPROGRAMS \
+@@ -1168,6 +1299,7 @@
+ 
+ gdm: $(srcdir)/gdm.in
+ 	sed -e 's,[@]sbindir[@],$(sbindir),g' <$(srcdir)/gdm.in >gdm
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/faces/Makefile.in gdm-2.28.1/data/faces/Makefile.in
+--- gdm-2.28.1.orig/data/faces/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/faces/Makefile.in	2009-11-08 11:32:58.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -16,8 +17,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -36,13 +38,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+@@ -50,14 +61,29 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(imagedir)"
+-imageDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(image_DATA)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -98,7 +124,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -113,8 +140,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -155,6 +181,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -164,6 +191,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -174,13 +202,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -194,6 +228,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -232,7 +267,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -268,6 +303,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -282,6 +318,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ imagedir = $(datadir)/pixmaps/faces
+@@ -321,14 +358,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/faces/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/faces/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/faces/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/faces/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -346,6 +383,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -355,20 +393,23 @@
+ install-imageDATA: $(image_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(imagedir)" || $(MKDIR_P) "$(DESTDIR)$(imagedir)"
+-	@list='$(image_DATA)'; for p in $$list; do \
++	@list='$(image_DATA)'; test -n "$(imagedir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(imageDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(imagedir)/$$f'"; \
+-	  $(imageDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(imagedir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(imagedir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(imagedir)" || exit $$?; \
+ 	done
+ 
+ uninstall-imageDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(image_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(imagedir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(imagedir)/$$f"; \
+-	done
++	@list='$(image_DATA)'; test -n "$(imagedir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(imagedir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(imagedir)" && rm -f $$files
+ tags: TAGS
+ TAGS:
+ 
+@@ -392,13 +433,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -429,6 +474,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -447,6 +493,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -455,18 +503,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -501,6 +559,7 @@
+ 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ 	uninstall uninstall-am uninstall-imageDATA
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/greeter-autostart/Makefile.in gdm-2.28.1/data/greeter-autostart/Makefile.in
+--- gdm-2.28.1.orig/data/greeter-autostart/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/greeter-autostart/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -16,8 +17,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -36,13 +38,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+@@ -50,14 +61,29 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(desktopdir)"
+-desktopDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(desktop_DATA)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -98,7 +124,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -113,8 +140,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -155,6 +181,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -164,6 +191,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -174,13 +202,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -194,6 +228,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -232,7 +267,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -268,6 +303,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -282,6 +318,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -333,14 +370,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/greeter-autostart/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/greeter-autostart/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/greeter-autostart/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/greeter-autostart/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -358,6 +395,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -367,20 +405,23 @@
+ install-desktopDATA: $(desktop_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)"
+-	@list='$(desktop_DATA)'; for p in $$list; do \
++	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(desktopDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(desktopdir)/$$f'"; \
+-	  $(desktopDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(desktopdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-desktopDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(desktop_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(desktopdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(desktopdir)/$$f"; \
+-	done
++	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(desktopdir)" && rm -f $$files
+ tags: TAGS
+ TAGS:
+ 
+@@ -404,13 +445,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -441,6 +486,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+ 
+ maintainer-clean-generic:
+@@ -461,6 +507,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -469,18 +517,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -520,6 +578,7 @@
+ 	$(edit) $< >$@
+ 
+ @INTLTOOL_DESKTOP_RULE@
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/Makefile.in gdm-2.28.1/data/Makefile.in
+--- gdm-2.28.1.orig/data/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/Makefile.in	2009-11-08 11:32:58.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -16,8 +17,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -37,13 +39,22 @@
+ 	$(srcdir)/gdm.conf.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES = gdm.conf
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+@@ -58,20 +69,62 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(dbusconfdir)" "$(DESTDIR)$(schemasdir)"
+-dbusconfDATA_INSTALL = $(INSTALL_DATA)
+-schemasDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(dbusconf_DATA) $(schemas_DATA)
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
+   distclean-recursive maintainer-clean-recursive
++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
++	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
++	distdir
+ ETAGS = etags
+ CTAGS = ctags
+ DIST_SUBDIRS = $(SUBDIRS)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
++am__relativize = \
++  dir0=`pwd`; \
++  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
++  sed_rest='s,^[^/]*/*,,'; \
++  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
++  sed_butlast='s,/*[^/]*$$,,'; \
++  while test -n "$$dir1"; do \
++    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
++    if test "$$first" != "."; then \
++      if test "$$first" = ".."; then \
++        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
++        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
++      else \
++        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
++        if test "$$first2" = "$$first"; then \
++          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
++        else \
++          dir2="../$$dir2"; \
++        fi; \
++        dir0="$$dir0"/"$$first"; \
++      fi; \
++    fi; \
++    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
++  done; \
++  reldir="$$dir2"
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -112,7 +165,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -127,8 +181,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -169,6 +222,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -178,6 +232,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -188,13 +243,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -208,6 +269,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -246,13 +308,13 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+ am__tar = @am__tar@
+ am__untar = @am__untar@
+-authdir = $(localstatedir)/gdm
++authdir = $(localstatedir)/lib/gdm
+ bindir = @bindir@
+ build = @build@
+ build_alias = @build_alias@
+@@ -282,6 +344,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -296,6 +359,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -359,14 +423,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -384,6 +448,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ gdm.conf: $(top_builddir)/config.status $(srcdir)/gdm.conf.in
+ 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
+ 
+@@ -395,37 +460,43 @@
+ install-dbusconfDATA: $(dbusconf_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(dbusconfdir)" || $(MKDIR_P) "$(DESTDIR)$(dbusconfdir)"
+-	@list='$(dbusconf_DATA)'; for p in $$list; do \
++	@list='$(dbusconf_DATA)'; test -n "$(dbusconfdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(dbusconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dbusconfdir)/$$f'"; \
+-	  $(dbusconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dbusconfdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dbusconfdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dbusconfdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-dbusconfDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(dbusconf_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(dbusconfdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(dbusconfdir)/$$f"; \
+-	done
++	@list='$(dbusconf_DATA)'; test -n "$(dbusconfdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(dbusconfdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(dbusconfdir)" && rm -f $$files
+ install-schemasDATA: $(schemas_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(schemasdir)" || $(MKDIR_P) "$(DESTDIR)$(schemasdir)"
+-	@list='$(schemas_DATA)'; for p in $$list; do \
++	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(schemasDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(schemasdir)/$$f'"; \
+-	  $(schemasDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(schemasdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(schemasdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(schemasdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-schemasDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(schemas_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(schemasdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(schemasdir)/$$f"; \
+-	done
++	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(schemasdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(schemasdir)" && rm -f $$files
+ 
+ # This directory's subdirectories are mostly independent; you can cd
+ # into them and run `make' without going through this Makefile.
+@@ -451,7 +522,7 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done; \
+ 	if test "$$dot_seen" = "no"; then \
+@@ -485,16 +556,16 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done && test -z "$$fail"
+ tags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ 	done
+ ctags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+ 	done
+ 
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+@@ -502,14 +573,14 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ 	  include_option=--etags-include; \
+@@ -521,39 +592,43 @@
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test ! -f $$subdir/TAGS || \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
++	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
+ 	  fi; \
+ 	done; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -574,29 +649,44 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+-	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test -d "$(distdir)/$$subdir" \
+ 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+ 	    || exit 1; \
+-	    distdir=`$(am__cd) $(distdir) && pwd`; \
+-	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
+-	    (cd $$subdir && \
++	  fi; \
++	done
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	  if test "$$subdir" = .; then :; else \
++	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
++	    $(am__relativize); \
++	    new_distdir=$$reldir; \
++	    dir1=$$subdir; dir2="$(top_distdir)"; \
++	    $(am__relativize); \
++	    new_top_distdir=$$reldir; \
++	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
++	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
++	    ($(am__cd) $$subdir && \
+ 	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$$top_distdir" \
+-	        distdir="$$distdir/$$subdir" \
++	        top_distdir="$$new_top_distdir" \
++	        distdir="$$new_distdir" \
+ 		am__remove_distdir=: \
+ 		am__skip_length_check=: \
++		am__skip_mode_fix=: \
+ 	        distdir) \
+ 	      || exit 1; \
+ 	  fi; \
+@@ -630,6 +720,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+ 
+ maintainer-clean-generic:
+@@ -650,6 +741,8 @@
+ 
+ html: html-recursive
+ 
++html-am:
++
+ info: info-recursive
+ 
+ info-am:
+@@ -657,21 +750,30 @@
+ install-data-am: install-dbusconfDATA install-schemasDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
+-
+ install-dvi: install-dvi-recursive
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-recursive
+ 
++install-html-am:
++
+ install-info: install-info-recursive
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-recursive
+ 
++install-pdf-am:
++
+ install-ps: install-ps-recursive
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-recursive
+@@ -693,9 +795,9 @@
+ uninstall-am: uninstall-dbusconfDATA uninstall-schemasDATA
+ 	@$(NORMAL_INSTALL)
+ 	$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
+-
+-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
+-	install-data-am install-strip uninstall-am
++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
++	install-am install-data-am install-strip tags-recursive \
++	uninstall-am
+ 
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+ 	all all-am check check-am clean clean-generic clean-libtool \
+@@ -878,6 +980,7 @@
+ 	chown -R root:gdm $(DESTDIR)$(workingdir)/.gconf.mandatory || :
+ 	chmod 1750 $(DESTDIR)$(workingdir)/.gconf.mandatory
+ 	chmod 1640 $(DESTDIR)$(workingdir)/.gconf.mandatory/*.xml
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/pixmaps/16x16/Makefile.in gdm-2.28.1/data/pixmaps/16x16/Makefile.in
+--- gdm-2.28.1.orig/data/pixmaps/16x16/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/pixmaps/16x16/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -18,8 +19,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -38,13 +40,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+@@ -52,14 +63,29 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(appsicondir)"
+-appsiconDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(appsicon_DATA)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -100,7 +126,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -115,8 +142,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -157,6 +183,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -166,6 +193,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -176,13 +204,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -196,6 +230,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -234,7 +269,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -270,6 +305,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -284,6 +320,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ appsicondir = \
+@@ -305,14 +342,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/16x16/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/pixmaps/16x16/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/16x16/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/pixmaps/16x16/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -330,6 +367,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -339,20 +377,23 @@
+ install-appsiconDATA: $(appsicon_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(appsicondir)" || $(MKDIR_P) "$(DESTDIR)$(appsicondir)"
+-	@list='$(appsicon_DATA)'; for p in $$list; do \
++	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(appsiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(appsicondir)/$$f'"; \
+-	  $(appsiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(appsicondir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicondir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicondir)" || exit $$?; \
+ 	done
+ 
+ uninstall-appsiconDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(appsicon_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(appsicondir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(appsicondir)/$$f"; \
+-	done
++	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(appsicondir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(appsicondir)" && rm -f $$files
+ tags: TAGS
+ TAGS:
+ 
+@@ -376,13 +417,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -413,6 +458,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -432,6 +478,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -440,18 +488,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -486,6 +544,7 @@
+ 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ 	uninstall uninstall-am uninstall-appsiconDATA
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/pixmaps/32x32/Makefile.in gdm-2.28.1/data/pixmaps/32x32/Makefile.in
+--- gdm-2.28.1.orig/data/pixmaps/32x32/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/pixmaps/32x32/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -18,8 +19,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -38,13 +40,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+@@ -52,14 +63,29 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(appsicondir)"
+-appsiconDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(appsicon_DATA)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -100,7 +126,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -115,8 +142,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -157,6 +183,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -166,6 +193,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -176,13 +204,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -196,6 +230,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -234,7 +269,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -270,6 +305,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -284,6 +320,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ appsicondir = \
+@@ -306,14 +343,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/32x32/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/pixmaps/32x32/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/32x32/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/pixmaps/32x32/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -331,6 +368,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -340,20 +378,23 @@
+ install-appsiconDATA: $(appsicon_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(appsicondir)" || $(MKDIR_P) "$(DESTDIR)$(appsicondir)"
+-	@list='$(appsicon_DATA)'; for p in $$list; do \
++	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(appsiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(appsicondir)/$$f'"; \
+-	  $(appsiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(appsicondir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicondir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicondir)" || exit $$?; \
+ 	done
+ 
+ uninstall-appsiconDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(appsicon_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(appsicondir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(appsicondir)/$$f"; \
+-	done
++	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(appsicondir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(appsicondir)" && rm -f $$files
+ tags: TAGS
+ TAGS:
+ 
+@@ -377,13 +418,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -414,6 +459,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -433,6 +479,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -441,18 +489,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -487,6 +545,7 @@
+ 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ 	uninstall uninstall-am uninstall-appsiconDATA
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/pixmaps/48x48/Makefile.in gdm-2.28.1/data/pixmaps/48x48/Makefile.in
+--- gdm-2.28.1.orig/data/pixmaps/48x48/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/pixmaps/48x48/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -18,8 +19,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -38,13 +40,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+@@ -52,14 +63,29 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(appsicondir)"
+-appsiconDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(appsicon_DATA)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -100,7 +126,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -115,8 +142,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -157,6 +183,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -166,6 +193,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -176,13 +204,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -196,6 +230,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -234,7 +269,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -270,6 +305,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -284,6 +320,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ appsicondir = \
+@@ -307,14 +344,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/48x48/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/pixmaps/48x48/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/48x48/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/pixmaps/48x48/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -332,6 +369,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -341,20 +379,23 @@
+ install-appsiconDATA: $(appsicon_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(appsicondir)" || $(MKDIR_P) "$(DESTDIR)$(appsicondir)"
+-	@list='$(appsicon_DATA)'; for p in $$list; do \
++	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(appsiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(appsicondir)/$$f'"; \
+-	  $(appsiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(appsicondir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicondir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicondir)" || exit $$?; \
+ 	done
+ 
+ uninstall-appsiconDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(appsicon_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(appsicondir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(appsicondir)/$$f"; \
+-	done
++	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(appsicondir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(appsicondir)" && rm -f $$files
+ tags: TAGS
+ TAGS:
+ 
+@@ -378,13 +419,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -415,6 +460,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -434,6 +480,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -442,18 +490,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -488,6 +546,7 @@
+ 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ 	uninstall uninstall-am uninstall-appsiconDATA
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/data/pixmaps/Makefile.in gdm-2.28.1/data/pixmaps/Makefile.in
+--- gdm-2.28.1.orig/data/pixmaps/Makefile.in	2009-10-20 01:50:54.000000000 +0200
++++ gdm-2.28.1/data/pixmaps/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -16,8 +17,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -36,13 +38,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+@@ -57,19 +68,62 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ am__installdirs = "$(DESTDIR)$(pixmapdir)"
+-pixmapDATA_INSTALL = $(INSTALL_DATA)
+ DATA = $(pixmap_DATA)
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
+   distclean-recursive maintainer-clean-recursive
++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
++	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
++	distdir
+ ETAGS = etags
+ CTAGS = ctags
+ DIST_SUBDIRS = $(SUBDIRS)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
++am__relativize = \
++  dir0=`pwd`; \
++  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
++  sed_rest='s,^[^/]*/*,,'; \
++  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
++  sed_butlast='s,/*[^/]*$$,,'; \
++  while test -n "$$dir1"; do \
++    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
++    if test "$$first" != "."; then \
++      if test "$$first" = ".."; then \
++        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
++        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
++      else \
++        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
++        if test "$$first2" = "$$first"; then \
++          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
++        else \
++          dir2="../$$dir2"; \
++        fi; \
++        dir0="$$dir0"/"$$first"; \
++      fi; \
++    fi; \
++    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
++  done; \
++  reldir="$$dir2"
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -110,7 +164,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -125,8 +180,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -167,6 +221,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -176,6 +231,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -186,13 +242,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -206,6 +268,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -244,7 +307,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -280,6 +343,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -294,6 +358,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ SUBDIRS = \
+@@ -309,14 +374,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  data/pixmaps/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu data/pixmaps/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -334,6 +399,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -343,20 +409,23 @@
+ install-pixmapDATA: $(pixmap_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(pixmapdir)" || $(MKDIR_P) "$(DESTDIR)$(pixmapdir)"
+-	@list='$(pixmap_DATA)'; for p in $$list; do \
++	@list='$(pixmap_DATA)'; test -n "$(pixmapdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(pixmapDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pixmapdir)/$$f'"; \
+-	  $(pixmapDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pixmapdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pixmapdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pixmapdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-pixmapDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(pixmap_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(pixmapdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(pixmapdir)/$$f"; \
+-	done
++	@list='$(pixmap_DATA)'; test -n "$(pixmapdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(pixmapdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(pixmapdir)" && rm -f $$files
+ 
+ # This directory's subdirectories are mostly independent; you can cd
+ # into them and run `make' without going through this Makefile.
+@@ -382,7 +451,7 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done; \
+ 	if test "$$dot_seen" = "no"; then \
+@@ -416,16 +485,16 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done && test -z "$$fail"
+ tags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ 	done
+ ctags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+ 	done
+ 
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+@@ -433,14 +502,14 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ 	  include_option=--etags-include; \
+@@ -452,39 +521,43 @@
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test ! -f $$subdir/TAGS || \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
++	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
+ 	  fi; \
+ 	done; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -505,29 +578,44 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+-	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test -d "$(distdir)/$$subdir" \
+ 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+ 	    || exit 1; \
+-	    distdir=`$(am__cd) $(distdir) && pwd`; \
+-	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
+-	    (cd $$subdir && \
++	  fi; \
++	done
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	  if test "$$subdir" = .; then :; else \
++	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
++	    $(am__relativize); \
++	    new_distdir=$$reldir; \
++	    dir1=$$subdir; dir2="$(top_distdir)"; \
++	    $(am__relativize); \
++	    new_top_distdir=$$reldir; \
++	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
++	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
++	    ($(am__cd) $$subdir && \
+ 	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$$top_distdir" \
+-	        distdir="$$distdir/$$subdir" \
++	        top_distdir="$$new_top_distdir" \
++	        distdir="$$new_distdir" \
+ 		am__remove_distdir=: \
+ 		am__skip_length_check=: \
++		am__skip_mode_fix=: \
+ 	        distdir) \
+ 	      || exit 1; \
+ 	  fi; \
+@@ -560,6 +648,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -578,6 +667,8 @@
+ 
+ html: html-recursive
+ 
++html-am:
++
+ info: info-recursive
+ 
+ info-am:
+@@ -586,18 +677,28 @@
+ 
+ install-dvi: install-dvi-recursive
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-recursive
+ 
++install-html-am:
++
+ install-info: install-info-recursive
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-recursive
+ 
++install-pdf-am:
++
+ install-ps: install-ps-recursive
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-recursive
+@@ -618,8 +719,8 @@
+ 
+ uninstall-am: uninstall-pixmapDATA
+ 
+-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
+-	install-strip
++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
++	install-am install-strip tags-recursive
+ 
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+ 	all all-am check check-am clean clean-generic clean-libtool \
+@@ -636,6 +737,7 @@
+ 	tags tags-recursive uninstall uninstall-am \
+ 	uninstall-pixmapDATA
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/depcomp gdm-2.28.1/depcomp
+--- gdm-2.28.1.orig/depcomp	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/depcomp	2009-11-08 11:33:00.000000000 +0100
+@@ -1,10 +1,10 @@
+ #! /bin/sh
+ # depcomp - compile a program generating dependencies as side-effects
+ 
+-scriptversion=2006-10-15.18
++scriptversion=2009-04-28.21; # UTC
+ 
+-# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software
+-# Foundation, Inc.
++# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
++# Software Foundation, Inc.
+ 
+ # This program is free software; you can redistribute it and/or modify
+ # it under the terms of the GNU General Public License as published by
+@@ -17,9 +17,7 @@
+ # GNU General Public License for more details.
+ 
+ # You should have received a copy of the GNU General Public License
+-# along with this program; if not, write to the Free Software
+-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+-# 02110-1301, USA.
++# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ 
+ # As a special exception to the GNU General Public License, if you
+ # distribute this file as part of a program that contains a
+@@ -87,6 +85,15 @@
+    depmode=dashmstdout
+ fi
+ 
++cygpath_u="cygpath -u -f -"
++if test "$depmode" = msvcmsys; then
++   # This is just like msvisualcpp but w/o cygpath translation.
++   # Just convert the backslash-escaped backslashes to single forward
++   # slashes to satisfy depend.m4
++   cygpath_u="sed s,\\\\\\\\,/,g"
++   depmode=msvisualcpp
++fi
++
+ case "$depmode" in
+ gcc3)
+ ## gcc 3 implements dependency tracking that does exactly what
+@@ -192,14 +199,14 @@
+ ' < "$tmpdepfile" \
+     | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
+     tr '
+-' ' ' >> $depfile
+-    echo >> $depfile
++' ' ' >> "$depfile"
++    echo >> "$depfile"
+ 
+     # The second pass generates a dummy entry for each header file.
+     tr ' ' '
+ ' < "$tmpdepfile" \
+    | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
+-   >> $depfile
++   >> "$depfile"
+   else
+     # The sourcefile does not contain any dependencies, so just
+     # store a dummy comment line, to avoid errors with the Makefile
+@@ -215,34 +222,39 @@
+   # current directory.  Also, the AIX compiler puts `$object:' at the
+   # start of each line; $object doesn't have directory information.
+   # Version 6 uses the directory in both cases.
+-  stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
+-  tmpdepfile="$stripped.u"
++  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
++  test "x$dir" = "x$object" && dir=
++  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
+   if test "$libtool" = yes; then
++    tmpdepfile1=$dir$base.u
++    tmpdepfile2=$base.u
++    tmpdepfile3=$dir.libs/$base.u
+     "$@" -Wc,-M
+   else
++    tmpdepfile1=$dir$base.u
++    tmpdepfile2=$dir$base.u
++    tmpdepfile3=$dir$base.u
+     "$@" -M
+   fi
+   stat=$?
+ 
+-  if test -f "$tmpdepfile"; then :
+-  else
+-    stripped=`echo "$stripped" | sed 's,^.*/,,'`
+-    tmpdepfile="$stripped.u"
+-  fi
+-
+   if test $stat -eq 0; then :
+   else
+-    rm -f "$tmpdepfile"
++    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
+     exit $stat
+   fi
+ 
++  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
++  do
++    test -f "$tmpdepfile" && break
++  done
+   if test -f "$tmpdepfile"; then
+-    outname="$stripped.o"
+     # Each line is of the form `foo.o: dependent.h'.
+     # Do two passes, one to just change these to
+     # `$object: dependent.h' and one to simply `dependent.h:'.
+-    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
+-    sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
++    sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
++    # That's a tab and a space in the [].
++    sed -e 's,^.*\.[a-z]*:[	 ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
+   else
+     # The sourcefile does not contain any dependencies, so just
+     # store a dummy comment line, to avoid errors with the Makefile
+@@ -323,7 +335,12 @@
+   if test -f "$tmpdepfile"; then
+     sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
+     # Add `dependent.h:' lines.
+-    sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile"
++    sed -ne '2,${
++	       s/^ *//
++	       s/ \\*$//
++	       s/$/:/
++	       p
++	     }' "$tmpdepfile" >> "$depfile"
+   else
+     echo "#dummy" > "$depfile"
+   fi
+@@ -399,7 +416,7 @@
+ 
+   # Remove the call to Libtool.
+   if test "$libtool" = yes; then
+-    while test $1 != '--mode=compile'; do
++    while test "X$1" != 'X--mode=compile'; do
+       shift
+     done
+     shift
+@@ -450,32 +467,39 @@
+   "$@" || exit $?
+   # Remove any Libtool call
+   if test "$libtool" = yes; then
+-    while test $1 != '--mode=compile'; do
++    while test "X$1" != 'X--mode=compile'; do
+       shift
+     done
+     shift
+   fi
+   # X makedepend
+   shift
+-  cleared=no
+-  for arg in "$@"; do
++  cleared=no eat=no
++  for arg
++  do
+     case $cleared in
+     no)
+       set ""; shift
+       cleared=yes ;;
+     esac
++    if test $eat = yes; then
++      eat=no
++      continue
++    fi
+     case "$arg" in
+     -D*|-I*)
+       set fnord "$@" "$arg"; shift ;;
+     # Strip any option that makedepend may not understand.  Remove
+     # the object too, otherwise makedepend will parse it as a source file.
++    -arch)
++      eat=yes ;;
+     -*|$object)
+       ;;
+     *)
+       set fnord "$@" "$arg"; shift ;;
+     esac
+   done
+-  obj_suffix="`echo $object | sed 's/^.*\././'`"
++  obj_suffix=`echo "$object" | sed 's/^.*\././'`
+   touch "$tmpdepfile"
+   ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
+   rm -f "$depfile"
+@@ -495,7 +519,7 @@
+ 
+   # Remove the call to Libtool.
+   if test "$libtool" = yes; then
+-    while test $1 != '--mode=compile'; do
++    while test "X$1" != 'X--mode=compile'; do
+       shift
+     done
+     shift
+@@ -533,13 +557,27 @@
+ 
+ msvisualcpp)
+   # Important note: in order to support this mode, a compiler *must*
+-  # always write the preprocessed file to stdout, regardless of -o,
+-  # because we must use -o when running libtool.
++  # always write the preprocessed file to stdout.
+   "$@" || exit $?
++
++  # Remove the call to Libtool.
++  if test "$libtool" = yes; then
++    while test "X$1" != 'X--mode=compile'; do
++      shift
++    done
++    shift
++  fi
++
+   IFS=" "
+   for arg
+   do
+     case "$arg" in
++    -o)
++      shift
++      ;;
++    $object)
++      shift
++      ;;
+     "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
+ 	set fnord "$@"
+ 	shift
+@@ -552,16 +590,23 @@
+ 	;;
+     esac
+   done
+-  "$@" -E |
+-  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
++  "$@" -E 2>/dev/null |
++  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
+   rm -f "$depfile"
+   echo "$object : \\" > "$depfile"
+-  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
++  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
+   echo "	" >> "$depfile"
+-  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
++  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
+   rm -f "$tmpdepfile"
+   ;;
+ 
++msvcmsys)
++  # This case exists only to let depend.m4 do its work.  It works by
++  # looking at the text of this script.  This case will never be run,
++  # since it is checked for above.
++  exit 1
++  ;;
++
+ none)
+   exec "$@"
+   ;;
+@@ -580,5 +625,6 @@
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
+ # time-stamp-start: "scriptversion="
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
+-# time-stamp-end: "$"
++# time-stamp-time-zone: "UTC"
++# time-stamp-end: "; # UTC"
+ # End:
+diff -urN gdm-2.28.1.orig/docs/Makefile.in gdm-2.28.1/docs/Makefile.in
+--- gdm-2.28.1.orig/docs/Makefile.in	2009-10-20 01:54:20.000000000 +0200
++++ gdm-2.28.1/docs/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -39,8 +40,9 @@
+ ################################################################################
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -60,19 +62,29 @@
+ subdir = docs
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -113,7 +125,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -128,8 +141,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -170,6 +182,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -179,6 +192,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -189,13 +203,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -209,6 +229,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -247,7 +268,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -283,6 +304,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -297,6 +319,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ _clean_doc_header = $(if $(DOC_H_FILE),clean-doc-header)
+@@ -419,14 +442,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  docs/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  docs/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu docs/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -444,6 +467,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -473,13 +497,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -510,6 +538,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -528,6 +557,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -536,18 +567,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -992,6 +1033,7 @@
+ 
+ #man_MANS = gdm.1
+ #EXTRA_DIST = gdm.1
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/gui/Makefile.in gdm-2.28.1/gui/Makefile.in
+--- gdm-2.28.1.orig/gui/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/gui/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -15,8 +16,9 @@
+ @SET_MAKE@
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -35,13 +37,22 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ SOURCES =
+ DIST_SOURCES =
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
+@@ -53,13 +64,42 @@
+ 	ps-recursive uninstall-recursive
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
+   distclean-recursive maintainer-clean-recursive
++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
++	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
++	distdir
+ ETAGS = etags
+ CTAGS = ctags
+ DIST_SUBDIRS = $(SUBDIRS)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
++am__relativize = \
++  dir0=`pwd`; \
++  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
++  sed_rest='s,^[^/]*/*,,'; \
++  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
++  sed_butlast='s,/*[^/]*$$,,'; \
++  while test -n "$$dir1"; do \
++    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
++    if test "$$first" != "."; then \
++      if test "$$first" = ".."; then \
++        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
++        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
++      else \
++        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
++        if test "$$first2" = "$$first"; then \
++          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
++        else \
++          dir2="../$$dir2"; \
++        fi; \
++        dir0="$$dir0"/"$$first"; \
++      fi; \
++    fi; \
++    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
++  done; \
++  reldir="$$dir2"
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -100,7 +140,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -115,8 +156,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -157,6 +197,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -166,6 +207,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -176,13 +218,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -196,6 +244,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -234,7 +283,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -270,6 +319,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -284,6 +334,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -300,14 +351,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  gui/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu gui/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -325,6 +376,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -356,7 +408,7 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done; \
+ 	if test "$$dot_seen" = "no"; then \
+@@ -390,16 +442,16 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done && test -z "$$fail"
+ tags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ 	done
+ ctags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+ 	done
+ 
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+@@ -407,14 +459,14 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ 	  include_option=--etags-include; \
+@@ -426,39 +478,43 @@
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test ! -f $$subdir/TAGS || \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
++	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
+ 	  fi; \
+ 	done; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -479,29 +535,44 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+-	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test -d "$(distdir)/$$subdir" \
+ 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+ 	    || exit 1; \
+-	    distdir=`$(am__cd) $(distdir) && pwd`; \
+-	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
+-	    (cd $$subdir && \
++	  fi; \
++	done
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	  if test "$$subdir" = .; then :; else \
++	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
++	    $(am__relativize); \
++	    new_distdir=$$reldir; \
++	    dir1=$$subdir; dir2="$(top_distdir)"; \
++	    $(am__relativize); \
++	    new_top_distdir=$$reldir; \
++	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
++	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
++	    ($(am__cd) $$subdir && \
+ 	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$$top_distdir" \
+-	        distdir="$$distdir/$$subdir" \
++	        top_distdir="$$new_top_distdir" \
++	        distdir="$$new_distdir" \
+ 		am__remove_distdir=: \
+ 		am__skip_length_check=: \
++		am__skip_mode_fix=: \
+ 	        distdir) \
+ 	      || exit 1; \
+ 	  fi; \
+@@ -531,6 +602,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -549,6 +621,8 @@
+ 
+ html: html-recursive
+ 
++html-am:
++
+ info: info-recursive
+ 
+ info-am:
+@@ -557,18 +631,28 @@
+ 
+ install-dvi: install-dvi-recursive
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-recursive
+ 
++install-html-am:
++
+ install-info: install-info-recursive
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-recursive
+ 
++install-pdf-am:
++
+ install-ps: install-ps-recursive
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-recursive
+@@ -589,8 +673,8 @@
+ 
+ uninstall-am:
+ 
+-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
+-	install-strip
++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
++	install-am install-strip tags-recursive
+ 
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+ 	all all-am check check-am clean clean-generic clean-libtool \
+@@ -606,6 +690,7 @@
+ 	mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
+ 	uninstall uninstall-am
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/gui/simple-chooser/Makefile.in gdm-2.28.1/gui/simple-chooser/Makefile.in
+--- gdm-2.28.1.orig/gui/simple-chooser/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/gui/simple-chooser/Makefile.in	2009-11-08 11:32:59.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -16,8 +17,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -38,16 +40,18 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
+ am__EXEEXT_1 =
+ am__installdirs = "$(DESTDIR)$(libexecdir)"
+-libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+ PROGRAMS = $(libexec_PROGRAMS)
+ am__objects_1 =
+ am_gdm_host_chooser_OBJECTS = gdm-host-chooser.$(OBJEXT) \
+@@ -59,6 +63,9 @@
+ 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
++AM_V_lt = $(am__v_lt_$(V))
++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
++am__v_lt_0 = --silent
+ am_gdm_simple_chooser_OBJECTS = chooser-main.$(OBJEXT) \
+ 	gdm-chooser-host.$(OBJEXT) gdm-host-chooser-widget.$(OBJEXT) \
+ 	gdm-host-chooser-dialog.$(OBJEXT) gdm-chooser-client.$(OBJEXT) \
+@@ -68,18 +75,32 @@
+ 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
+-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
++DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
++am__mv = mv -f
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
++	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
++	$(AM_CFLAGS) $(CFLAGS)
++AM_V_CC = $(am__v_CC_$(V))
++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
++am__v_CC_0 = @echo "  CC    " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ CCLD = $(CC)
+-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+-	$(LDFLAGS) -o $@
++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
++	$(AM_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_CCLD = $(am__v_CCLD_$(V))
++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
++am__v_CCLD_0 = @echo "  CCLD  " $@;
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = $(gdm_host_chooser_SOURCES) $(gdm_simple_chooser_SOURCES)
+ DIST_SOURCES = $(gdm_host_chooser_SOURCES) \
+ 	$(gdm_simple_chooser_SOURCES)
+@@ -89,6 +110,7 @@
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -129,7 +151,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -144,8 +167,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -186,6 +208,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -195,6 +218,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -205,13 +229,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -225,6 +255,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -263,7 +294,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -299,6 +330,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -313,6 +345,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -385,14 +418,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/simple-chooser/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  gui/simple-chooser/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/simple-chooser/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu gui/simple-chooser/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -410,40 +443,56 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ install-libexecPROGRAMS: $(libexec_PROGRAMS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	     || test -f $$p1 \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
+-	  else :; fi; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	for p in $$list; do echo "$$p $$p"; done | \
++	sed 's/$(EXEEXT)$$//' | \
++	while read p p1; do if test -f $$p || test -f $$p1; \
++	  then echo "$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
++	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
++	sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
++	    else { print "f", $$3 "/" $$4, $$1; } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	    test -z "$$files" || { \
++	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
++	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
++	    } \
++	; done
+ 
+ uninstall-libexecPROGRAMS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
++	      -e 's/$$/$(EXEEXT)/' `; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
+ 
+ clean-libexecPROGRAMS:
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ gdm-host-chooser$(EXEEXT): $(gdm_host_chooser_OBJECTS) $(gdm_host_chooser_DEPENDENCIES) 
+ 	@rm -f gdm-host-chooser$(EXEEXT)
+-	$(LINK) $(gdm_host_chooser_OBJECTS) $(gdm_host_chooser_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(gdm_host_chooser_OBJECTS) $(gdm_host_chooser_LDADD) $(LIBS)
+ gdm-simple-chooser$(EXEEXT): $(gdm_simple_chooser_OBJECTS) $(gdm_simple_chooser_DEPENDENCIES) 
+ 	@rm -f gdm-simple-chooser$(EXEEXT)
+-	$(LINK) $(gdm_simple_chooser_OBJECTS) $(gdm_simple_chooser_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(gdm_simple_chooser_OBJECTS) $(gdm_simple_chooser_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT)
+@@ -460,22 +509,25 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gdm-host-chooser.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+@@ -491,45 +543,49 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -550,13 +606,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -587,6 +647,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -608,6 +669,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -616,18 +679,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am: install-libexecPROGRAMS
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -666,6 +739,7 @@
+ 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+ 	tags uninstall uninstall-am uninstall-libexecPROGRAMS
+ 
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/gui/simple-greeter/libnotificationarea/Makefile.in gdm-2.28.1/gui/simple-greeter/libnotificationarea/Makefile.in
+--- gdm-2.28.1.orig/gui/simple-greeter/libnotificationarea/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/gui/simple-greeter/libnotificationarea/Makefile.in	2009-11-08 11:33:00.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -17,8 +18,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -38,13 +40,16 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
+ LTLIBRARIES = $(noinst_LTLIBRARIES)
+ am__DEPENDENCIES_1 =
+ libnotificationarea_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
+@@ -53,25 +58,43 @@
+ am_libnotificationarea_la_OBJECTS = fixedtip.lo obox.lo na-tray.lo \
+ 	na-tray-manager.lo na-marshal.lo $(am__objects_1)
+ libnotificationarea_la_OBJECTS = $(am_libnotificationarea_la_OBJECTS)
+-libnotificationarea_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
+-	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
+-	$(libnotificationarea_la_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_lt = $(am__v_lt_$(V))
++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
++am__v_lt_0 = --silent
++libnotificationarea_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
++	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
++	$(AM_CFLAGS) $(CFLAGS) $(libnotificationarea_la_LDFLAGS) \
++	$(LDFLAGS) -o $@
+ PROGRAMS = $(noinst_PROGRAMS)
+ am_testtray_OBJECTS = testtray.$(OBJEXT) $(am__objects_1)
+ testtray_OBJECTS = $(am_testtray_OBJECTS)
+ testtray_DEPENDENCIES = libnotificationarea.la $(am__DEPENDENCIES_1)
+-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
++DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
++am__mv = mv -f
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
++	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
++	$(AM_CFLAGS) $(CFLAGS)
++AM_V_CC = $(am__v_CC_$(V))
++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
++am__v_CC_0 = @echo "  CC    " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ CCLD = $(CC)
+-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+-	$(LDFLAGS) -o $@
++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
++	$(AM_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_CCLD = $(am__v_CCLD_$(V))
++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
++am__v_CCLD_0 = @echo "  CCLD  " $@;
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = $(libnotificationarea_la_SOURCES) $(testtray_SOURCES)
+ DIST_SOURCES = $(libnotificationarea_la_SOURCES) $(testtray_SOURCES)
+ ETAGS = etags
+@@ -80,6 +103,7 @@
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -120,7 +144,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -135,8 +160,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -177,6 +201,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -186,6 +211,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -196,13 +222,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -216,6 +248,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -254,7 +287,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -290,6 +323,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -304,6 +338,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -372,14 +407,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/simple-greeter/libnotificationarea/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  gui/simple-greeter/libnotificationarea/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/simple-greeter/libnotificationarea/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu gui/simple-greeter/libnotificationarea/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -397,6 +432,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ clean-noinstLTLIBRARIES:
+ 	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
+@@ -407,17 +443,19 @@
+ 	  rm -f "$${dir}/so_locations"; \
+ 	done
+ libnotificationarea.la: $(libnotificationarea_la_OBJECTS) $(libnotificationarea_la_DEPENDENCIES) 
+-	$(libnotificationarea_la_LINK)  $(libnotificationarea_la_OBJECTS) $(libnotificationarea_la_LIBADD) $(LIBS)
++	$(AM_V_CCLD)$(libnotificationarea_la_LINK)  $(libnotificationarea_la_OBJECTS) $(libnotificationarea_la_LIBADD) $(LIBS)
+ 
+ clean-noinstPROGRAMS:
+-	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ testtray$(EXEEXT): $(testtray_OBJECTS) $(testtray_DEPENDENCIES) 
+ 	@rm -f testtray$(EXEEXT)
+-	$(LINK) $(testtray_OBJECTS) $(testtray_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(testtray_OBJECTS) $(testtray_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT)
+@@ -433,22 +471,25 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/testtray.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+@@ -464,45 +505,49 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -523,13 +568,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -559,6 +608,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 
+ maintainer-clean-generic:
+ 	@echo "This command is intended for maintainers to use"
+@@ -581,6 +631,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -589,18 +641,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am:
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -623,7 +685,7 @@
+ 
+ uninstall-am:
+ 
+-.MAKE: install-am install-strip
++.MAKE: all check install install-am install-strip
+ 
+ .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
+ 	clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
+@@ -646,6 +708,7 @@
+ na-marshal.c: na-marshal.list $(GLIB_GENMARSHAL)
+ 	echo "#include \"na-marshal.h\"" > $@ && \
+ 	$(GLIB_GENMARSHAL) $< --body --prefix=_na_marshal >> $@
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/gui/simple-greeter/Makefile.in gdm-2.28.1/gui/simple-greeter/Makefile.in
+--- gdm-2.28.1.orig/gui/simple-greeter/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/gui/simple-greeter/Makefile.in	2009-11-08 11:33:00.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -18,8 +19,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -45,13 +47,16 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
+ LTLIBRARIES = $(noinst_LTLIBRARIES)
+ am__DEPENDENCIES_1 =
+ libgdmuser_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
+@@ -59,12 +64,14 @@
+ am_libgdmuser_la_OBJECTS = libgdmuser_la-gdm-user.lo \
+ 	libgdmuser_la-gdm-user-manager.lo $(am__objects_1)
+ libgdmuser_la_OBJECTS = $(am_libgdmuser_la_OBJECTS)
+-libgdmuser_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
++AM_V_lt = $(am__v_lt_$(V))
++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
++am__v_lt_0 = --silent
++libgdmuser_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
+ 	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libgdmuser_la_CFLAGS) \
+ 	$(CFLAGS) $(libgdmuser_la_LDFLAGS) $(LDFLAGS) -o $@
+ am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(gladedir)" \
+ 	"$(DESTDIR)$(schemasdir)"
+-libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+ am__EXEEXT_1 =
+ PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS)
+ am_gdm_simple_greeter_OBJECTS = greeter-main.$(OBJEXT) \
+@@ -177,18 +184,32 @@
+ test_user_manager_OBJECTS = $(am_test_user_manager_OBJECTS)
+ test_user_manager_DEPENDENCIES = libgdmuser.la $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
+-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
++DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
++am__mv = mv -f
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
++	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
++	$(AM_CFLAGS) $(CFLAGS)
++AM_V_CC = $(am__v_CC_$(V))
++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
++am__v_CC_0 = @echo "  CC    " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ CCLD = $(CC)
+-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+-	$(LDFLAGS) -o $@
++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
++	$(AM_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_CCLD = $(am__v_CCLD_$(V))
++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
++am__v_CCLD_0 = @echo "  CCLD  " $@;
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = $(libgdmuser_la_SOURCES) $(gdm_simple_greeter_SOURCES) \
+ 	$(test_filesystem_type_SOURCES) \
+ 	$(test_greeter_login_window_SOURCES) \
+@@ -215,19 +236,61 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+-gladeDATA_INSTALL = $(INSTALL_DATA)
+-schemasDATA_INSTALL = $(INSTALL_DATA)
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ DATA = $(glade_DATA) $(schemas_DATA)
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
+   distclean-recursive maintainer-clean-recursive
++AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
++	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
++	distdir
+ ETAGS = etags
+ CTAGS = ctags
+ DIST_SUBDIRS = $(SUBDIRS)
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
++am__relativize = \
++  dir0=`pwd`; \
++  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
++  sed_rest='s,^[^/]*/*,,'; \
++  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
++  sed_butlast='s,/*[^/]*$$,,'; \
++  while test -n "$$dir1"; do \
++    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
++    if test "$$first" != "."; then \
++      if test "$$first" = ".."; then \
++        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
++        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
++      else \
++        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
++        if test "$$first2" = "$$first"; then \
++          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
++        else \
++          dir2="../$$dir2"; \
++        fi; \
++        dir0="$$dir0"/"$$first"; \
++      fi; \
++    fi; \
++    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
++  done; \
++  reldir="$$dir2"
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -268,7 +331,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -283,8 +347,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -325,6 +388,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -334,6 +398,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -344,13 +409,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -364,6 +435,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -402,7 +474,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -438,6 +510,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -452,6 +525,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -792,14 +866,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/simple-greeter/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  gui/simple-greeter/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/simple-greeter/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu gui/simple-greeter/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -817,6 +891,7 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ 
+ clean-noinstLTLIBRARIES:
+ 	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
+@@ -827,75 +902,92 @@
+ 	  rm -f "$${dir}/so_locations"; \
+ 	done
+ libgdmuser.la: $(libgdmuser_la_OBJECTS) $(libgdmuser_la_DEPENDENCIES) 
+-	$(libgdmuser_la_LINK)  $(libgdmuser_la_OBJECTS) $(libgdmuser_la_LIBADD) $(LIBS)
++	$(AM_V_CCLD)$(libgdmuser_la_LINK)  $(libgdmuser_la_OBJECTS) $(libgdmuser_la_LIBADD) $(LIBS)
+ install-libexecPROGRAMS: $(libexec_PROGRAMS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	     || test -f $$p1 \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
+-	  else :; fi; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	for p in $$list; do echo "$$p $$p"; done | \
++	sed 's/$(EXEEXT)$$//' | \
++	while read p p1; do if test -f $$p || test -f $$p1; \
++	  then echo "$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
++	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
++	sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
++	    else { print "f", $$3 "/" $$4, $$1; } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	    test -z "$$files" || { \
++	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
++	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
++	    } \
++	; done
+ 
+ uninstall-libexecPROGRAMS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
++	      -e 's/$$/$(EXEEXT)/' `; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
+ 
+ clean-libexecPROGRAMS:
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ 
+ clean-noinstPROGRAMS:
+-	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ gdm-simple-greeter$(EXEEXT): $(gdm_simple_greeter_OBJECTS) $(gdm_simple_greeter_DEPENDENCIES) 
+ 	@rm -f gdm-simple-greeter$(EXEEXT)
+-	$(LINK) $(gdm_simple_greeter_OBJECTS) $(gdm_simple_greeter_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(gdm_simple_greeter_OBJECTS) $(gdm_simple_greeter_LDADD) $(LIBS)
+ test-filesystem-type$(EXEEXT): $(test_filesystem_type_OBJECTS) $(test_filesystem_type_DEPENDENCIES) 
+ 	@rm -f test-filesystem-type$(EXEEXT)
+-	$(LINK) $(test_filesystem_type_OBJECTS) $(test_filesystem_type_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_filesystem_type_OBJECTS) $(test_filesystem_type_LDADD) $(LIBS)
+ test-greeter-login-window$(EXEEXT): $(test_greeter_login_window_OBJECTS) $(test_greeter_login_window_DEPENDENCIES) 
+ 	@rm -f test-greeter-login-window$(EXEEXT)
+-	$(LINK) $(test_greeter_login_window_OBJECTS) $(test_greeter_login_window_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_greeter_login_window_OBJECTS) $(test_greeter_login_window_LDADD) $(LIBS)
+ test-greeter-panel$(EXEEXT): $(test_greeter_panel_OBJECTS) $(test_greeter_panel_DEPENDENCIES) 
+ 	@rm -f test-greeter-panel$(EXEEXT)
+-	$(LINK) $(test_greeter_panel_OBJECTS) $(test_greeter_panel_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_greeter_panel_OBJECTS) $(test_greeter_panel_LDADD) $(LIBS)
+ test-language-chooser$(EXEEXT): $(test_language_chooser_OBJECTS) $(test_language_chooser_DEPENDENCIES) 
+ 	@rm -f test-language-chooser$(EXEEXT)
+-	$(LINK) $(test_language_chooser_OBJECTS) $(test_language_chooser_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_language_chooser_OBJECTS) $(test_language_chooser_LDADD) $(LIBS)
+ test-languages$(EXEEXT): $(test_languages_OBJECTS) $(test_languages_DEPENDENCIES) 
+ 	@rm -f test-languages$(EXEEXT)
+-	$(LINK) $(test_languages_OBJECTS) $(test_languages_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_languages_OBJECTS) $(test_languages_LDADD) $(LIBS)
+ test-layout-chooser$(EXEEXT): $(test_layout_chooser_OBJECTS) $(test_layout_chooser_DEPENDENCIES) 
+ 	@rm -f test-layout-chooser$(EXEEXT)
+-	$(LINK) $(test_layout_chooser_OBJECTS) $(test_layout_chooser_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_layout_chooser_OBJECTS) $(test_layout_chooser_LDADD) $(LIBS)
+ test-remote-login-window$(EXEEXT): $(test_remote_login_window_OBJECTS) $(test_remote_login_window_DEPENDENCIES) 
+ 	@rm -f test-remote-login-window$(EXEEXT)
+-	$(LINK) $(test_remote_login_window_OBJECTS) $(test_remote_login_window_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_remote_login_window_OBJECTS) $(test_remote_login_window_LDADD) $(LIBS)
+ test-sessions$(EXEEXT): $(test_sessions_OBJECTS) $(test_sessions_DEPENDENCIES) 
+ 	@rm -f test-sessions$(EXEEXT)
+-	$(LINK) $(test_sessions_OBJECTS) $(test_sessions_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_sessions_OBJECTS) $(test_sessions_LDADD) $(LIBS)
+ test-user-chooser$(EXEEXT): $(test_user_chooser_OBJECTS) $(test_user_chooser_DEPENDENCIES) 
+ 	@rm -f test-user-chooser$(EXEEXT)
+-	$(LINK) $(test_user_chooser_OBJECTS) $(test_user_chooser_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_user_chooser_OBJECTS) $(test_user_chooser_LDADD) $(LIBS)
+ test-user-manager$(EXEEXT): $(test_user_manager_OBJECTS) $(test_user_manager_DEPENDENCIES) 
+ 	@rm -f test-user-manager$(EXEEXT)
+-	$(LINK) $(test_user_manager_OBJECTS) $(test_user_manager_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(test_user_manager_OBJECTS) $(test_user_manager_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT)
+@@ -942,39 +1034,44 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test-user-manager.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+ 
+ libgdmuser_la-gdm-user.lo: gdm-user.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user.Tpo -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmuser_la-gdm-user.Tpo $(DEPDIR)/libgdmuser_la-gdm-user.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user.Tpo -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmuser_la-gdm-user.Tpo $(DEPDIR)/libgdmuser_la-gdm-user.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-user.c' object='libgdmuser_la-gdm-user.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
+ 
+ libgdmuser_la-gdm-user-manager.lo: gdm-user-manager.c
+- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user-manager.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo $(DEPDIR)/libgdmuser_la-gdm-user-manager.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user-manager.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo $(DEPDIR)/libgdmuser_la-gdm-user-manager.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-user-manager.c' object='libgdmuser_la-gdm-user-manager.lo' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
++ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
+ 
+ mostlyclean-libtool:
+ 	-rm -f *.lo
+@@ -984,37 +1081,43 @@
+ install-gladeDATA: $(glade_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(gladedir)" || $(MKDIR_P) "$(DESTDIR)$(gladedir)"
+-	@list='$(glade_DATA)'; for p in $$list; do \
++	@list='$(glade_DATA)'; test -n "$(gladedir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(gladeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gladedir)/$$f'"; \
+-	  $(gladeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gladedir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(gladedir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(gladedir)" || exit $$?; \
+ 	done
+ 
+ uninstall-gladeDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(glade_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(gladedir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(gladedir)/$$f"; \
+-	done
++	@list='$(glade_DATA)'; test -n "$(gladedir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(gladedir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(gladedir)" && rm -f $$files
+ install-schemasDATA: $(schemas_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(schemasdir)" || $(MKDIR_P) "$(DESTDIR)$(schemasdir)"
+-	@list='$(schemas_DATA)'; for p in $$list; do \
++	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(schemasDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(schemasdir)/$$f'"; \
+-	  $(schemasDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(schemasdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(schemasdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(schemasdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-schemasDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(schemas_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(schemasdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(schemasdir)/$$f"; \
+-	done
++	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(schemasdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(schemasdir)" && rm -f $$files
+ 
+ # This directory's subdirectories are mostly independent; you can cd
+ # into them and run `make' without going through this Makefile.
+@@ -1040,7 +1143,7 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done; \
+ 	if test "$$dot_seen" = "no"; then \
+@@ -1074,16 +1177,16 @@
+ 	  else \
+ 	    local_target="$$target"; \
+ 	  fi; \
+-	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
++	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
+ 	  || eval $$failcom; \
+ 	done && test -z "$$fail"
+ tags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ 	done
+ ctags-recursive:
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+-	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
++	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
+ 	done
+ 
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+@@ -1091,14 +1194,14 @@
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
+ 	  include_option=--etags-include; \
+@@ -1110,39 +1213,43 @@
+ 	list='$(SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test ! -f $$subdir/TAGS || \
+-	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
++	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
+ 	  fi; \
+ 	done; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -1163,29 +1270,44 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+-	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+ 	  if test "$$subdir" = .; then :; else \
+ 	    test -d "$(distdir)/$$subdir" \
+ 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
+ 	    || exit 1; \
+-	    distdir=`$(am__cd) $(distdir) && pwd`; \
+-	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
+-	    (cd $$subdir && \
++	  fi; \
++	done
++	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
++	  if test "$$subdir" = .; then :; else \
++	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
++	    $(am__relativize); \
++	    new_distdir=$$reldir; \
++	    dir1=$$subdir; dir2="$(top_distdir)"; \
++	    $(am__relativize); \
++	    new_top_distdir=$$reldir; \
++	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
++	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
++	    ($(am__cd) $$subdir && \
+ 	      $(MAKE) $(AM_MAKEFLAGS) \
+-	        top_distdir="$$top_distdir" \
+-	        distdir="$$distdir/$$subdir" \
++	        top_distdir="$$new_top_distdir" \
++	        distdir="$$new_distdir" \
+ 		am__remove_distdir=: \
+ 		am__skip_length_check=: \
++		am__skip_mode_fix=: \
+ 	        distdir) \
+ 	      || exit 1; \
+ 	  fi; \
+@@ -1218,6 +1340,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+ 
+ maintainer-clean-generic:
+@@ -1241,6 +1364,8 @@
+ 
+ html: html-recursive
+ 
++html-am:
++
+ info: info-recursive
+ 
+ info-am:
+@@ -1250,18 +1375,28 @@
+ 
+ install-dvi: install-dvi-recursive
+ 
++install-dvi-am:
++
+ install-exec-am: install-libexecPROGRAMS
+ 
+ install-html: install-html-recursive
+ 
++install-html-am:
++
+ install-info: install-info-recursive
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-recursive
+ 
++install-pdf-am:
++
+ install-ps: install-ps-recursive
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-recursive
+@@ -1285,8 +1420,8 @@
+ uninstall-am: uninstall-gladeDATA uninstall-libexecPROGRAMS \
+ 	uninstall-schemasDATA
+ 
+-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
+-	install-strip
++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
++	install-am install-strip tags-recursive
+ 
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
+ 	all all-am check check-am clean clean-generic \
+@@ -1317,6 +1452,7 @@
+ @GCONF_SCHEMAS_INSTALL_TRUE@		done \
+ @GCONF_SCHEMAS_INSTALL_TRUE@	fi
+ @GCONF_SCHEMAS_INSTALL_FALSE at install-data-local:
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/gui/user-switch-applet/Makefile.in gdm-2.28.1/gui/user-switch-applet/Makefile.in
+--- gdm-2.28.1.orig/gui/user-switch-applet/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/gui/user-switch-applet/Makefile.in	2009-11-08 11:33:00.000000000 +0100
+@@ -1,8 +1,9 @@
+-# Makefile.in generated by automake 1.10 from Makefile.am.
++# Makefile.in generated by automake 1.11 from Makefile.am.
+ # @configure_input@
+ 
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+-# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
++# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
++# Inc.
+ # This Makefile.in is free software; the Free Software Foundation
+ # gives unlimited permission to copy and/or distribute it,
+ # with or without modifications, as long as this notice is preserved.
+@@ -17,8 +18,9 @@
+ 
+ VPATH = @srcdir@
+ pkgdatadir = $(datadir)/@PACKAGE@
+-pkglibdir = $(libdir)/@PACKAGE@
+ pkgincludedir = $(includedir)/@PACKAGE@
++pkglibdir = $(libdir)/@PACKAGE@
++pkglibexecdir = $(libexecdir)/@PACKAGE@
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
+ install_sh_DATA = $(install_sh) -c -m 644
+ install_sh_PROGRAM = $(install_sh) -c
+@@ -38,17 +40,19 @@
+ DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+ am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
+-	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
+-	$(top_srcdir)/configure.ac
++	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
++	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
++	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
++	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+ 	$(ACLOCAL_M4)
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+ CONFIG_HEADER = $(top_builddir)/config.h
+ CONFIG_CLEAN_FILES =
++CONFIG_CLEAN_VPATH_FILES =
+ am__EXEEXT_1 =
+ am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(serverdir)" \
+ 	"$(DESTDIR)$(uidir)"
+-libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
+ PROGRAMS = $(libexec_PROGRAMS)
+ am__objects_1 =
+ am_gdm_user_switch_applet_OBJECTS = applet.$(OBJEXT) \
+@@ -59,18 +63,35 @@
+ 	$(top_builddir)/gui/simple-greeter/libgdmuser.la \
+ 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
+ 	$(am__DEPENDENCIES_1)
+-DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
++AM_V_lt = $(am__v_lt_$(V))
++am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
++am__v_lt_0 = --silent
++DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
+ am__depfiles_maybe = depfiles
++am__mv = mv -f
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
+ 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+-LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
+-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
++LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
++	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
++	$(AM_CFLAGS) $(CFLAGS)
++AM_V_CC = $(am__v_CC_$(V))
++am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
++am__v_CC_0 = @echo "  CC    " $@;
++AM_V_at = $(am__v_at_$(V))
++am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
++am__v_at_0 = @
+ CCLD = $(CC)
+-LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
+-	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
+-	$(LDFLAGS) -o $@
++LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
++	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
++	$(AM_LDFLAGS) $(LDFLAGS) -o $@
++AM_V_CCLD = $(am__v_CCLD_$(V))
++am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
++am__v_CCLD_0 = @echo "  CCLD  " $@;
++AM_V_GEN = $(am__v_GEN_$(V))
++am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
++am__v_GEN_0 = @echo "  GEN   " $@;
+ SOURCES = $(gdm_user_switch_applet_SOURCES)
+ DIST_SOURCES = $(gdm_user_switch_applet_SOURCES)
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+@@ -78,9 +99,22 @@
+     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+     *) f=$$p;; \
+   esac;
+-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+-serverDATA_INSTALL = $(INSTALL_DATA)
+-uiDATA_INSTALL = $(INSTALL_DATA)
++am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
++am__install_max = 40
++am__nobase_strip_setup = \
++  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
++am__nobase_strip = \
++  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
++am__nobase_list = $(am__nobase_strip_setup); \
++  for p in $$list; do echo "$$p $$p"; done | \
++  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
++  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
++    if (++n[$$2] == $(am__install_max)) \
++      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
++    END { for (dir in files) print dir, files[dir] }'
++am__base_list = \
++  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
++  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
+ DATA = $(server_DATA) $(ui_DATA)
+ ETAGS = etags
+ CTAGS = ctags
+@@ -88,6 +122,7 @@
+ ACLOCAL = @ACLOCAL@
+ ALL_LINGUAS = @ALL_LINGUAS@
+ AMTAR = @AMTAR@
++AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
+ APPLET_CFLAGS = @APPLET_CFLAGS@
+ APPLET_LIBS = @APPLET_LIBS@
+ AR = @AR@
+@@ -128,7 +163,8 @@
+ DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
+ DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
+ DOC_USER_FORMATS = @DOC_USER_FORMATS@
+-ECHO = @ECHO@
++DSYMUTIL = @DSYMUTIL@
++DUMPBIN = @DUMPBIN@
+ ECHO_C = @ECHO_C@
+ ECHO_N = @ECHO_N@
+ ECHO_T = @ECHO_T@
+@@ -143,8 +179,7 @@
+ EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
+ EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
+ EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
+-F77 = @F77@
+-FFLAGS = @FFLAGS@
++FGREP = @FGREP@
+ GCONFTOOL = @GCONFTOOL@
+ GCONF_CFLAGS = @GCONF_CFLAGS@
+ GCONF_LIBS = @GCONF_LIBS@
+@@ -185,6 +220,7 @@
+ INTLTOOL_PERL = @INTLTOOL_PERL@
+ INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
+ LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
++LD = @LD@
+ LDFLAGS = @LDFLAGS@
+ LIBDIR = @LIBDIR@
+ LIBEXECDIR = @LIBEXECDIR@
+@@ -194,6 +230,7 @@
+ LIBWRAP_LIBS = @LIBWRAP_LIBS@
+ LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
+ LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
++LIPO = @LIPO@
+ LN_S = @LN_S@
+ LOCALSTATEDIR = @LOCALSTATEDIR@
+ LTLIBOBJS = @LTLIBOBJS@
+@@ -204,13 +241,19 @@
+ MSGFMT = @MSGFMT@
+ MSGFMT_OPTS = @MSGFMT_OPTS@
+ MSGMERGE = @MSGMERGE@
++NM = @NM@
++NMEDIT = @NMEDIT@
++OBJDUMP = @OBJDUMP@
+ OBJEXT = @OBJEXT@
+ OMF_DIR = @OMF_DIR@
++OTOOL = @OTOOL@
++OTOOL64 = @OTOOL64@
+ PACKAGE = @PACKAGE@
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
+ PACKAGE_NAME = @PACKAGE_NAME@
+ PACKAGE_STRING = @PACKAGE_STRING@
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
++PACKAGE_URL = @PACKAGE_URL@
+ PACKAGE_VERSION = @PACKAGE_VERSION@
+ PAM_LIBS = @PAM_LIBS@
+ PAM_PREFIX = @PAM_PREFIX@
+@@ -224,6 +267,7 @@
+ RANLIB = @RANLIB@
+ RBAC_LIBS = @RBAC_LIBS@
+ SBINDIR = @SBINDIR@
++SED = @SED@
+ SET_MAKE = @SET_MAKE@
+ SHELL = @SHELL@
+ SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
+@@ -262,7 +306,7 @@
+ abs_top_srcdir = @abs_top_srcdir@
+ ac_ct_CC = @ac_ct_CC@
+ ac_ct_CXX = @ac_ct_CXX@
+-ac_ct_F77 = @ac_ct_F77@
++ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
+ am__include = @am__include@
+ am__leading_dot = @am__leading_dot@
+ am__quote = @am__quote@
+@@ -298,6 +342,7 @@
+ localedir = @localedir@
+ localstatedir = @localstatedir@
+ logdir = @logdir@
++lt_ECHO = @lt_ECHO@
+ mandir = @mandir@
+ mkdir_p = @mkdir_p@
+ oldincludedir = @oldincludedir@
+@@ -312,6 +357,7 @@
+ sysconfdir = @sysconfdir@
+ sysconfsubdir = @sysconfsubdir@
+ target_alias = @target_alias@
++top_build_prefix = @top_build_prefix@
+ top_builddir = @top_builddir@
+ top_srcdir = @top_srcdir@
+ NULL = 
+@@ -379,14 +425,14 @@
+ 	@for dep in $?; do \
+ 	  case '$(am__configure_deps)' in \
+ 	    *$$dep*) \
+-	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+-		&& exit 0; \
++	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
++	        && { if test -f $@; then exit 0; else break; fi; }; \
+ 	      exit 1;; \
+ 	  esac; \
+ 	done; \
+-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/user-switch-applet/Makefile'; \
+-	cd $(top_srcdir) && \
+-	  $(AUTOMAKE) --gnu  gui/user-switch-applet/Makefile
++	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/user-switch-applet/Makefile'; \
++	$(am__cd) $(top_srcdir) && \
++	  $(AUTOMAKE) --gnu gui/user-switch-applet/Makefile
+ .PRECIOUS: Makefile
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ 	@case '$?' in \
+@@ -404,37 +450,53 @@
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+ 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
++$(am__aclocal_m4_deps):
+ install-libexecPROGRAMS: $(libexec_PROGRAMS)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  if test -f $$p \
+-	     || test -f $$p1 \
+-	  ; then \
+-	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
+-	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
+-	  else :; fi; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	for p in $$list; do echo "$$p $$p"; done | \
++	sed 's/$(EXEEXT)$$//' | \
++	while read p p1; do if test -f $$p || test -f $$p1; \
++	  then echo "$$p"; echo "$$p"; else :; fi; \
++	done | \
++	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
++	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
++	sed 'N;N;N;s,\n, ,g' | \
++	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
++	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
++	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
++	    else { print "f", $$3 "/" $$4, $$1; } } \
++	  END { for (d in files) print "f", d, files[d] }' | \
++	while read type dir files; do \
++	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
++	    test -z "$$files" || { \
++	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
++	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
++	    } \
++	; done
+ 
+ uninstall-libexecPROGRAMS:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
+-	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
++	files=`for p in $$list; do echo "$$p"; done | \
++	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
++	      -e 's/$$/$(EXEEXT)/' `; \
++	test -n "$$list" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
+ 
+ clean-libexecPROGRAMS:
+-	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
+-	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
+-	  echo " rm -f $$p $$f"; \
+-	  rm -f $$p $$f ; \
+-	done
++	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
++	echo " rm -f" $$list; \
++	rm -f $$list || exit $$?; \
++	test -n "$(EXEEXT)" || exit 0; \
++	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
++	echo " rm -f" $$list; \
++	rm -f $$list
+ gdm-user-switch-applet$(EXEEXT): $(gdm_user_switch_applet_OBJECTS) $(gdm_user_switch_applet_DEPENDENCIES) 
+ 	@rm -f gdm-user-switch-applet$(EXEEXT)
+-	$(LINK) $(gdm_user_switch_applet_OBJECTS) $(gdm_user_switch_applet_LDADD) $(LIBS)
++	$(AM_V_CCLD)$(LINK) $(gdm_user_switch_applet_OBJECTS) $(gdm_user_switch_applet_LDADD) $(LIBS)
+ 
+ mostlyclean-compile:
+ 	-rm -f *.$(OBJEXT)
+@@ -446,22 +508,25 @@
+ @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gdm-entry-menu-item.Po at am__quote@
+ 
+ .c.o:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c $<
+ 
+ .c.obj:
+- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
+ 
+ .c.lo:
+- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
++ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
++ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
+@@ -474,82 +539,92 @@
+ install-serverDATA: $(server_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(serverdir)" || $(MKDIR_P) "$(DESTDIR)$(serverdir)"
+-	@list='$(server_DATA)'; for p in $$list; do \
++	@list='$(server_DATA)'; test -n "$(serverdir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(serverDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(serverdir)/$$f'"; \
+-	  $(serverDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(serverdir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(serverdir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(serverdir)" || exit $$?; \
+ 	done
+ 
+ uninstall-serverDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(server_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(serverdir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(serverdir)/$$f"; \
+-	done
++	@list='$(server_DATA)'; test -n "$(serverdir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(serverdir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(serverdir)" && rm -f $$files
+ install-uiDATA: $(ui_DATA)
+ 	@$(NORMAL_INSTALL)
+ 	test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)"
+-	@list='$(ui_DATA)'; for p in $$list; do \
++	@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \
++	for p in $$list; do \
+ 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
+-	  f=$(am__strip_dir) \
+-	  echo " $(uiDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(uidir)/$$f'"; \
+-	  $(uiDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(uidir)/$$f"; \
++	  echo "$$d$$p"; \
++	done | $(am__base_list) | \
++	while read files; do \
++	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \
++	  $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \
+ 	done
+ 
+ uninstall-uiDATA:
+ 	@$(NORMAL_UNINSTALL)
+-	@list='$(ui_DATA)'; for p in $$list; do \
+-	  f=$(am__strip_dir) \
+-	  echo " rm -f '$(DESTDIR)$(uidir)/$$f'"; \
+-	  rm -f "$(DESTDIR)$(uidir)/$$f"; \
+-	done
++	@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \
++	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
++	test -n "$$files" || exit 0; \
++	echo " ( cd '$(DESTDIR)$(uidir)' && rm -f" $$files ")"; \
++	cd "$(DESTDIR)$(uidir)" && rm -f $$files
+ 
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
+ 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
+ 	mkid -fID $$unique
+ tags: TAGS
+ 
+ TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
++	set x; \
+ 	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	shift; \
++	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
+ 	  test -n "$$unique" || unique=$$empty_fix; \
+-	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
+-	    $$tags $$unique; \
++	  if test $$# -gt 0; then \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      "$$@" $$unique; \
++	  else \
++	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
++	      $$unique; \
++	  fi; \
+ 	fi
+ ctags: CTAGS
+ CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
+ 		$(TAGS_FILES) $(LISP)
+-	tags=; \
+-	here=`pwd`; \
+ 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
+ 	unique=`for i in $$list; do \
+ 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+ 	  done | \
+-	  $(AWK) '    { files[$$0] = 1; } \
+-	       END { for (i in files) print i; }'`; \
+-	test -z "$(CTAGS_ARGS)$$tags$$unique" \
++	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
++	      END { if (nonempty) { for (i in files) print i; }; }'`; \
++	test -z "$(CTAGS_ARGS)$$unique" \
+ 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
+-	     $$tags $$unique
++	     $$unique
+ 
+ GTAGS:
+ 	here=`$(am__cd) $(top_builddir) && pwd` \
+-	  && cd $(top_srcdir) \
+-	  && gtags -i $(GTAGS_ARGS) $$here
++	  && $(am__cd) $(top_srcdir) \
++	  && gtags -i $(GTAGS_ARGS) "$$here"
+ 
+ distclean-tags:
+ 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
+@@ -570,13 +645,17 @@
+ 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
+ 	  if test -d $$d/$$file; then \
+ 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
++	    if test -d "$(distdir)/$$file"; then \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
++	    fi; \
+ 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
+-	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
++	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
++	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
+ 	    fi; \
+-	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
++	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
+ 	  else \
+-	    test -f $(distdir)/$$file \
+-	    || cp -p $$d/$$file $(distdir)/$$file \
++	    test -f "$(distdir)/$$file" \
++	    || cp -p $$d/$$file "$(distdir)/$$file" \
+ 	    || exit 1; \
+ 	  fi; \
+ 	done
+@@ -607,6 +686,7 @@
+ 
+ distclean-generic:
+ 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
++	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
+ 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+ 
+ maintainer-clean-generic:
+@@ -630,6 +710,8 @@
+ 
+ html: html-am
+ 
++html-am:
++
+ info: info-am
+ 
+ info-am:
+@@ -638,18 +720,28 @@
+ 
+ install-dvi: install-dvi-am
+ 
++install-dvi-am:
++
+ install-exec-am: install-libexecPROGRAMS
+ 
+ install-html: install-html-am
+ 
++install-html-am:
++
+ install-info: install-info-am
+ 
++install-info-am:
++
+ install-man:
+ 
+ install-pdf: install-pdf-am
+ 
++install-pdf-am:
++
+ install-ps: install-ps-am
+ 
++install-ps-am:
++
+ installcheck-am:
+ 
+ maintainer-clean: maintainer-clean-am
+@@ -696,6 +788,7 @@
+ 	sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" -e "s|\@VERSION\@|$(VERSION)|" $< > $@
+ 
+ @INTLTOOL_SERVER_RULE@
++
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
+diff -urN gdm-2.28.1.orig/INSTALL gdm-2.28.1/INSTALL
+--- gdm-2.28.1.orig/INSTALL	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/INSTALL	2009-11-08 11:33:00.000000000 +0100
+@@ -2,15 +2,15 @@
+ *************************
+ 
+ Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+-2006 Free Software Foundation, Inc.
++2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+ 
+-This file is free documentation; the Free Software Foundation gives
++   This file is free documentation; the Free Software Foundation gives
+ unlimited permission to copy, distribute and modify it.
+ 
+ Basic Installation
+ ==================
+ 
+-Briefly, the shell commands `./configure; make; make install' should
++   Briefly, the shell commands `./configure; make; make install' should
+ configure, build, and install this package.  The following
+ more-detailed instructions are generic; see the `README' file for
+ instructions specific to this package.
+@@ -67,12 +67,15 @@
+      all sorts of other programs in order to regenerate files that came
+      with the distribution.
+ 
++  6. Often, you can also type `make uninstall' to remove the installed
++     files again.
++
+ Compilers and Options
+ =====================
+ 
+-Some systems require unusual options for compilation or linking that the
+-`configure' script does not know about.  Run `./configure --help' for
+-details on some of the pertinent environment variables.
++   Some systems require unusual options for compilation or linking that
++the `configure' script does not know about.  Run `./configure --help'
++for details on some of the pertinent environment variables.
+ 
+    You can give `configure' initial values for configuration parameters
+ by setting variables in the command line or in the environment.  Here
+@@ -85,7 +88,7 @@
+ Compiling For Multiple Architectures
+ ====================================
+ 
+-You can compile the package for more than one kind of computer at the
++   You can compile the package for more than one kind of computer at the
+ same time, by placing the object files for each architecture in their
+ own directory.  To do this, you can use GNU `make'.  `cd' to the
+ directory where you want the object files and executables to go and run
+@@ -97,10 +100,24 @@
+ installed the package for one architecture, use `make distclean' before
+ reconfiguring for another architecture.
+ 
++   On MacOS X 10.5 and later systems, you can create libraries and
++executables that work on multiple system types--known as "fat" or
++"universal" binaries--by specifying multiple `-arch' options to the
++compiler but only a single `-arch' option to the preprocessor.  Like
++this:
++
++     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
++                 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
++                 CPP="gcc -E" CXXCPP="g++ -E"
++
++   This is not guaranteed to produce working output in all cases, you
++may have to build one architecture at a time and combine the results
++using the `lipo' tool if you have problems.
++
+ Installation Names
+ ==================
+ 
+-By default, `make install' installs the package's commands under
++   By default, `make install' installs the package's commands under
+ `/usr/local/bin', include files under `/usr/local/include', etc.  You
+ can specify an installation prefix other than `/usr/local' by giving
+ `configure' the option `--prefix=PREFIX'.
+@@ -123,7 +140,7 @@
+ Optional Features
+ =================
+ 
+-Some packages pay attention to `--enable-FEATURE' options to
++   Some packages pay attention to `--enable-FEATURE' options to
+ `configure', where FEATURE indicates an optional part of the package.
+ They may also pay attention to `--with-PACKAGE' options, where PACKAGE
+ is something like `gnu-as' or `x' (for the X Window System).  The
+@@ -135,14 +152,46 @@
+ you can use the `configure' options `--x-includes=DIR' and
+ `--x-libraries=DIR' to specify their locations.
+ 
++Particular systems
++==================
++
++   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU
++CC is not installed, it is recommended to use the following options in
++order to use an ANSI C compiler:
++
++     ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
++
++and if that doesn't work, install pre-built binaries of GCC for HP-UX.
++
++   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
++parse its `<wchar.h>' header file.  The option `-nodtk' can be used as
++a workaround.  If GNU CC is not installed, it is therefore recommended
++to try
++
++     ./configure CC="cc"
++
++and if that doesn't work, try
++
++     ./configure CC="cc -nodtk"
++
++   On Solaris, don't put `/usr/ucb' early in your `PATH'.  This
++directory contains several dysfunctional programs; working variants of
++these programs are available in `/usr/bin'.  So, if you need `/usr/ucb'
++in your `PATH', put it _after_ `/usr/bin'.
++
++   On Haiku, software installed for all users goes in `/boot/common',
++not `/usr/local'.  It is recommended to use the following options:
++
++     ./configure --prefix=/boot/common
++
+ Specifying the System Type
+ ==========================
+ 
+-There may be some features `configure' cannot figure out automatically,
+-but needs to determine by the type of machine the package will run on.
+-Usually, assuming the package is built to be run on the _same_
+-architectures, `configure' can figure that out, but if it prints a
+-message saying it cannot guess the machine type, give it the
++   There may be some features `configure' cannot figure out
++automatically, but needs to determine by the type of machine the package
++will run on.  Usually, assuming the package is built to be run on the
++_same_ architectures, `configure' can figure that out, but if it prints
++a message saying it cannot guess the machine type, give it the
+ `--build=TYPE' option.  TYPE can either be a short name for the system
+ type, such as `sun4', or a canonical name which has the form:
+ 
+@@ -150,7 +199,8 @@
+ 
+ where SYSTEM can have one of these forms:
+ 
+-     OS KERNEL-OS
++     OS
++     KERNEL-OS
+ 
+    See the file `config.sub' for the possible values of each field.  If
+ `config.sub' isn't included in this package, then this package doesn't
+@@ -168,9 +218,9 @@
+ Sharing Defaults
+ ================
+ 
+-If you want to set default values for `configure' scripts to share, you
+-can create a site shell script called `config.site' that gives default
+-values for variables like `CC', `cache_file', and `prefix'.
++   If you want to set default values for `configure' scripts to share,
++you can create a site shell script called `config.site' that gives
++default values for variables like `CC', `cache_file', and `prefix'.
+ `configure' looks for `PREFIX/share/config.site' if it exists, then
+ `PREFIX/etc/config.site' if it exists.  Or, you can set the
+ `CONFIG_SITE' environment variable to the location of the site script.
+@@ -179,7 +229,7 @@
+ Defining Variables
+ ==================
+ 
+-Variables not defined in a site shell script can be set in the
++   Variables not defined in a site shell script can be set in the
+ environment passed to `configure'.  However, some packages may run
+ configure again during the build, and the customized values of these
+ variables may be lost.  In order to avoid this problem, you should set
+@@ -198,11 +248,19 @@
+ `configure' Invocation
+ ======================
+ 
+-`configure' recognizes the following options to control how it operates.
++   `configure' recognizes the following options to control how it
++operates.
+ 
+ `--help'
+ `-h'
+-     Print a summary of the options to `configure', and exit.
++     Print a summary of all of the options to `configure', and exit.
++
++`--help=short'
++`--help=recursive'
++     Print a summary of the options unique to this package's
++     `configure', and exit.  The `short' variant lists options used
++     only in the top level, while the `recursive' variant lists options
++     also present in any nested packages.
+ 
+ `--version'
+ `-V'
+@@ -229,6 +287,16 @@
+      Look for the package's source code in directory DIR.  Usually
+      `configure' can determine that directory automatically.
+ 
++`--prefix=DIR'
++     Use DIR as the installation prefix.  *Note Installation Names::
++     for more details, including other options available for fine-tuning
++     the installation locations.
++
++`--no-create'
++`-n'
++     Run the configure checks, but stop before creating any output
++     files.
++
+ `configure' also accepts some other, not widely useful, options.  Run
+ `configure --help' for more details.
+ 
+diff -urN gdm-2.28.1.orig/install-sh gdm-2.28.1/install-sh
+--- gdm-2.28.1.orig/install-sh	2009-10-20 01:50:53.000000000 +0200
++++ gdm-2.28.1/install-sh	2009-11-08 11:32:57.000000000 +0100
+@@ -1,7 +1,7 @@
+ #!/bin/sh
+ # install - install a program, script, or datafile
+ 
+-scriptversion=2006-10-14.15
++scriptversion=2009-04-28.21; # UTC
+ 
+ # This originates from X11R5 (mit/util/scripts/install.sh), which was
+ # later released in X11R6 (xc/config/util/install.sh) with the
+@@ -48,7 +48,7 @@
+ # set DOITPROG to echo to test this script
+ 
+ # Don't use :- since 4.3BSD and earlier shells don't like it.
+-doit="${DOITPROG-}"
++doit=${DOITPROG-}
+ if test -z "$doit"; then
+   doit_exec=exec
+ else
+@@ -58,34 +58,49 @@
+ # Put in absolute file names if you don't have them in your path;
+ # or use environment vars.
+ 
+-mvprog="${MVPROG-mv}"
+-cpprog="${CPPROG-cp}"
+-chmodprog="${CHMODPROG-chmod}"
+-chownprog="${CHOWNPROG-chown}"
+-chgrpprog="${CHGRPPROG-chgrp}"
+-stripprog="${STRIPPROG-strip}"
+-rmprog="${RMPROG-rm}"
+-mkdirprog="${MKDIRPROG-mkdir}"
++chgrpprog=${CHGRPPROG-chgrp}
++chmodprog=${CHMODPROG-chmod}
++chownprog=${CHOWNPROG-chown}
++cmpprog=${CMPPROG-cmp}
++cpprog=${CPPROG-cp}
++mkdirprog=${MKDIRPROG-mkdir}
++mvprog=${MVPROG-mv}
++rmprog=${RMPROG-rm}
++stripprog=${STRIPPROG-strip}
++
++posix_glob='?'
++initialize_posix_glob='
++  test "$posix_glob" != "?" || {
++    if (set -f) 2>/dev/null; then
++      posix_glob=
++    else
++      posix_glob=:
++    fi
++  }
++'
+ 
+-posix_glob=
+ posix_mkdir=
+ 
+ # Desired mode of installed file.
+ mode=0755
+ 
++chgrpcmd=
+ chmodcmd=$chmodprog
+ chowncmd=
+-chgrpcmd=
+-stripcmd=
++mvcmd=$mvprog
+ rmcmd="$rmprog -f"
+-mvcmd="$mvprog"
++stripcmd=
++
+ src=
+ dst=
+ dir_arg=
+-dstarg=
++dst_arg=
++
++copy_on_change=false
+ no_target_directory=
+ 
+-usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
++usage="\
++Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
+    or: $0 [OPTION]... SRCFILES... DIRECTORY
+    or: $0 [OPTION]... -t DIRECTORY SRCFILES...
+    or: $0 [OPTION]... -d DIRECTORIES...
+@@ -95,65 +110,55 @@
+ In the 4th, create DIRECTORIES.
+ 
+ Options:
+--c         (ignored)
+--d         create directories instead of installing files.
+--g GROUP   $chgrpprog installed files to GROUP.
+--m MODE    $chmodprog installed files to MODE.
+--o USER    $chownprog installed files to USER.
+--s         $stripprog installed files.
+--t DIRECTORY  install into DIRECTORY.
+--T         report an error if DSTFILE is a directory.
+---help     display this help and exit.
+---version  display version info and exit.
++     --help     display this help and exit.
++     --version  display version info and exit.
++
++  -c            (ignored)
++  -C            install only if different (preserve the last data modification time)
++  -d            create directories instead of installing files.
++  -g GROUP      $chgrpprog installed files to GROUP.
++  -m MODE       $chmodprog installed files to MODE.
++  -o USER       $chownprog installed files to USER.
++  -s            $stripprog installed files.
++  -t DIRECTORY  install into DIRECTORY.
++  -T            report an error if DSTFILE is a directory.
+ 
+ Environment variables override the default commands:
+-  CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
++  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
++  RMPROG STRIPPROG
+ "
+ 
+ while test $# -ne 0; do
+   case $1 in
+-    -c) shift
+-        continue;;
++    -c) ;;
++
++    -C) copy_on_change=true;;
+ 
+-    -d) dir_arg=true
+-        shift
+-        continue;;
++    -d) dir_arg=true;;
+ 
+     -g) chgrpcmd="$chgrpprog $2"
+-        shift
+-        shift
+-        continue;;
++	shift;;
+ 
+     --help) echo "$usage"; exit $?;;
+ 
+     -m) mode=$2
+-        shift
+-        shift
+ 	case $mode in
+ 	  *' '* | *'	'* | *'
+ '*	  | *'*'* | *'?'* | *'['*)
+ 	    echo "$0: invalid mode: $mode" >&2
+ 	    exit 1;;
+ 	esac
+-        continue;;
++	shift;;
+ 
+     -o) chowncmd="$chownprog $2"
+-        shift
+-        shift
+-        continue;;
+-
+-    -s) stripcmd=$stripprog
+-        shift
+-        continue;;
+-
+-    -t) dstarg=$2
+-	shift
+-	shift
+-	continue;;
+-
+-    -T) no_target_directory=true
+-	shift
+-	continue;;
++	shift;;
++
++    -s) stripcmd=$stripprog;;
++
++    -t) dst_arg=$2
++	shift;;
++
++    -T) no_target_directory=true;;
+ 
+     --version) echo "$0 $scriptversion"; exit $?;;
+ 
+@@ -165,21 +170,22 @@
+ 
+     *)  break;;
+   esac
++  shift
+ done
+ 
+-if test $# -ne 0 && test -z "$dir_arg$dstarg"; then
++if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
+   # When -d is used, all remaining arguments are directories to create.
+   # When -t is used, the destination is already specified.
+   # Otherwise, the last argument is the destination.  Remove it from $@.
+   for arg
+   do
+-    if test -n "$dstarg"; then
++    if test -n "$dst_arg"; then
+       # $@ is not empty: it contains at least $arg.
+-      set fnord "$@" "$dstarg"
++      set fnord "$@" "$dst_arg"
+       shift # fnord
+     fi
+     shift # arg
+-    dstarg=$arg
++    dst_arg=$arg
+   done
+ fi
+ 
+@@ -224,7 +230,7 @@
+ do
+   # Protect names starting with `-'.
+   case $src in
+-    -*) src=./$src ;;
++    -*) src=./$src;;
+   esac
+ 
+   if test -n "$dir_arg"; then
+@@ -242,22 +248,22 @@
+       exit 1
+     fi
+ 
+-    if test -z "$dstarg"; then
++    if test -z "$dst_arg"; then
+       echo "$0: no destination specified." >&2
+       exit 1
+     fi
+ 
+-    dst=$dstarg
++    dst=$dst_arg
+     # Protect names starting with `-'.
+     case $dst in
+-      -*) dst=./$dst ;;
++      -*) dst=./$dst;;
+     esac
+ 
+     # If destination is a directory, append the input filename; won't work
+     # if double slashes aren't ignored.
+     if test -d "$dst"; then
+       if test -n "$no_target_directory"; then
+-	echo "$0: $dstarg: Is a directory" >&2
++	echo "$0: $dst_arg: Is a directory" >&2
+ 	exit 1
+       fi
+       dstdir=$dst
+@@ -378,26 +384,19 @@
+       # directory the slow way, step by step, checking for races as we go.
+ 
+       case $dstdir in
+-	/*) prefix=/ ;;
+-	-*) prefix=./ ;;
+-	*)  prefix= ;;
++	/*) prefix='/';;
++	-*) prefix='./';;
++	*)  prefix='';;
+       esac
+ 
+-      case $posix_glob in
+-        '')
+-	  if (set -f) 2>/dev/null; then
+-	    posix_glob=true
+-	  else
+-	    posix_glob=false
+-	  fi ;;
+-      esac
++      eval "$initialize_posix_glob"
+ 
+       oIFS=$IFS
+       IFS=/
+-      $posix_glob && set -f
++      $posix_glob set -f
+       set fnord $dstdir
+       shift
+-      $posix_glob && set +f
++      $posix_glob set +f
+       IFS=$oIFS
+ 
+       prefixes=
+@@ -459,41 +458,54 @@
+     # ignore errors from any of these, just make sure not to ignore
+     # errors from the above "$doit $cpprog $src $dsttmp" command.
+     #
+-    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
+-      && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
+-      && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
+-      && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
+-
+-    # Now rename the file to the real destination.
+-    { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \
+-      || {
+-	   # The rename failed, perhaps because mv can't rename something else
+-	   # to itself, or perhaps because mv is so ancient that it does not
+-	   # support -f.
+-
+-	   # Now remove or move aside any old file at destination location.
+-	   # We try this two ways since rm can't unlink itself on some
+-	   # systems and the destination file might be busy for other
+-	   # reasons.  In this case, the final cleanup might fail but the new
+-	   # file should still install successfully.
+-	   {
+-	     if test -f "$dst"; then
+-	       $doit $rmcmd -f "$dst" 2>/dev/null \
+-	       || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \
+-		     && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\
+-	       || {
+-		 echo "$0: cannot unlink or rename $dst" >&2
+-		 (exit 1); exit 1
+-	       }
+-	     else
+-	       :
+-	     fi
+-	   } &&
+-
+-	   # Now rename the file to the real destination.
+-	   $doit $mvcmd "$dsttmp" "$dst"
+-	 }
+-    } || exit 1
++    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
++    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
++    { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
++    { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
++
++    # If -C, don't bother to copy if it wouldn't change the file.
++    if $copy_on_change &&
++       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
++       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
++
++       eval "$initialize_posix_glob" &&
++       $posix_glob set -f &&
++       set X $old && old=:$2:$4:$5:$6 &&
++       set X $new && new=:$2:$4:$5:$6 &&
++       $posix_glob set +f &&
++
++       test "$old" = "$new" &&
++       $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
++    then
++      rm -f "$dsttmp"
++    else
++      # Rename the file to the real destination.
++      $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
++
++      # The rename failed, perhaps because mv can't rename something else
++      # to itself, or perhaps because mv is so ancient that it does not
++      # support -f.
++      {
++	# Now remove or move aside any old file at destination location.
++	# We try this two ways since rm can't unlink itself on some
++	# systems and the destination file might be busy for other
++	# reasons.  In this case, the final cleanup might fail but the new
++	# file should still install successfully.
++	{
++	  test ! -f "$dst" ||
++	  $doit $rmcmd -f "$dst" 2>/dev/null ||
++	  { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
++	    { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
++	  } ||
++	  { echo "$0: cannot unlink or rename $dst" >&2
++	    (exit 1); exit 1
++	  }
++	} &&
++
++	# Now rename the file to the real destination.
++	$doit $mvcmd "$dsttmp" "$dst"
++      }
++    fi || exit 1
+ 
+     trap '' 0
+   fi
+@@ -503,5 +515,6 @@
+ # eval: (add-hook 'write-file-hooks 'time-stamp)
+ # time-stamp-start: "scriptversion="
+ # time-stamp-format: "%:y-%02m-%02d.%02H"
+-# time-stamp-end: "$"
++# time-stamp-time-zone: "UTC"
++# time-stamp-end: "; # UTC"
+ # End:
+diff -urN gdm-2.28.1.orig/ltmain.sh gdm-2.28.1/ltmain.sh
 --- gdm-2.28.1.orig/ltmain.sh	2009-10-06 13:44:35.000000000 +0200
-+++ gdm-2.28.1/ltmain.sh	2009-10-25 08:29:28.110265151 +0100
++++ gdm-2.28.1/ltmain.sh	2009-11-08 11:32:30.000000000 +0100
 @@ -1,30 +1,174 @@
 -# ltmain.sh - Provide generalized library-building support services.
 -# NOTE: Changing this file will not affect anything until you rerun configure.
@@ -62915,7 +70753,7 @@
  
  # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
  # is ksh but when the shell is invoked as "sh" and the current value of
-@@ -34,112 +178,174 @@ basename="s,^.*/,,g"
+@@ -34,112 +178,174 @@
  progpath="$0"
  
  # The name of this program:
@@ -63184,7 +71022,7 @@
  
  # func_mktempdir [string]
  # Make a temporary directory that won't clash with other running
-@@ -149,7 +355,7 @@ func_mktempdir ()
+@@ -149,7 +355,7 @@
  {
      my_template="${TMPDIR-/tmp}/${1-$progname}"
  
@@ -63193,7 +71031,7 @@
        # Return a directory name, but don't create it in dry-run mode
        my_tmpdir="${my_template}-$$"
      else
-@@ -158,546 +364,818 @@ func_mktempdir ()
+@@ -158,546 +364,818 @@
        my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
  
        if test ! -d "$my_tmpdir"; then
@@ -64451,7 +72289,7 @@
  	  # Accept the current argument as the source file.
  	  # The previous "srcfile" becomes the current argument.
  	  #
-@@ -709,64 +1187,42 @@ if test -z "$show_help"; then
+@@ -709,64 +1187,42 @@
        esac    #  case $arg_mode
  
        # Aesthetically quote the previous argument.
@@ -64533,7 +72371,7 @@
        ;;
      esac
  
-@@ -774,7 +1230,15 @@ if test -z "$show_help"; then
+@@ -774,7 +1230,15 @@
  
      for arg in $later; do
        case $arg in
@@ -64549,7 +72387,7 @@
  	build_old_libs=yes
  	continue
  	;;
-@@ -791,28 +1255,17 @@ if test -z "$show_help"; then
+@@ -791,28 +1255,17 @@
        esac
      done
  
@@ -64587,7 +72425,7 @@
  
      # Delete any leftover library objects.
      if test "$build_old_libs" = yes; then
-@@ -821,12 +1274,9 @@ if test -z "$show_help"; then
+@@ -821,12 +1274,9 @@
        removelist="$lobj $libobj ${libobj}T"
      fi
  
@@ -64601,7 +72439,7 @@
        pic_mode=default
        ;;
      esac
-@@ -838,10 +1288,8 @@ if test -z "$show_help"; then
+@@ -838,10 +1288,8 @@
      # Calculate the filename of the output object if compiler does
      # not support -o with -c
      if test "$compiler_c_o" = no; then
@@ -64613,7 +72451,7 @@
      else
        output_obj=
        need_locks=no
-@@ -851,13 +1299,13 @@ if test -z "$show_help"; then
+@@ -851,13 +1299,13 @@
      # Lock this critical section if it is needed
      # We use this script file to make the link, it avoids creating a new file
      if test "$need_locks" = yes; then
@@ -64630,7 +72468,7 @@
  *** ERROR, $lockfile exists and contains:
  `cat $lockfile 2>/dev/null`
  
-@@ -868,34 +1316,22 @@ repeat this compilation, it may succeed,
+@@ -868,34 +1316,22 @@
  avoid parallel builds (make -j) in this platform, or get a better
  compiler."
  
@@ -64674,7 +72512,7 @@
  
      # Only build a PIC object if we are building libtool libraries.
      if test "$build_libtool_libs" = yes; then
-@@ -909,32 +1345,19 @@ EOF
+@@ -909,32 +1345,19 @@
  	command="$base_compile $qsrcfile"
        fi
  
@@ -64711,7 +72549,7 @@
  *** ERROR, $lockfile contains:
  `cat $lockfile 2>/dev/null`
  
-@@ -948,45 +1371,27 @@ repeat this compilation, it may succeed,
+@@ -948,45 +1371,27 @@
  avoid parallel builds (make -j) in this platform, or get a better
  compiler."
  
@@ -64762,7 +72600,7 @@
        else
  	command="$base_compile $qsrcfile $pic_flag"
        fi
-@@ -996,17 +1401,12 @@ EOF
+@@ -996,17 +1401,12 @@
  
        # Suppress compiler output if we already did a PIC compilation.
        command="$command$suppress_output"
@@ -64783,7 +72621,7 @@
  *** ERROR, $lockfile contains:
  `cat $lockfile 2>/dev/null`
  
-@@ -1020,5423 +1420,6784 @@ repeat this compilation, it may succeed,
+@@ -1020,5423 +1420,6784 @@
  avoid parallel builds (make -j) in this platform, or get a better
  compiler."
  
@@ -76414,7 +84252,7 @@
      files=
      rmforce=
      exit_status=0
-@@ -6448,30 +8209,28 @@ relink_command=\"$relink_command\""
+@@ -6448,30 +8209,28 @@
      for arg
      do
        case $arg in
@@ -76454,7 +84292,7 @@
        test "$mode" = uninstall && objdir="$dir"
  
        # Remember objdir for removal later, being careful to avoid duplicates
-@@ -6483,9 +8242,9 @@ relink_command=\"$relink_command\""
+@@ -6483,9 +8242,9 @@
        fi
  
        # Don't error if the file doesn't exist and rm -f was used.
@@ -76467,7 +84305,7 @@
  	:
        elif test -d "$file"; then
  	exit_status=1
-@@ -6499,8 +8258,8 @@ relink_command=\"$relink_command\""
+@@ -6499,8 +8258,8 @@
        case $name in
        *.la)
  	# Possibly a libtool archive, so verify it.
@@ -76478,7 +84316,7 @@
  
  	  # Delete the libtool libraries and symlinks.
  	  for n in $library_names; do
-@@ -6515,39 +8274,17 @@ relink_command=\"$relink_command\""
+@@ -6515,39 +8274,17 @@
  	    *" $dlname "*) ;;
  	    *) rmfiles="$rmfiles $objdir/$dlname" ;;
  	    esac
@@ -76521,7 +84359,7 @@
  	    fi
  	    # FIXME: should reinstall the best remaining shared library.
  	    ;;
-@@ -6557,20 +8294,20 @@ relink_command=\"$relink_command\""
+@@ -6557,20 +8294,20 @@
  
        *.lo)
  	# Possibly a libtool object, so verify it.
@@ -76548,7 +84386,7 @@
  	    rmfiles="$rmfiles $dir/$non_pic_object"
  	  fi
  	fi
-@@ -6581,17 +8318,26 @@ relink_command=\"$relink_command\""
+@@ -6581,17 +8318,26 @@
  	  noexename=$name
  	  case $file in
  	  *.exe)
@@ -76580,7 +84418,7 @@
  
  	    # note $name still contains .exe if it was in $file originally
  	    # as does the version of $file that was added into $rmfiles
-@@ -6606,237 +8352,38 @@ relink_command=\"$relink_command\""
+@@ -6606,237 +8352,38 @@
  	fi
  	;;
        esac
@@ -76832,7 +84670,7 @@
  
  # The TAGs below are defined such that we never get into a situation
  # in which we disable both kinds of libraries.  Given conflicting
-@@ -6850,14 +8397,17 @@ exit $?
+@@ -6850,14 +8397,17 @@
  # configuration.  But we'll never go from static-only to shared-only.
  
  # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
@@ -76852,10 +84690,9 @@
  # End:
 +# vi:sw=2
 +
-Index: gdm-2.28.1/m4/libtool.m4
-===================================================================
---- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdm-2.28.1/m4/libtool.m4	2009-10-25 08:29:28.306267587 +0100
+diff -urN gdm-2.28.1.orig/m4/libtool.m4 gdm-2.28.1/m4/libtool.m4
+--- gdm-2.28.1.orig/m4/libtool.m4	1970-01-01 01:00:00.000000000 +0100
++++ gdm-2.28.1/m4/libtool.m4	2009-11-08 11:32:30.000000000 +0100
 @@ -0,0 +1,7376 @@
 +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
 +#
@@ -84233,753 +92070,631 @@
 +    ;;
 +  esac
 +])
-Index: gdm-2.28.1/data/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/Makefile.in	2009-10-20 01:50:54.000000000 +0200
-+++ gdm-2.28.1/data/Makefile.in	2009-10-25 08:29:43.322262427 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -16,8 +17,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -37,13 +39,22 @@ DIST_COMMON = $(srcdir)/Makefile.am $(sr
- 	$(srcdir)/gdm.conf.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES = gdm.conf
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-@@ -58,20 +69,62 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(dbusconfdir)" "$(DESTDIR)$(schemasdir)"
--dbusconfDATA_INSTALL = $(INSTALL_DATA)
--schemasDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(dbusconf_DATA) $(schemas_DATA)
- RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
-   distclean-recursive maintainer-clean-recursive
-+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-+	distdir
- ETAGS = etags
- CTAGS = ctags
- DIST_SUBDIRS = $(SUBDIRS)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-+am__relativize = \
-+  dir0=`pwd`; \
-+  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
-+  sed_rest='s,^[^/]*/*,,'; \
-+  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
-+  sed_butlast='s,/*[^/]*$$,,'; \
-+  while test -n "$$dir1"; do \
-+    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
-+    if test "$$first" != "."; then \
-+      if test "$$first" = ".."; then \
-+        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
-+        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
-+      else \
-+        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
-+        if test "$$first2" = "$$first"; then \
-+          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
-+        else \
-+          dir2="../$$dir2"; \
-+        fi; \
-+        dir0="$$dir0"/"$$first"; \
-+      fi; \
-+    fi; \
-+    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
-+  done; \
-+  reldir="$$dir2"
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -112,7 +165,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -127,8 +181,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -169,6 +222,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -178,6 +232,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -188,13 +243,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -208,6 +269,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -246,13 +308,13 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
- am__tar = @am__tar@
- am__untar = @am__untar@
--authdir = $(localstatedir)/gdm
-+authdir = $(localstatedir)/lib/gdm
- bindir = @bindir@
- build = @build@
- build_alias = @build_alias@
-@@ -282,6 +344,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -296,6 +359,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -359,14 +423,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -384,6 +448,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- gdm.conf: $(top_builddir)/config.status $(srcdir)/gdm.conf.in
- 	cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
- 
-@@ -395,37 +460,43 @@ clean-libtool:
- install-dbusconfDATA: $(dbusconf_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(dbusconfdir)" || $(MKDIR_P) "$(DESTDIR)$(dbusconfdir)"
--	@list='$(dbusconf_DATA)'; for p in $$list; do \
-+	@list='$(dbusconf_DATA)'; test -n "$(dbusconfdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(dbusconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dbusconfdir)/$$f'"; \
--	  $(dbusconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dbusconfdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dbusconfdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dbusconfdir)" || exit $$?; \
- 	done
- 
- uninstall-dbusconfDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(dbusconf_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(dbusconfdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(dbusconfdir)/$$f"; \
--	done
-+	@list='$(dbusconf_DATA)'; test -n "$(dbusconfdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(dbusconfdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(dbusconfdir)" && rm -f $$files
- install-schemasDATA: $(schemas_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(schemasdir)" || $(MKDIR_P) "$(DESTDIR)$(schemasdir)"
--	@list='$(schemas_DATA)'; for p in $$list; do \
-+	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(schemasDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(schemasdir)/$$f'"; \
--	  $(schemasDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(schemasdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(schemasdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(schemasdir)" || exit $$?; \
- 	done
- 
- uninstall-schemasDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(schemas_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(schemasdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(schemasdir)/$$f"; \
--	done
-+	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(schemasdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(schemasdir)" && rm -f $$files
- 
- # This directory's subdirectories are mostly independent; you can cd
- # into them and run `make' without going through this Makefile.
-@@ -451,7 +522,7 @@ $(RECURSIVE_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done; \
- 	if test "$$dot_seen" = "no"; then \
-@@ -485,16 +556,16 @@ $(RECURSIVE_CLEAN_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done && test -z "$$fail"
- tags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- 	done
- ctags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- 	done
- 
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-@@ -502,14 +573,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- 	  include_option=--etags-include; \
-@@ -521,39 +592,43 @@ TAGS: tags-recursive $(HEADERS) $(SOURCE
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test ! -f $$subdir/TAGS || \
--	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
-+	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
- 	  fi; \
- 	done; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -574,29 +649,44 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
--	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test -d "$(distdir)/$$subdir" \
- 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
- 	    || exit 1; \
--	    distdir=`$(am__cd) $(distdir) && pwd`; \
--	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
--	    (cd $$subdir && \
-+	  fi; \
-+	done
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	  if test "$$subdir" = .; then :; else \
-+	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
-+	    $(am__relativize); \
-+	    new_distdir=$$reldir; \
-+	    dir1=$$subdir; dir2="$(top_distdir)"; \
-+	    $(am__relativize); \
-+	    new_top_distdir=$$reldir; \
-+	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
-+	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
-+	    ($(am__cd) $$subdir && \
- 	      $(MAKE) $(AM_MAKEFLAGS) \
--	        top_distdir="$$top_distdir" \
--	        distdir="$$distdir/$$subdir" \
-+	        top_distdir="$$new_top_distdir" \
-+	        distdir="$$new_distdir" \
- 		am__remove_distdir=: \
- 		am__skip_length_check=: \
-+		am__skip_mode_fix=: \
- 	        distdir) \
- 	      || exit 1; \
- 	  fi; \
-@@ -630,6 +720,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
- 
- maintainer-clean-generic:
-@@ -650,6 +741,8 @@ dvi-am:
- 
- html: html-recursive
- 
-+html-am:
-+
- info: info-recursive
- 
- info-am:
-@@ -657,21 +750,30 @@ info-am:
- install-data-am: install-dbusconfDATA install-schemasDATA
- 	@$(NORMAL_INSTALL)
- 	$(MAKE) $(AM_MAKEFLAGS) install-data-hook
--
- install-dvi: install-dvi-recursive
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-recursive
- 
-+install-html-am:
-+
- install-info: install-info-recursive
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-recursive
- 
-+install-pdf-am:
-+
- install-ps: install-ps-recursive
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-recursive
-@@ -693,9 +795,9 @@ ps-am:
- uninstall-am: uninstall-dbusconfDATA uninstall-schemasDATA
- 	@$(NORMAL_INSTALL)
- 	$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
--
--.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
--	install-data-am install-strip uninstall-am
-+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
-+	install-am install-data-am install-strip tags-recursive \
-+	uninstall-am
- 
- .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
- 	all all-am check check-am clean clean-generic clean-libtool \
-@@ -878,6 +980,7 @@ install-data-hook: gdm.conf-custom Xsess
- 	chown -R root:gdm $(DESTDIR)$(workingdir)/.gconf.mandatory || :
- 	chmod 1750 $(DESTDIR)$(workingdir)/.gconf.mandatory
- 	chmod 1640 $(DESTDIR)$(workingdir)/.gconf.mandatory/*.xml
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/INSTALL
-===================================================================
---- gdm-2.28.1.orig/INSTALL	2009-10-25 08:29:53.950266738 +0100
-+++ gdm-2.28.1/INSTALL	2009-10-25 08:29:45.042260283 +0100
-@@ -2,15 +2,15 @@ Installation Instructions
- *************************
- 
- Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
--2006 Free Software Foundation, Inc.
-+2006, 2007, 2008, 2009 Free Software Foundation, Inc.
- 
--This file is free documentation; the Free Software Foundation gives
-+   This file is free documentation; the Free Software Foundation gives
- unlimited permission to copy, distribute and modify it.
- 
- Basic Installation
- ==================
- 
--Briefly, the shell commands `./configure; make; make install' should
-+   Briefly, the shell commands `./configure; make; make install' should
- configure, build, and install this package.  The following
- more-detailed instructions are generic; see the `README' file for
- instructions specific to this package.
-@@ -67,12 +67,15 @@ The simplest way to compile this package
-      all sorts of other programs in order to regenerate files that came
-      with the distribution.
- 
-+  6. Often, you can also type `make uninstall' to remove the installed
-+     files again.
-+
- Compilers and Options
- =====================
- 
--Some systems require unusual options for compilation or linking that the
--`configure' script does not know about.  Run `./configure --help' for
--details on some of the pertinent environment variables.
-+   Some systems require unusual options for compilation or linking that
-+the `configure' script does not know about.  Run `./configure --help'
-+for details on some of the pertinent environment variables.
- 
-    You can give `configure' initial values for configuration parameters
- by setting variables in the command line or in the environment.  Here
-@@ -85,7 +88,7 @@ is an example:
- Compiling For Multiple Architectures
- ====================================
- 
--You can compile the package for more than one kind of computer at the
-+   You can compile the package for more than one kind of computer at the
- same time, by placing the object files for each architecture in their
- own directory.  To do this, you can use GNU `make'.  `cd' to the
- directory where you want the object files and executables to go and run
-@@ -97,10 +100,24 @@ architecture at a time in the source cod
- installed the package for one architecture, use `make distclean' before
- reconfiguring for another architecture.
- 
-+   On MacOS X 10.5 and later systems, you can create libraries and
-+executables that work on multiple system types--known as "fat" or
-+"universal" binaries--by specifying multiple `-arch' options to the
-+compiler but only a single `-arch' option to the preprocessor.  Like
-+this:
-+
-+     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
-+                 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
-+                 CPP="gcc -E" CXXCPP="g++ -E"
-+
-+   This is not guaranteed to produce working output in all cases, you
-+may have to build one architecture at a time and combine the results
-+using the `lipo' tool if you have problems.
-+
- Installation Names
- ==================
- 
--By default, `make install' installs the package's commands under
-+   By default, `make install' installs the package's commands under
- `/usr/local/bin', include files under `/usr/local/include', etc.  You
- can specify an installation prefix other than `/usr/local' by giving
- `configure' the option `--prefix=PREFIX'.
-@@ -123,7 +140,7 @@ option `--program-prefix=PREFIX' or `--p
- Optional Features
- =================
- 
--Some packages pay attention to `--enable-FEATURE' options to
-+   Some packages pay attention to `--enable-FEATURE' options to
- `configure', where FEATURE indicates an optional part of the package.
- They may also pay attention to `--with-PACKAGE' options, where PACKAGE
- is something like `gnu-as' or `x' (for the X Window System).  The
-@@ -135,14 +152,46 @@ find the X include and library files aut
- you can use the `configure' options `--x-includes=DIR' and
- `--x-libraries=DIR' to specify their locations.
- 
-+Particular systems
-+==================
-+
-+   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU
-+CC is not installed, it is recommended to use the following options in
-+order to use an ANSI C compiler:
-+
-+     ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
-+
-+and if that doesn't work, install pre-built binaries of GCC for HP-UX.
-+
-+   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
-+parse its `<wchar.h>' header file.  The option `-nodtk' can be used as
-+a workaround.  If GNU CC is not installed, it is therefore recommended
-+to try
-+
-+     ./configure CC="cc"
-+
-+and if that doesn't work, try
-+
-+     ./configure CC="cc -nodtk"
-+
-+   On Solaris, don't put `/usr/ucb' early in your `PATH'.  This
-+directory contains several dysfunctional programs; working variants of
-+these programs are available in `/usr/bin'.  So, if you need `/usr/ucb'
-+in your `PATH', put it _after_ `/usr/bin'.
-+
-+   On Haiku, software installed for all users goes in `/boot/common',
-+not `/usr/local'.  It is recommended to use the following options:
-+
-+     ./configure --prefix=/boot/common
-+
- Specifying the System Type
- ==========================
- 
--There may be some features `configure' cannot figure out automatically,
--but needs to determine by the type of machine the package will run on.
--Usually, assuming the package is built to be run on the _same_
--architectures, `configure' can figure that out, but if it prints a
--message saying it cannot guess the machine type, give it the
-+   There may be some features `configure' cannot figure out
-+automatically, but needs to determine by the type of machine the package
-+will run on.  Usually, assuming the package is built to be run on the
-+_same_ architectures, `configure' can figure that out, but if it prints
-+a message saying it cannot guess the machine type, give it the
- `--build=TYPE' option.  TYPE can either be a short name for the system
- type, such as `sun4', or a canonical name which has the form:
- 
-@@ -150,7 +199,8 @@ type, such as `sun4', or a canonical nam
- 
- where SYSTEM can have one of these forms:
- 
--     OS KERNEL-OS
-+     OS
-+     KERNEL-OS
- 
-    See the file `config.sub' for the possible values of each field.  If
- `config.sub' isn't included in this package, then this package doesn't
-@@ -168,9 +218,9 @@ eventually be run) with `--host=TYPE'.
- Sharing Defaults
- ================
- 
--If you want to set default values for `configure' scripts to share, you
--can create a site shell script called `config.site' that gives default
--values for variables like `CC', `cache_file', and `prefix'.
-+   If you want to set default values for `configure' scripts to share,
-+you can create a site shell script called `config.site' that gives
-+default values for variables like `CC', `cache_file', and `prefix'.
- `configure' looks for `PREFIX/share/config.site' if it exists, then
- `PREFIX/etc/config.site' if it exists.  Or, you can set the
- `CONFIG_SITE' environment variable to the location of the site script.
-@@ -179,7 +229,7 @@ A warning: not all `configure' scripts l
- Defining Variables
- ==================
- 
--Variables not defined in a site shell script can be set in the
-+   Variables not defined in a site shell script can be set in the
- environment passed to `configure'.  However, some packages may run
- configure again during the build, and the customized values of these
- variables may be lost.  In order to avoid this problem, you should set
-@@ -198,11 +248,19 @@ an Autoconf bug.  Until the bug is fixed
- `configure' Invocation
- ======================
- 
--`configure' recognizes the following options to control how it operates.
-+   `configure' recognizes the following options to control how it
-+operates.
- 
- `--help'
- `-h'
--     Print a summary of the options to `configure', and exit.
-+     Print a summary of all of the options to `configure', and exit.
-+
-+`--help=short'
-+`--help=recursive'
-+     Print a summary of the options unique to this package's
-+     `configure', and exit.  The `short' variant lists options used
-+     only in the top level, while the `recursive' variant lists options
-+     also present in any nested packages.
- 
- `--version'
- `-V'
-@@ -229,6 +287,16 @@ an Autoconf bug.  Until the bug is fixed
-      Look for the package's source code in directory DIR.  Usually
-      `configure' can determine that directory automatically.
- 
-+`--prefix=DIR'
-+     Use DIR as the installation prefix.  *Note Installation Names::
-+     for more details, including other options available for fine-tuning
-+     the installation locations.
-+
-+`--no-create'
-+`-n'
-+     Run the configure checks, but stop before creating any output
-+     files.
-+
- `configure' also accepts some other, not widely useful, options.  Run
- `configure --help' for more details.
- 
-Index: gdm-2.28.1/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/Makefile.in	2009-10-25 08:29:53.738262491 +0100
-+++ gdm-2.28.1/Makefile.in	2009-10-25 08:29:45.154261811 +0100
+diff -urN gdm-2.28.1.orig/m4/lt~obsolete.m4 gdm-2.28.1/m4/lt~obsolete.m4
+--- gdm-2.28.1.orig/m4/lt~obsolete.m4	1970-01-01 01:00:00.000000000 +0100
++++ gdm-2.28.1/m4/lt~obsolete.m4	2009-11-08 11:32:32.000000000 +0100
+@@ -0,0 +1,92 @@
++# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-
++#
++#   Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
++#   Written by Scott James Remnant, 2004.
++#
++# This file is free software; the Free Software Foundation gives
++# unlimited permission to copy and/or distribute it, with or without
++# modifications, as long as this notice is preserved.
++
++# serial 4 lt~obsolete.m4
++
++# These exist entirely to fool aclocal when bootstrapping libtool.
++#
++# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
++# which have later been changed to m4_define as they aren't part of the
++# exported API, or moved to Autoconf or Automake where they belong.
++#
++# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN
++# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
++# using a macro with the same name in our local m4/libtool.m4 it'll
++# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
++# and doesn't know about Autoconf macros at all.)
++#
++# So we provide this file, which has a silly filename so it's always
++# included after everything else.  This provides aclocal with the
++# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
++# because those macros already exist, or will be overwritten later.
++# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. 
++#
++# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
++# Yes, that means every name once taken will need to remain here until
++# we give up compatibility with versions before 1.7, at which point
++# we need to keep only those names which we still refer to.
++
++# This is to help aclocal find these macros, as it can't see m4_define.
++AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
++
++m4_ifndef([AC_LIBTOOL_LINKER_OPTION],	[AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
++m4_ifndef([AC_PROG_EGREP],		[AC_DEFUN([AC_PROG_EGREP])])
++m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],	[AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
++m4_ifndef([_LT_AC_SHELL_INIT],		[AC_DEFUN([_LT_AC_SHELL_INIT])])
++m4_ifndef([_LT_AC_SYS_LIBPATH_AIX],	[AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
++m4_ifndef([_LT_PROG_LTMAIN],		[AC_DEFUN([_LT_PROG_LTMAIN])])
++m4_ifndef([_LT_AC_TAGVAR],		[AC_DEFUN([_LT_AC_TAGVAR])])
++m4_ifndef([AC_LTDL_ENABLE_INSTALL],	[AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
++m4_ifndef([AC_LTDL_PREOPEN],		[AC_DEFUN([AC_LTDL_PREOPEN])])
++m4_ifndef([_LT_AC_SYS_COMPILER],	[AC_DEFUN([_LT_AC_SYS_COMPILER])])
++m4_ifndef([_LT_AC_LOCK],		[AC_DEFUN([_LT_AC_LOCK])])
++m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],	[AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
++m4_ifndef([_LT_AC_TRY_DLOPEN_SELF],	[AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
++m4_ifndef([AC_LIBTOOL_PROG_CC_C_O],	[AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
++m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
++m4_ifndef([AC_LIBTOOL_OBJDIR],		[AC_DEFUN([AC_LIBTOOL_OBJDIR])])
++m4_ifndef([AC_LTDL_OBJDIR],		[AC_DEFUN([AC_LTDL_OBJDIR])])
++m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
++m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],	[AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
++m4_ifndef([AC_PATH_MAGIC],		[AC_DEFUN([AC_PATH_MAGIC])])
++m4_ifndef([AC_PROG_LD_GNU],		[AC_DEFUN([AC_PROG_LD_GNU])])
++m4_ifndef([AC_PROG_LD_RELOAD_FLAG],	[AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
++m4_ifndef([AC_DEPLIBS_CHECK_METHOD],	[AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
++m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
++m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
++m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
++m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS],	[AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
++m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP],	[AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
++m4_ifndef([LT_AC_PROG_EGREP],		[AC_DEFUN([LT_AC_PROG_EGREP])])
++m4_ifndef([LT_AC_PROG_SED],		[AC_DEFUN([LT_AC_PROG_SED])])
++m4_ifndef([_LT_CC_BASENAME],		[AC_DEFUN([_LT_CC_BASENAME])])
++m4_ifndef([_LT_COMPILER_BOILERPLATE],	[AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
++m4_ifndef([_LT_LINKER_BOILERPLATE],	[AC_DEFUN([_LT_LINKER_BOILERPLATE])])
++m4_ifndef([_AC_PROG_LIBTOOL],		[AC_DEFUN([_AC_PROG_LIBTOOL])])
++m4_ifndef([AC_LIBTOOL_SETUP],		[AC_DEFUN([AC_LIBTOOL_SETUP])])
++m4_ifndef([_LT_AC_CHECK_DLFCN],		[AC_DEFUN([_LT_AC_CHECK_DLFCN])])
++m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],	[AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
++m4_ifndef([_LT_AC_TAGCONFIG],		[AC_DEFUN([_LT_AC_TAGCONFIG])])
++m4_ifndef([AC_DISABLE_FAST_INSTALL],	[AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
++m4_ifndef([_LT_AC_LANG_CXX],		[AC_DEFUN([_LT_AC_LANG_CXX])])
++m4_ifndef([_LT_AC_LANG_F77],		[AC_DEFUN([_LT_AC_LANG_F77])])
++m4_ifndef([_LT_AC_LANG_GCJ],		[AC_DEFUN([_LT_AC_LANG_GCJ])])
++m4_ifndef([AC_LIBTOOL_RC],		[AC_DEFUN([AC_LIBTOOL_RC])])
++m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
++m4_ifndef([_LT_AC_LANG_C_CONFIG],	[AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
++m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
++m4_ifndef([_LT_AC_LANG_CXX_CONFIG],	[AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
++m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
++m4_ifndef([_LT_AC_LANG_F77_CONFIG],	[AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
++m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
++m4_ifndef([_LT_AC_LANG_GCJ_CONFIG],	[AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
++m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
++m4_ifndef([_LT_AC_LANG_RC_CONFIG],	[AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
++m4_ifndef([AC_LIBTOOL_CONFIG],		[AC_DEFUN([AC_LIBTOOL_CONFIG])])
++m4_ifndef([_LT_AC_FILE_LTDLL_C],	[AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
+diff -urN gdm-2.28.1.orig/m4/ltoptions.m4 gdm-2.28.1/m4/ltoptions.m4
+--- gdm-2.28.1.orig/m4/ltoptions.m4	1970-01-01 01:00:00.000000000 +0100
++++ gdm-2.28.1/m4/ltoptions.m4	2009-11-08 11:32:31.000000000 +0100
+@@ -0,0 +1,368 @@
++# Helper functions for option handling.                    -*- Autoconf -*-
++#
++#   Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
++#   Written by Gary V. Vaughan, 2004
++#
++# This file is free software; the Free Software Foundation gives
++# unlimited permission to copy and/or distribute it, with or without
++# modifications, as long as this notice is preserved.
++
++# serial 6 ltoptions.m4
++
++# This is to help aclocal find these macros, as it can't see m4_define.
++AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
++
++
++# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
++# ------------------------------------------
++m4_define([_LT_MANGLE_OPTION],
++[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
++
++
++# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
++# ---------------------------------------
++# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
++# matching handler defined, dispatch to it.  Other OPTION-NAMEs are
++# saved as a flag.
++m4_define([_LT_SET_OPTION],
++[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
++m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
++        _LT_MANGLE_DEFUN([$1], [$2]),
++    [m4_warning([Unknown $1 option `$2'])])[]dnl
++])
++
++
++# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
++# ------------------------------------------------------------
++# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
++m4_define([_LT_IF_OPTION],
++[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
++
++
++# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
++# -------------------------------------------------------
++# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
++# are set.
++m4_define([_LT_UNLESS_OPTIONS],
++[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
++	    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
++		      [m4_define([$0_found])])])[]dnl
++m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
++])[]dnl
++])
++
++
++# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
++# ----------------------------------------
++# OPTION-LIST is a space-separated list of Libtool options associated
++# with MACRO-NAME.  If any OPTION has a matching handler declared with
++# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
++# the unknown option and exit.
++m4_defun([_LT_SET_OPTIONS],
++[# Set options
++m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
++    [_LT_SET_OPTION([$1], _LT_Option)])
++
++m4_if([$1],[LT_INIT],[
++  dnl
++  dnl Simply set some default values (i.e off) if boolean options were not
++  dnl specified:
++  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
++  ])
++  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
++  ])
++  dnl
++  dnl If no reference was made to various pairs of opposing options, then
++  dnl we run the default mode handler for the pair.  For example, if neither
++  dnl `shared' nor `disable-shared' was passed, we enable building of shared
++  dnl archives by default:
++  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
++  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
++  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
++  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
++  		   [_LT_ENABLE_FAST_INSTALL])
++  ])
++])# _LT_SET_OPTIONS
++
++
++## --------------------------------- ##
++## Macros to handle LT_INIT options. ##
++## --------------------------------- ##
++
++# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
++# -----------------------------------------
++m4_define([_LT_MANGLE_DEFUN],
++[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
++
++
++# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
++# -----------------------------------------------
++m4_define([LT_OPTION_DEFINE],
++[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
++])# LT_OPTION_DEFINE
++
++
++# dlopen
++# ------
++LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
++])
++
++AU_DEFUN([AC_LIBTOOL_DLOPEN],
++[_LT_SET_OPTION([LT_INIT], [dlopen])
++AC_DIAGNOSE([obsolete],
++[$0: Remove this warning and the call to _LT_SET_OPTION when you
++put the `dlopen' option into LT_INIT's first parameter.])
++])
++
++dnl aclocal-1.4 backwards compatibility:
++dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
++
++
++# win32-dll
++# ---------
++# Declare package support for building win32 dll's.
++LT_OPTION_DEFINE([LT_INIT], [win32-dll],
++[enable_win32_dll=yes
++
++case $host in
++*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*)
++  AC_CHECK_TOOL(AS, as, false)
++  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
++  AC_CHECK_TOOL(OBJDUMP, objdump, false)
++  ;;
++esac
++
++test -z "$AS" && AS=as
++_LT_DECL([], [AS],      [0], [Assembler program])dnl
++
++test -z "$DLLTOOL" && DLLTOOL=dlltool
++_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl
++
++test -z "$OBJDUMP" && OBJDUMP=objdump
++_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl
++])# win32-dll
++
++AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
++[AC_REQUIRE([AC_CANONICAL_HOST])dnl
++_LT_SET_OPTION([LT_INIT], [win32-dll])
++AC_DIAGNOSE([obsolete],
++[$0: Remove this warning and the call to _LT_SET_OPTION when you
++put the `win32-dll' option into LT_INIT's first parameter.])
++])
++
++dnl aclocal-1.4 backwards compatibility:
++dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
++
++
++# _LT_ENABLE_SHARED([DEFAULT])
++# ----------------------------
++# implement the --enable-shared flag, and supports the `shared' and
++# `disable-shared' LT_INIT options.
++# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
++m4_define([_LT_ENABLE_SHARED],
++[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
++AC_ARG_ENABLE([shared],
++    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
++	[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
++    [p=${PACKAGE-default}
++    case $enableval in
++    yes) enable_shared=yes ;;
++    no) enable_shared=no ;;
++    *)
++      enable_shared=no
++      # Look at the argument we got.  We use all the common list separators.
++      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
++      for pkg in $enableval; do
++	IFS="$lt_save_ifs"
++	if test "X$pkg" = "X$p"; then
++	  enable_shared=yes
++	fi
++      done
++      IFS="$lt_save_ifs"
++      ;;
++    esac],
++    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
++
++    _LT_DECL([build_libtool_libs], [enable_shared], [0],
++	[Whether or not to build shared libraries])
++])# _LT_ENABLE_SHARED
++
++LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
++LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
++
++# Old names:
++AC_DEFUN([AC_ENABLE_SHARED],
++[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
++])
++
++AC_DEFUN([AC_DISABLE_SHARED],
++[_LT_SET_OPTION([LT_INIT], [disable-shared])
++])
++
++AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
++AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
++
++dnl aclocal-1.4 backwards compatibility:
++dnl AC_DEFUN([AM_ENABLE_SHARED], [])
++dnl AC_DEFUN([AM_DISABLE_SHARED], [])
++
++
++
++# _LT_ENABLE_STATIC([DEFAULT])
++# ----------------------------
++# implement the --enable-static flag, and support the `static' and
++# `disable-static' LT_INIT options.
++# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
++m4_define([_LT_ENABLE_STATIC],
++[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
++AC_ARG_ENABLE([static],
++    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
++	[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
++    [p=${PACKAGE-default}
++    case $enableval in
++    yes) enable_static=yes ;;
++    no) enable_static=no ;;
++    *)
++     enable_static=no
++      # Look at the argument we got.  We use all the common list separators.
++      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
++      for pkg in $enableval; do
++	IFS="$lt_save_ifs"
++	if test "X$pkg" = "X$p"; then
++	  enable_static=yes
++	fi
++      done
++      IFS="$lt_save_ifs"
++      ;;
++    esac],
++    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
++
++    _LT_DECL([build_old_libs], [enable_static], [0],
++	[Whether or not to build static libraries])
++])# _LT_ENABLE_STATIC
++
++LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
++LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
++
++# Old names:
++AC_DEFUN([AC_ENABLE_STATIC],
++[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
++])
++
++AC_DEFUN([AC_DISABLE_STATIC],
++[_LT_SET_OPTION([LT_INIT], [disable-static])
++])
++
++AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
++AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
++
++dnl aclocal-1.4 backwards compatibility:
++dnl AC_DEFUN([AM_ENABLE_STATIC], [])
++dnl AC_DEFUN([AM_DISABLE_STATIC], [])
++
++
++
++# _LT_ENABLE_FAST_INSTALL([DEFAULT])
++# ----------------------------------
++# implement the --enable-fast-install flag, and support the `fast-install'
++# and `disable-fast-install' LT_INIT options.
++# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
++m4_define([_LT_ENABLE_FAST_INSTALL],
++[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
++AC_ARG_ENABLE([fast-install],
++    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
++    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
++    [p=${PACKAGE-default}
++    case $enableval in
++    yes) enable_fast_install=yes ;;
++    no) enable_fast_install=no ;;
++    *)
++      enable_fast_install=no
++      # Look at the argument we got.  We use all the common list separators.
++      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
++      for pkg in $enableval; do
++	IFS="$lt_save_ifs"
++	if test "X$pkg" = "X$p"; then
++	  enable_fast_install=yes
++	fi
++      done
++      IFS="$lt_save_ifs"
++      ;;
++    esac],
++    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
++
++_LT_DECL([fast_install], [enable_fast_install], [0],
++	 [Whether or not to optimize for fast installation])dnl
++])# _LT_ENABLE_FAST_INSTALL
++
++LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
++LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
++
++# Old names:
++AU_DEFUN([AC_ENABLE_FAST_INSTALL],
++[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
++AC_DIAGNOSE([obsolete],
++[$0: Remove this warning and the call to _LT_SET_OPTION when you put
++the `fast-install' option into LT_INIT's first parameter.])
++])
++
++AU_DEFUN([AC_DISABLE_FAST_INSTALL],
++[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
++AC_DIAGNOSE([obsolete],
++[$0: Remove this warning and the call to _LT_SET_OPTION when you put
++the `disable-fast-install' option into LT_INIT's first parameter.])
++])
++
++dnl aclocal-1.4 backwards compatibility:
++dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
++dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
++
++
++# _LT_WITH_PIC([MODE])
++# --------------------
++# implement the --with-pic flag, and support the `pic-only' and `no-pic'
++# LT_INIT options.
++# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
++m4_define([_LT_WITH_PIC],
++[AC_ARG_WITH([pic],
++    [AS_HELP_STRING([--with-pic],
++	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
++    [pic_mode="$withval"],
++    [pic_mode=default])
++
++test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
++
++_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
++])# _LT_WITH_PIC
++
++LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
++LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
++
++# Old name:
++AU_DEFUN([AC_LIBTOOL_PICMODE],
++[_LT_SET_OPTION([LT_INIT], [pic-only])
++AC_DIAGNOSE([obsolete],
++[$0: Remove this warning and the call to _LT_SET_OPTION when you
++put the `pic-only' option into LT_INIT's first parameter.])
++])
++
++dnl aclocal-1.4 backwards compatibility:
++dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
++
++## ----------------- ##
++## LTDL_INIT Options ##
++## ----------------- ##
++
++m4_define([_LTDL_MODE], [])
++LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
++		 [m4_define([_LTDL_MODE], [nonrecursive])])
++LT_OPTION_DEFINE([LTDL_INIT], [recursive],
++		 [m4_define([_LTDL_MODE], [recursive])])
++LT_OPTION_DEFINE([LTDL_INIT], [subproject],
++		 [m4_define([_LTDL_MODE], [subproject])])
++
++m4_define([_LTDL_TYPE], [])
++LT_OPTION_DEFINE([LTDL_INIT], [installable],
++		 [m4_define([_LTDL_TYPE], [installable])])
++LT_OPTION_DEFINE([LTDL_INIT], [convenience],
++		 [m4_define([_LTDL_TYPE], [convenience])])
+diff -urN gdm-2.28.1.orig/m4/ltsugar.m4 gdm-2.28.1/m4/ltsugar.m4
+--- gdm-2.28.1.orig/m4/ltsugar.m4	1970-01-01 01:00:00.000000000 +0100
++++ gdm-2.28.1/m4/ltsugar.m4	2009-11-08 11:32:31.000000000 +0100
+@@ -0,0 +1,123 @@
++# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
++#
++# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
++# Written by Gary V. Vaughan, 2004
++#
++# This file is free software; the Free Software Foundation gives
++# unlimited permission to copy and/or distribute it, with or without
++# modifications, as long as this notice is preserved.
++
++# serial 6 ltsugar.m4
++
++# This is to help aclocal find these macros, as it can't see m4_define.
++AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
++
++
++# lt_join(SEP, ARG1, [ARG2...])
++# -----------------------------
++# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
++# associated separator.
++# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
++# versions in m4sugar had bugs.
++m4_define([lt_join],
++[m4_if([$#], [1], [],
++       [$#], [2], [[$2]],
++       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
++m4_define([_lt_join],
++[m4_if([$#$2], [2], [],
++       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
++
++
++# lt_car(LIST)
++# lt_cdr(LIST)
++# ------------
++# Manipulate m4 lists.
++# These macros are necessary as long as will still need to support
++# Autoconf-2.59 which quotes differently.
++m4_define([lt_car], [[$1]])
++m4_define([lt_cdr],
++[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
++       [$#], 1, [],
++       [m4_dquote(m4_shift($@))])])
++m4_define([lt_unquote], $1)
++
++
++# lt_append(MACRO-NAME, STRING, [SEPARATOR])
++# ------------------------------------------
++# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
++# Note that neither SEPARATOR nor STRING are expanded; they are appended
++# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
++# No SEPARATOR is output if MACRO-NAME was previously undefined (different
++# than defined and empty).
++#
++# This macro is needed until we can rely on Autoconf 2.62, since earlier
++# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
++m4_define([lt_append],
++[m4_define([$1],
++	   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
++
++
++
++# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
++# ----------------------------------------------------------
++# Produce a SEP delimited list of all paired combinations of elements of
++# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list
++# has the form PREFIXmINFIXSUFFIXn.
++# Needed until we can rely on m4_combine added in Autoconf 2.62.
++m4_define([lt_combine],
++[m4_if(m4_eval([$# > 3]), [1],
++       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
++[[m4_foreach([_Lt_prefix], [$2],
++	     [m4_foreach([_Lt_suffix],
++		]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
++	[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
++
++
++# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
++# -----------------------------------------------------------------------
++# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
++# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
++m4_define([lt_if_append_uniq],
++[m4_ifdef([$1],
++	  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
++		 [lt_append([$1], [$2], [$3])$4],
++		 [$5])],
++	  [lt_append([$1], [$2], [$3])$4])])
++
++
++# lt_dict_add(DICT, KEY, VALUE)
++# -----------------------------
++m4_define([lt_dict_add],
++[m4_define([$1($2)], [$3])])
++
++
++# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
++# --------------------------------------------
++m4_define([lt_dict_add_subkey],
++[m4_define([$1($2:$3)], [$4])])
++
++
++# lt_dict_fetch(DICT, KEY, [SUBKEY])
++# ----------------------------------
++m4_define([lt_dict_fetch],
++[m4_ifval([$3],
++	m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
++    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
++
++
++# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
++# -----------------------------------------------------------------
++m4_define([lt_if_dict_fetch],
++[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
++	[$5],
++    [$6])])
++
++
++# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
++# --------------------------------------------------------------
++m4_define([lt_dict_filter],
++[m4_if([$5], [], [],
++  [lt_join(m4_quote(m4_default([$4], [[, ]])),
++           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
++		      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
++])
+diff -urN gdm-2.28.1.orig/m4/ltversion.m4 gdm-2.28.1/m4/ltversion.m4
+--- gdm-2.28.1.orig/m4/ltversion.m4	1970-01-01 01:00:00.000000000 +0100
++++ gdm-2.28.1/m4/ltversion.m4	2009-11-08 11:32:32.000000000 +0100
+@@ -0,0 +1,23 @@
++# ltversion.m4 -- version numbers			-*- Autoconf -*-
++#
++#   Copyright (C) 2004 Free Software Foundation, Inc.
++#   Written by Scott James Remnant, 2004
++#
++# This file is free software; the Free Software Foundation gives
++# unlimited permission to copy and/or distribute it, with or without
++# modifications, as long as this notice is preserved.
++
++# Generated from ltversion.in.
++
++# serial 3012 ltversion.m4
++# This file is part of GNU Libtool
++
++m4_define([LT_PACKAGE_VERSION], [2.2.6])
++m4_define([LT_PACKAGE_REVISION], [1.3012])
++
++AC_DEFUN([LTVERSION_VERSION],
++[macro_version='2.2.6'
++macro_revision='1.3012'
++_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
++_LT_DECL(, macro_revision, 0)
++])
+diff -urN gdm-2.28.1.orig/Makefile.in gdm-2.28.1/Makefile.in
+--- gdm-2.28.1.orig/Makefile.in	2009-10-20 01:50:56.000000000 +0200
++++ gdm-2.28.1/Makefile.in	2009-11-08 11:33:00.000000000 +0100
 @@ -1,8 +1,9 @@
 -# Makefile.in generated by automake 1.10 from Makefile.am.
 +# Makefile.in generated by automake 1.11 from Makefile.am.
@@ -85003,7 +92718,7 @@
  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  install_sh_DATA = $(install_sh) -c -m 644
  install_sh_PROGRAM = $(install_sh) -c
-@@ -39,8 +41,10 @@ DIST_COMMON = README $(am__configure_dep
+@@ -39,8 +41,10 @@
  	install-sh ltmain.sh missing mkinstalldirs
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
@@ -85016,7 +92731,7 @@
  am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
  	$(ACLOCAL_M4)
  am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
-@@ -48,6 +52,13 @@ am__CONFIG_DISTCLEAN_FILES = config.stat
+@@ -48,6 +52,13 @@
  mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
  CONFIG_HEADER = config.h
  CONFIG_CLEAN_FILES =
@@ -85030,7 +92745,7 @@
  SOURCES =
  DIST_SOURCES =
  RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-@@ -59,6 +70,9 @@ RECURSIVE_TARGETS = all-recursive check-
+@@ -59,6 +70,9 @@
  	ps-recursive uninstall-recursive
  RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
    distclean-recursive maintainer-clean-recursive
@@ -85040,7 +92755,7 @@
  ETAGS = etags
  CTAGS = ctags
  DIST_SUBDIRS = $(SUBDIRS)
-@@ -66,15 +80,41 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
+@@ -66,15 +80,41 @@
  distdir = $(PACKAGE)-$(VERSION)
  top_distdir = $(distdir)
  am__remove_distdir = \
@@ -85085,7 +92800,7 @@
  APPLET_CFLAGS = @APPLET_CFLAGS@
  APPLET_LIBS = @APPLET_LIBS@
  AR = @AR@
-@@ -115,7 +155,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
+@@ -115,7 +155,8 @@
  DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
  DISTCHECK_CONFIGURE_FLAGS = --disable-scrollkeeper
  DOC_USER_FORMATS = @DOC_USER_FORMATS@
@@ -85095,7 +92810,7 @@
  ECHO_C = @ECHO_C@
  ECHO_N = @ECHO_N@
  ECHO_T = @ECHO_T@
-@@ -130,8 +171,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
+@@ -130,8 +171,7 @@
  EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
  EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
  EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
@@ -85105,7 +92820,7 @@
  GCONFTOOL = @GCONFTOOL@
  GCONF_CFLAGS = @GCONF_CFLAGS@
  GCONF_LIBS = @GCONF_LIBS@
-@@ -172,6 +212,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
+@@ -172,6 +212,7 @@
  INTLTOOL_PERL = @INTLTOOL_PERL@
  INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
  LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
@@ -85113,7 +92828,7 @@
  LDFLAGS = @LDFLAGS@
  LIBDIR = @LIBDIR@
  LIBEXECDIR = @LIBEXECDIR@
-@@ -181,6 +222,7 @@ LIBTOOL = @LIBTOOL@
+@@ -181,6 +222,7 @@
  LIBWRAP_LIBS = @LIBWRAP_LIBS@
  LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
  LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
@@ -85121,7 +92836,7 @@
  LN_S = @LN_S@
  LOCALSTATEDIR = @LOCALSTATEDIR@
  LTLIBOBJS = @LTLIBOBJS@
-@@ -191,13 +233,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
+@@ -191,13 +233,19 @@
  MSGFMT = @MSGFMT@
  MSGFMT_OPTS = @MSGFMT_OPTS@
  MSGMERGE = @MSGMERGE@
@@ -85141,7 +92856,7 @@
  PACKAGE_VERSION = @PACKAGE_VERSION@
  PAM_LIBS = @PAM_LIBS@
  PAM_PREFIX = @PAM_PREFIX@
-@@ -211,6 +259,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
+@@ -211,6 +259,7 @@
  RANLIB = @RANLIB@
  RBAC_LIBS = @RBAC_LIBS@
  SBINDIR = @SBINDIR@
@@ -85149,7 +92864,7 @@
  SET_MAKE = @SET_MAKE@
  SHELL = @SHELL@
  SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -249,7 +298,7 @@ abs_top_builddir = @abs_top_builddir@
+@@ -249,7 +298,7 @@
  abs_top_srcdir = @abs_top_srcdir@
  ac_ct_CC = @ac_ct_CC@
  ac_ct_CXX = @ac_ct_CXX@
@@ -85158,7 +92873,7 @@
  am__include = @am__include@
  am__leading_dot = @am__leading_dot@
  am__quote = @am__quote@
-@@ -285,6 +334,7 @@ libexecdir = @libexecdir@
+@@ -285,6 +334,7 @@
  localedir = @localedir@
  localstatedir = @localstatedir@
  logdir = @logdir@
@@ -85166,7 +92881,7 @@
  mandir = @mandir@
  mkdir_p = @mkdir_p@
  oldincludedir = @oldincludedir@
-@@ -299,6 +349,7 @@ srcdir = @srcdir@
+@@ -299,6 +349,7 @@
  sysconfdir = @sysconfdir@
  sysconfsubdir = @sysconfsubdir@
  target_alias = @target_alias@
@@ -85174,7 +92889,7 @@
  top_builddir = @top_builddir@
  top_srcdir = @top_srcdir@
  NULL = 
-@@ -340,15 +391,15 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
+@@ -340,15 +391,15 @@
  	@for dep in $?; do \
  	  case '$(am__configure_deps)' in \
  	    *$$dep*) \
@@ -85195,7 +92910,7 @@
  .PRECIOUS: Makefile
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  	@case '$?' in \
-@@ -364,9 +415,10 @@ $(top_builddir)/config.status: $(top_src
+@@ -364,9 +415,10 @@
  	$(SHELL) ./config.status --recheck
  
  $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
@@ -85208,7 +92923,7 @@
  
  config.h: stamp-h1
  	@if test ! -f $@; then \
-@@ -378,7 +430,7 @@ stamp-h1: $(srcdir)/config.h.in $(top_bu
+@@ -378,7 +430,7 @@
  	@rm -f stamp-h1
  	cd $(top_builddir) && $(SHELL) ./config.status config.h
  $(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) $(top_srcdir)/acconfig.h
@@ -85217,7 +92932,7 @@
  	rm -f stamp-h1
  	touch $@
  
-@@ -392,7 +444,7 @@ clean-libtool:
+@@ -392,7 +444,7 @@
  	-rm -rf .libs _libs
  
  distclean-libtool:
@@ -85226,7 +92941,7 @@
  
  # This directory's subdirectories are mostly independent; you can cd
  # into them and run `make' without going through this Makefile.
-@@ -418,7 +470,7 @@ $(RECURSIVE_TARGETS):
+@@ -418,7 +470,7 @@
  	  else \
  	    local_target="$$target"; \
  	  fi; \
@@ -85235,7 +92950,7 @@
  	  || eval $$failcom; \
  	done; \
  	if test "$$dot_seen" = "no"; then \
-@@ -452,16 +504,16 @@ $(RECURSIVE_CLEAN_TARGETS):
+@@ -452,16 +504,16 @@
  	  else \
  	    local_target="$$target"; \
  	  fi; \
@@ -85255,7 +92970,7 @@
  	done
  
  ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-@@ -469,14 +521,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
+@@ -469,14 +521,14 @@
  	unique=`for i in $$list; do \
  	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  	  done | \
@@ -85273,7 +92988,7 @@
  	here=`pwd`; \
  	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
  	  include_option=--etags-include; \
-@@ -488,46 +540,50 @@ TAGS: tags-recursive $(HEADERS) $(SOURCE
+@@ -488,46 +540,50 @@
  	list='$(SUBDIRS)'; for subdir in $$list; do \
  	  if test "$$subdir" = .; then :; else \
  	    test ! -f $$subdir/TAGS || \
@@ -85339,7 +93054,7 @@
  	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
  	list='$(DISTFILES)'; \
-@@ -543,38 +599,54 @@ distdir: $(DISTFILES)
+@@ -543,38 +599,54 @@
  	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  	  if test -d $$d/$$file; then \
  	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
@@ -85406,7 +93121,7 @@
  dist-gzip: distdir
  	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
  	$(am__remove_distdir)
-@@ -582,6 +654,14 @@ dist-bzip2: distdir
+@@ -582,6 +654,14 @@
  	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
  	$(am__remove_distdir)
  
@@ -85421,7 +93136,7 @@
  dist-tarZ: distdir
  	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
  	$(am__remove_distdir)
-@@ -608,6 +688,10 @@ distcheck: dist
+@@ -608,6 +688,10 @@
  	  GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
  	*.tar.bz2*) \
  	  bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
@@ -85432,7 +93147,7 @@
  	*.tar.Z*) \
  	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
  	*.shar.gz*) \
-@@ -619,9 +703,11 @@ distcheck: dist
+@@ -619,9 +703,11 @@
  	mkdir $(distdir)/_build
  	mkdir $(distdir)/_inst
  	chmod a-w $(distdir)
@@ -85445,7 +93160,7 @@
  	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
  	    $(DISTCHECK_CONFIGURE_FLAGS) \
  	  && $(MAKE) $(AM_MAKEFLAGS) \
-@@ -643,13 +729,15 @@ distcheck: dist
+@@ -643,13 +729,15 @@
  	  && rm -rf "$$dc_destdir" \
  	  && $(MAKE) $(AM_MAKEFLAGS) dist \
  	  && rm -rf $(DIST_ARCHIVES) \
@@ -85463,7 +93178,7 @@
  	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
  	   || { echo "ERROR: files left after uninstall:" ; \
  	        if test -n "$(DESTDIR)"; then \
-@@ -691,6 +779,7 @@ clean-generic:
+@@ -691,6 +779,7 @@
  
  distclean-generic:
  	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
@@ -85471,7 +93186,7 @@
  	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  
  maintainer-clean-generic:
-@@ -712,6 +801,8 @@ dvi-am:
+@@ -712,6 +801,8 @@
  
  html: html-recursive
  
@@ -85480,7 +93195,7 @@
  info: info-recursive
  
  info-am:
-@@ -720,18 +811,28 @@ install-data-am:
+@@ -720,18 +811,28 @@
  
  install-dvi: install-dvi-recursive
  
@@ -85509,7 +93224,7 @@
  installcheck-am:
  
  maintainer-clean: maintainer-clean-recursive
-@@ -754,24 +855,25 @@ ps-am:
+@@ -754,24 +855,25 @@
  
  uninstall-am:
  
@@ -85549,3585 +93264,24 @@
  
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
  # Otherwise a system limit (for SysV at least) may be exceeded.
-Index: gdm-2.28.1/common/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/common/Makefile.in	2009-10-25 08:29:58.485761900 +0100
-+++ gdm-2.28.1/common/Makefile.in	2009-10-25 08:29:42.838260903 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -18,8 +19,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -42,13 +44,16 @@ subdir = common
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- LTLIBRARIES = $(noinst_LTLIBRARIES)
- am__DEPENDENCIES_1 =
- libgdmcommon_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
-@@ -78,11 +83,14 @@ am_libgdmcommon_la_OBJECTS = libgdmcommo
- 	libgdmcommon_la-gdm-signal-handler.lo $(am__objects_1) \
- 	$(am__objects_2)
- libgdmcommon_la_OBJECTS = $(am_libgdmcommon_la_OBJECTS)
--libgdmcommon_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
--	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libgdmcommon_la_CFLAGS) \
--	$(CFLAGS) $(libgdmcommon_la_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_lt = $(am__v_lt_$(V))
-+am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
-+am__v_lt_0 = --silent
-+libgdmcommon_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
-+	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
-+	$(libgdmcommon_la_CFLAGS) $(CFLAGS) $(libgdmcommon_la_LDFLAGS) \
-+	$(LDFLAGS) -o $@
- am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(gdmdir)"
--libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- am__EXEEXT_1 =
- PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS)
- am_gdm_crash_logger_OBJECTS =  \
-@@ -103,18 +111,32 @@ am_test_settings_server_OBJECTS = test-s
- test_settings_server_OBJECTS = $(am_test_settings_server_OBJECTS)
- test_settings_server_DEPENDENCIES = libgdmcommon.la \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
--DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
-+DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
--	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-+	$(AM_CFLAGS) $(CFLAGS)
-+AM_V_CC = $(am__v_CC_$(V))
-+am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
-+am__v_CC_0 = @echo "  CC    " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- CCLD = $(CC)
--LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
--	$(LDFLAGS) -o $@
-+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_CCLD = $(am__v_CCLD_$(V))
-+am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
-+am__v_CCLD_0 = @echo "  CCLD  " $@;
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
- SOURCES = $(libgdmcommon_la_SOURCES) $(gdm_crash_logger_SOURCES) \
- 	$(test_log_SOURCES) $(test_settings_client_SOURCES) \
- 	$(test_settings_server_SOURCES)
-@@ -127,8 +149,22 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
--gdmDATA_INSTALL = $(INSTALL_DATA)
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- DATA = $(gdm_DATA)
- ETAGS = etags
- CTAGS = ctags
-@@ -136,6 +172,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -176,7 +213,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -191,8 +229,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -233,6 +270,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -242,6 +280,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -252,13 +291,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -272,6 +317,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -310,7 +356,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -346,6 +392,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -360,6 +407,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -509,14 +557,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  common/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  common/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu common/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu common/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -534,6 +582,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- clean-noinstLTLIBRARIES:
- 	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
-@@ -544,54 +593,71 @@ clean-noinstLTLIBRARIES:
- 	  rm -f "$${dir}/so_locations"; \
- 	done
- libgdmcommon.la: $(libgdmcommon_la_OBJECTS) $(libgdmcommon_la_DEPENDENCIES) 
--	$(libgdmcommon_la_LINK)  $(libgdmcommon_la_OBJECTS) $(libgdmcommon_la_LIBADD) $(LIBS)
-+	$(AM_V_CCLD)$(libgdmcommon_la_LINK)  $(libgdmcommon_la_OBJECTS) $(libgdmcommon_la_LIBADD) $(LIBS)
- install-libexecPROGRAMS: $(libexec_PROGRAMS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  if test -f $$p \
--	     || test -f $$p1 \
--	  ; then \
--	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
--	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
--	  else :; fi; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	for p in $$list; do echo "$$p $$p"; done | \
-+	sed 's/$(EXEEXT)$$//' | \
-+	while read p p1; do if test -f $$p || test -f $$p1; \
-+	  then echo "$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+	sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+	    else { print "f", $$3 "/" $$4, $$1; } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	    test -z "$$files" || { \
-+	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
-+	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
-+	    } \
-+	; done
- 
- uninstall-libexecPROGRAMS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+	      -e 's/$$/$(EXEEXT)/' `; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
- 
- clean-libexecPROGRAMS:
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- 
- clean-noinstPROGRAMS:
--	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- gdm-crash-logger$(EXEEXT): $(gdm_crash_logger_OBJECTS) $(gdm_crash_logger_DEPENDENCIES) 
- 	@rm -f gdm-crash-logger$(EXEEXT)
--	$(LINK) $(gdm_crash_logger_OBJECTS) $(gdm_crash_logger_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(gdm_crash_logger_OBJECTS) $(gdm_crash_logger_LDADD) $(LIBS)
- test-log$(EXEEXT): $(test_log_OBJECTS) $(test_log_DEPENDENCIES) 
- 	@rm -f test-log$(EXEEXT)
--	$(LINK) $(test_log_OBJECTS) $(test_log_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_log_OBJECTS) $(test_log_LDADD) $(LIBS)
- test-settings-client$(EXEEXT): $(test_settings_client_OBJECTS) $(test_settings_client_DEPENDENCIES) 
- 	@rm -f test-settings-client$(EXEEXT)
--	$(LINK) $(test_settings_client_OBJECTS) $(test_settings_client_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_settings_client_OBJECTS) $(test_settings_client_LDADD) $(LIBS)
- test-settings-server$(EXEEXT): $(test_settings_server_OBJECTS) $(test_settings_server_DEPENDENCIES) 
- 	@rm -f test-settings-server$(EXEEXT)
--	$(LINK) $(test_settings_server_OBJECTS) $(test_settings_server_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_settings_server_OBJECTS) $(test_settings_server_LDADD) $(LIBS)
- 
- mostlyclean-compile:
- 	-rm -f *.$(OBJEXT)
-@@ -620,141 +686,161 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test-settings-server.Po at am__quote@
- 
- .c.o:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c $<
- 
- .c.obj:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
- 
- .c.lo:
-- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
- 
- libgdmcommon_la-gdm-address.lo: gdm-address.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-address.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo $(DEPDIR)/libgdmcommon_la-gdm-address.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-address.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-address.Tpo $(DEPDIR)/libgdmcommon_la-gdm-address.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-address.c' object='libgdmcommon_la-gdm-address.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-address.lo `test -f 'gdm-address.c' || echo '$(srcdir)/'`gdm-address.c
- 
- libgdmcommon_la-gdm-marshal.lo: gdm-marshal.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-marshal.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo $(DEPDIR)/libgdmcommon_la-gdm-marshal.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-marshal.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-marshal.Tpo $(DEPDIR)/libgdmcommon_la-gdm-marshal.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-marshal.c' object='libgdmcommon_la-gdm-marshal.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-marshal.lo `test -f 'gdm-marshal.c' || echo '$(srcdir)/'`gdm-marshal.c
- 
- libgdmcommon_la-gdm-common.lo: gdm-common.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-common.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-common.c' object='libgdmcommon_la-gdm-common.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common.lo `test -f 'gdm-common.c' || echo '$(srcdir)/'`gdm-common.c
- 
- libgdmcommon_la-gdm-common-unknown-origin.lo: gdm-common-unknown-origin.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common-unknown-origin.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-common-unknown-origin.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Tpo $(DEPDIR)/libgdmcommon_la-gdm-common-unknown-origin.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-common-unknown-origin.c' object='libgdmcommon_la-gdm-common-unknown-origin.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-common-unknown-origin.lo `test -f 'gdm-common-unknown-origin.c' || echo '$(srcdir)/'`gdm-common-unknown-origin.c
- 
- libgdmcommon_la-gdm-profile.lo: gdm-profile.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-profile.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo $(DEPDIR)/libgdmcommon_la-gdm-profile.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-profile.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-profile.Tpo $(DEPDIR)/libgdmcommon_la-gdm-profile.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-profile.c' object='libgdmcommon_la-gdm-profile.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-profile.lo `test -f 'gdm-profile.c' || echo '$(srcdir)/'`gdm-profile.c
- 
- libgdmcommon_la-gdm-settings.lo: gdm-settings.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings.c' object='libgdmcommon_la-gdm-settings.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings.lo `test -f 'gdm-settings.c' || echo '$(srcdir)/'`gdm-settings.c
- 
- libgdmcommon_la-gdm-settings-backend.lo: gdm-settings-backend.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-backend.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-backend.c' object='libgdmcommon_la-gdm-settings-backend.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-backend.lo `test -f 'gdm-settings-backend.c' || echo '$(srcdir)/'`gdm-settings-backend.c
- 
- libgdmcommon_la-gdm-settings-desktop-backend.lo: gdm-settings-desktop-backend.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-desktop-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-desktop-backend.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-desktop-backend.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-desktop-backend.c' object='libgdmcommon_la-gdm-settings-desktop-backend.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-desktop-backend.lo `test -f 'gdm-settings-desktop-backend.c' || echo '$(srcdir)/'`gdm-settings-desktop-backend.c
- 
- libgdmcommon_la-gdm-settings-utils.lo: gdm-settings-utils.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-utils.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-utils.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-utils.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-utils.c' object='libgdmcommon_la-gdm-settings-utils.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-utils.lo `test -f 'gdm-settings-utils.c' || echo '$(srcdir)/'`gdm-settings-utils.c
- 
- libgdmcommon_la-gdm-settings-direct.lo: gdm-settings-direct.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-direct.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-direct.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-direct.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-direct.c' object='libgdmcommon_la-gdm-settings-direct.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-direct.lo `test -f 'gdm-settings-direct.c' || echo '$(srcdir)/'`gdm-settings-direct.c
- 
- libgdmcommon_la-gdm-settings-client.lo: gdm-settings-client.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-client.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-settings-client.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Tpo $(DEPDIR)/libgdmcommon_la-gdm-settings-client.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-settings-client.c' object='libgdmcommon_la-gdm-settings-client.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-settings-client.lo `test -f 'gdm-settings-client.c' || echo '$(srcdir)/'`gdm-settings-client.c
- 
- libgdmcommon_la-gdm-log.lo: gdm-log.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-log.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo $(DEPDIR)/libgdmcommon_la-gdm-log.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-log.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-log.Tpo $(DEPDIR)/libgdmcommon_la-gdm-log.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-log.c' object='libgdmcommon_la-gdm-log.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-log.lo `test -f 'gdm-log.c' || echo '$(srcdir)/'`gdm-log.c
- 
- libgdmcommon_la-gdm-md5.lo: gdm-md5.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-md5.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo $(DEPDIR)/libgdmcommon_la-gdm-md5.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-md5.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-md5.Tpo $(DEPDIR)/libgdmcommon_la-gdm-md5.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-md5.c' object='libgdmcommon_la-gdm-md5.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-md5.lo `test -f 'gdm-md5.c' || echo '$(srcdir)/'`gdm-md5.c
- 
- libgdmcommon_la-gdm-signal-handler.lo: gdm-signal-handler.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-signal-handler.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-gdm-signal-handler.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Tpo $(DEPDIR)/libgdmcommon_la-gdm-signal-handler.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-signal-handler.c' object='libgdmcommon_la-gdm-signal-handler.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-gdm-signal-handler.lo `test -f 'gdm-signal-handler.c' || echo '$(srcdir)/'`gdm-signal-handler.c
- 
- libgdmcommon_la-mkdtemp.lo: mkdtemp.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-mkdtemp.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo $(DEPDIR)/libgdmcommon_la-mkdtemp.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -MT libgdmcommon_la-mkdtemp.lo -MD -MP -MF $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmcommon_la-mkdtemp.Tpo $(DEPDIR)/libgdmcommon_la-mkdtemp.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='mkdtemp.c' object='libgdmcommon_la-mkdtemp.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgdmcommon_la_CPPFLAGS) $(CPPFLAGS) $(libgdmcommon_la_CFLAGS) $(CFLAGS) -c -o libgdmcommon_la-mkdtemp.lo `test -f 'mkdtemp.c' || echo '$(srcdir)/'`mkdtemp.c
- 
- gdm_crash_logger-gdm-crash-logger.o: gdm-crash-logger.c
-- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.o -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.o `test -f 'gdm-crash-logger.c' || echo '$(srcdir)/'`gdm-crash-logger.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.o -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.o `test -f 'gdm-crash-logger.c' || echo '$(srcdir)/'`gdm-crash-logger.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-crash-logger.c' object='gdm_crash_logger-gdm-crash-logger.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gdm_crash_logger-gdm-crash-logger.o `test -f 'gdm-crash-logger.c' || echo '$(srcdir)/'`gdm-crash-logger.c
- 
- gdm_crash_logger-gdm-crash-logger.obj: gdm-crash-logger.c
-- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.obj -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.obj `if test -f 'gdm-crash-logger.c'; then $(CYGPATH_W) 'gdm-crash-logger.c'; else $(CYGPATH_W) '$(srcdir)/gdm-crash-logger.c'; fi`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gdm_crash_logger-gdm-crash-logger.obj -MD -MP -MF $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo -c -o gdm_crash_logger-gdm-crash-logger.obj `if test -f 'gdm-crash-logger.c'; then $(CYGPATH_W) 'gdm-crash-logger.c'; else $(CYGPATH_W) '$(srcdir)/gdm-crash-logger.c'; fi`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Tpo $(DEPDIR)/gdm_crash_logger-gdm-crash-logger.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-crash-logger.c' object='gdm_crash_logger-gdm-crash-logger.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(gdm_crash_logger_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gdm_crash_logger-gdm-crash-logger.obj `if test -f 'gdm-crash-logger.c'; then $(CYGPATH_W) 'gdm-crash-logger.c'; else $(CYGPATH_W) '$(srcdir)/gdm-crash-logger.c'; fi`
-@@ -767,65 +853,72 @@ clean-libtool:
- install-gdmDATA: $(gdm_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(gdmdir)" || $(MKDIR_P) "$(DESTDIR)$(gdmdir)"
--	@list='$(gdm_DATA)'; for p in $$list; do \
-+	@list='$(gdm_DATA)'; test -n "$(gdmdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(gdmDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gdmdir)/$$f'"; \
--	  $(gdmDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gdmdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(gdmdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(gdmdir)" || exit $$?; \
- 	done
- 
- uninstall-gdmDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(gdm_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(gdmdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(gdmdir)/$$f"; \
--	done
-+	@list='$(gdm_DATA)'; test -n "$(gdmdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(gdmdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(gdmdir)" && rm -f $$files
- 
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -846,13 +939,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -886,6 +983,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -908,6 +1006,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -916,18 +1016,28 @@ install-data-am: install-gdmDATA
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am: install-libexecPROGRAMS
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -950,7 +1060,7 @@ ps-am:
- 
- uninstall-am: uninstall-gdmDATA uninstall-libexecPROGRAMS
- 
--.MAKE: install-am install-strip
-+.MAKE: all check install install-am install-strip
- 
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- 	clean-libexecPROGRAMS clean-libtool clean-noinstLTLIBRARIES \
-@@ -978,6 +1088,7 @@ gdm-marshal.c: gdm-marshal.list
- 
- gdm-marshal.h: gdm-marshal.list
- 	@GLIB_GENMARSHAL@ $< --prefix=gdm_marshal --header > $@
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/compile
-===================================================================
---- gdm-2.28.1.orig/compile	2009-10-25 08:29:54.477767167 +0100
-+++ gdm-2.28.1/compile	2009-10-25 08:29:42.414260221 +0100
-@@ -1,9 +1,10 @@
- #! /bin/sh
- # Wrapper for compilers which do not understand `-c -o'.
- 
--scriptversion=2005-05-14.22
-+scriptversion=2009-04-28.21; # UTC
- 
--# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
-+# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009  Free Software
-+# Foundation, Inc.
- # Written by Tom Tromey <tromey at cygnus.com>.
- #
- # This program is free software; you can redistribute it and/or modify
-@@ -17,8 +18,7 @@ scriptversion=2005-05-14.22
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
--# along with this program; if not, write to the Free Software
--# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
- 
- # As a special exception to the GNU General Public License, if you
- # distribute this file as part of a program that contains a
-@@ -103,13 +103,13 @@ if test -z "$ofile" || test -z "$cfile";
- fi
- 
- # Name of file we expect compiler to create.
--cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
-+cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
- 
- # Create the lock directory.
--# Note: use `[/.-]' here to ensure that we don't use the same name
-+# Note: use `[/\\:.-]' here to ensure that we don't use the same name
- # that we are using for the .o file.  Also, base the name on the expected
- # object file name, since that is what matters with a parallel build.
--lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
-+lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
- while true; do
-   if mkdir "$lockdir" >/dev/null 2>&1; then
-     break
-@@ -138,5 +138,6 @@ exit $ret
- # eval: (add-hook 'write-file-hooks 'time-stamp)
- # time-stamp-start: "scriptversion="
- # time-stamp-format: "%:y-%02m-%02d.%02H"
--# time-stamp-end: "$"
-+# time-stamp-time-zone: "UTC"
-+# time-stamp-end: "; # UTC"
- # End:
-Index: gdm-2.28.1/daemon/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/daemon/Makefile.in	2009-10-25 08:29:57.069767900 +0100
-+++ gdm-2.28.1/daemon/Makefile.in	2009-10-25 08:29:43.202259251 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -17,8 +18,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -52,18 +54,19 @@ subdir = daemon
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- am__EXEEXT_1 =
- am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(sbindir)" \
- 	"$(DESTDIR)$(sbindir)"
--libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
--sbinPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS) $(sbin_PROGRAMS)
- am__gdm_binary_SOURCES_DIST = main.c gdm-display-access-file.c \
- 	gdm-display-access-file.h gdm-display-store.c \
-@@ -102,7 +105,10 @@ gdm_binary_DEPENDENCIES = $(top_builddir
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1)
--gdm_binary_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
-+AM_V_lt = $(am__v_lt_$(V))
-+am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
-+am__v_lt_0 = --silent
-+gdm_binary_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
- 	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
- 	$(gdm_binary_LDFLAGS) $(LDFLAGS) -o $@
- am_gdm_factory_slave_OBJECTS = factory-slave-main.$(OBJEXT) \
-@@ -115,9 +121,10 @@ gdm_factory_slave_OBJECTS = $(am_gdm_fac
- gdm_factory_slave_DEPENDENCIES =  \
- 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
--gdm_factory_slave_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
--	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
--	$(gdm_factory_slave_LDFLAGS) $(LDFLAGS) -o $@
-+gdm_factory_slave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
-+	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
-+	$(AM_CFLAGS) $(CFLAGS) $(gdm_factory_slave_LDFLAGS) $(LDFLAGS) \
-+	-o $@
- am_gdm_product_slave_OBJECTS = product-slave-main.$(OBJEXT) \
- 	gdm-server.$(OBJEXT) gdm-session.$(OBJEXT) \
- 	gdm-session-direct.$(OBJEXT) gdm-session-record.$(OBJEXT) \
-@@ -128,9 +135,10 @@ gdm_product_slave_DEPENDENCIES =  \
- 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1)
--gdm_product_slave_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
--	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
--	$(gdm_product_slave_LDFLAGS) $(LDFLAGS) -o $@
-+gdm_product_slave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
-+	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
-+	$(AM_CFLAGS) $(CFLAGS) $(gdm_product_slave_LDFLAGS) $(LDFLAGS) \
-+	-o $@
- am__gdm_session_worker_SOURCES_DIST = session-worker-main.c \
- 	ck-connector.h ck-connector.c gdm-session-settings.h \
- 	gdm-session-settings.c gdm-session-auditor.h \
-@@ -149,9 +157,10 @@ gdm_session_worker_OBJECTS = $(am_gdm_se
- gdm_session_worker_DEPENDENCIES =  \
- 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1)
--gdm_session_worker_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
--	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
--	$(gdm_session_worker_LDFLAGS) $(LDFLAGS) -o $@
-+gdm_session_worker_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
-+	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
-+	$(AM_CFLAGS) $(CFLAGS) $(gdm_session_worker_LDFLAGS) \
-+	$(LDFLAGS) -o $@
- am_gdm_simple_slave_OBJECTS = simple-slave-main.$(OBJEXT) \
- 	gdm-greeter-server.$(OBJEXT) ck-connector.$(OBJEXT) \
- 	gdm-welcome-session.$(OBJEXT) gdm-greeter-session.$(OBJEXT) \
-@@ -164,9 +173,10 @@ gdm_simple_slave_DEPENDENCIES =  \
- 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1)
--gdm_simple_slave_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
--	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
--	$(gdm_simple_slave_LDFLAGS) $(LDFLAGS) -o $@
-+gdm_simple_slave_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
-+	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
-+	$(AM_CFLAGS) $(CFLAGS) $(gdm_simple_slave_LDFLAGS) $(LDFLAGS) \
-+	-o $@
- am_gdm_xdmcp_chooser_slave_OBJECTS =  \
- 	xdmcp-chooser-slave-main.$(OBJEXT) \
- 	gdm-chooser-server.$(OBJEXT) ck-connector.$(OBJEXT) \
-@@ -190,20 +200,54 @@ test_session_DEPENDENCIES = $(top_buildd
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1)
--sbinSCRIPT_INSTALL = $(INSTALL_SCRIPT)
-+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-+am__vpath_adj = case $$p in \
-+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-+    *) f=$$p;; \
-+  esac;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- SCRIPTS = $(sbin_SCRIPTS)
--DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
-+DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
--	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-+	$(AM_CFLAGS) $(CFLAGS)
-+AM_V_CC = $(am__v_CC_$(V))
-+am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
-+am__v_CC_0 = @echo "  CC    " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- CCLD = $(CC)
--LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
--	$(LDFLAGS) -o $@
-+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_CCLD = $(am__v_CCLD_$(V))
-+am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
-+am__v_CCLD_0 = @echo "  CCLD  " $@;
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
- SOURCES = $(gdm_binary_SOURCES) $(EXTRA_gdm_binary_SOURCES) \
- 	$(gdm_factory_slave_SOURCES) $(gdm_product_slave_SOURCES) \
- 	$(gdm_session_worker_SOURCES) $(gdm_simple_slave_SOURCES) \
-@@ -221,6 +265,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -261,7 +306,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -276,8 +322,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -318,6 +363,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -327,6 +373,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -337,13 +384,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -357,6 +410,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -395,7 +449,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -431,6 +485,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -445,6 +500,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -734,14 +790,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  daemon/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  daemon/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu daemon/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu daemon/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -759,112 +815,160 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- install-libexecPROGRAMS: $(libexec_PROGRAMS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  if test -f $$p \
--	     || test -f $$p1 \
--	  ; then \
--	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
--	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
--	  else :; fi; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	for p in $$list; do echo "$$p $$p"; done | \
-+	sed 's/$(EXEEXT)$$//' | \
-+	while read p p1; do if test -f $$p || test -f $$p1; \
-+	  then echo "$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+	sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+	    else { print "f", $$3 "/" $$4, $$1; } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	    test -z "$$files" || { \
-+	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
-+	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
-+	    } \
-+	; done
- 
- uninstall-libexecPROGRAMS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+	      -e 's/$$/$(EXEEXT)/' `; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
- 
- clean-libexecPROGRAMS:
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- 
- clean-noinstPROGRAMS:
--	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- install-sbinPROGRAMS: $(sbin_PROGRAMS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
--	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
--	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  if test -f $$p \
--	     || test -f $$p1 \
--	  ; then \
--	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
--	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(sbinPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(sbindir)/$$f" || exit 1; \
--	  else :; fi; \
--	done
-+	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
-+	for p in $$list; do echo "$$p $$p"; done | \
-+	sed 's/$(EXEEXT)$$//' | \
-+	while read p p1; do if test -f $$p || test -f $$p1; \
-+	  then echo "$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+	sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+	    else { print "f", $$3 "/" $$4, $$1; } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	    test -z "$$files" || { \
-+	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
-+	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
-+	    } \
-+	; done
- 
- uninstall-sbinPROGRAMS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--	  echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(sbindir)/$$f"; \
--	done
-+	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+	      -e 's/$$/$(EXEEXT)/' `; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(sbindir)" && rm -f $$files
- 
- clean-sbinPROGRAMS:
--	@list='$(sbin_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- gdm-binary$(EXEEXT): $(gdm_binary_OBJECTS) $(gdm_binary_DEPENDENCIES) 
- 	@rm -f gdm-binary$(EXEEXT)
--	$(gdm_binary_LINK) $(gdm_binary_OBJECTS) $(gdm_binary_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(gdm_binary_LINK) $(gdm_binary_OBJECTS) $(gdm_binary_LDADD) $(LIBS)
- gdm-factory-slave$(EXEEXT): $(gdm_factory_slave_OBJECTS) $(gdm_factory_slave_DEPENDENCIES) 
- 	@rm -f gdm-factory-slave$(EXEEXT)
--	$(gdm_factory_slave_LINK) $(gdm_factory_slave_OBJECTS) $(gdm_factory_slave_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(gdm_factory_slave_LINK) $(gdm_factory_slave_OBJECTS) $(gdm_factory_slave_LDADD) $(LIBS)
- gdm-product-slave$(EXEEXT): $(gdm_product_slave_OBJECTS) $(gdm_product_slave_DEPENDENCIES) 
- 	@rm -f gdm-product-slave$(EXEEXT)
--	$(gdm_product_slave_LINK) $(gdm_product_slave_OBJECTS) $(gdm_product_slave_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(gdm_product_slave_LINK) $(gdm_product_slave_OBJECTS) $(gdm_product_slave_LDADD) $(LIBS)
- gdm-session-worker$(EXEEXT): $(gdm_session_worker_OBJECTS) $(gdm_session_worker_DEPENDENCIES) 
- 	@rm -f gdm-session-worker$(EXEEXT)
--	$(gdm_session_worker_LINK) $(gdm_session_worker_OBJECTS) $(gdm_session_worker_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(gdm_session_worker_LINK) $(gdm_session_worker_OBJECTS) $(gdm_session_worker_LDADD) $(LIBS)
- gdm-simple-slave$(EXEEXT): $(gdm_simple_slave_OBJECTS) $(gdm_simple_slave_DEPENDENCIES) 
- 	@rm -f gdm-simple-slave$(EXEEXT)
--	$(gdm_simple_slave_LINK) $(gdm_simple_slave_OBJECTS) $(gdm_simple_slave_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(gdm_simple_slave_LINK) $(gdm_simple_slave_OBJECTS) $(gdm_simple_slave_LDADD) $(LIBS)
- gdm-xdmcp-chooser-slave$(EXEEXT): $(gdm_xdmcp_chooser_slave_OBJECTS) $(gdm_xdmcp_chooser_slave_DEPENDENCIES) 
- 	@rm -f gdm-xdmcp-chooser-slave$(EXEEXT)
--	$(LINK) $(gdm_xdmcp_chooser_slave_OBJECTS) $(gdm_xdmcp_chooser_slave_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(gdm_xdmcp_chooser_slave_OBJECTS) $(gdm_xdmcp_chooser_slave_LDADD) $(LIBS)
- test-hal-seats$(EXEEXT): $(test_hal_seats_OBJECTS) $(test_hal_seats_DEPENDENCIES) 
- 	@rm -f test-hal-seats$(EXEEXT)
--	$(LINK) $(test_hal_seats_OBJECTS) $(test_hal_seats_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_hal_seats_OBJECTS) $(test_hal_seats_LDADD) $(LIBS)
- test-session$(EXEEXT): $(test_session_OBJECTS) $(test_session_DEPENDENCIES) 
- 	@rm -f test-session$(EXEEXT)
--	$(LINK) $(test_session_OBJECTS) $(test_session_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_session_OBJECTS) $(test_session_LDADD) $(LIBS)
- install-sbinSCRIPTS: $(sbin_SCRIPTS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(sbindir)" || $(MKDIR_P) "$(DESTDIR)$(sbindir)"
--	@list='$(sbin_SCRIPTS)'; for p in $$list; do \
-+	@list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  if test -f $$d$$p; then \
--	    f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
--	    echo " $(sbinSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(sbindir)/$$f'"; \
--	    $(sbinSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(sbindir)/$$f"; \
--	  else :; fi; \
--	done
-+	  if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n' \
-+	    -e 'h;s|.*|.|' \
-+	    -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) { files[d] = files[d] " " $$1; \
-+	      if (++n[d] == $(am__install_max)) { \
-+		print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
-+	    else { print "f", d "/" $$4, $$1 } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	     if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	     test -z "$$files" || { \
-+	       echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
-+	       $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
-+	     } \
-+	; done
- 
- uninstall-sbinSCRIPTS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(sbin_SCRIPTS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \
--	  echo " rm -f '$(DESTDIR)$(sbindir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(sbindir)/$$f"; \
--	done
-+	@list='$(sbin_SCRIPTS)'; test -n "$(sbindir)" || exit 0; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	       sed -e 's,.*/,,;$(transform)'`; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(sbindir)" && rm -f $$files
- 
- mostlyclean-compile:
- 	-rm -f *.$(OBJEXT)
-@@ -919,22 +1023,25 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/xdmcp-chooser-slave-main.Po at am__quote@
- 
- .c.o:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c $<
- 
- .c.obj:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
- 
- .c.lo:
-- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
-@@ -950,45 +1057,49 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -1009,13 +1120,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -1049,6 +1164,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -1071,6 +1187,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -1079,19 +1197,29 @@ install-data-am:
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am: install-libexecPROGRAMS install-sbinPROGRAMS \
- 	install-sbinSCRIPTS
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -1115,7 +1243,7 @@ ps-am:
- uninstall-am: uninstall-libexecPROGRAMS uninstall-sbinPROGRAMS \
- 	uninstall-sbinSCRIPTS
- 
--.MAKE: install-am install-strip
-+.MAKE: all check install install-am install-strip
- 
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- 	clean-libexecPROGRAMS clean-libtool clean-noinstPROGRAMS \
-@@ -1168,6 +1296,7 @@ gdm-product-display-glue.h: gdm-product-
- 
- gdm: $(srcdir)/gdm.in
- 	sed -e 's,[@]sbindir[@],$(sbindir),g' <$(srcdir)/gdm.in >gdm
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/data/faces/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/faces/Makefile.in	2009-10-25 08:29:55.713768891 +0100
-+++ gdm-2.28.1/data/faces/Makefile.in	2009-10-25 08:29:43.414258123 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -16,8 +17,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -36,13 +38,22 @@ subdir = data/faces
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-@@ -50,14 +61,29 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(imagedir)"
--imageDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(image_DATA)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -98,7 +124,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -113,8 +140,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -155,6 +181,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -164,6 +191,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -174,13 +202,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -194,6 +228,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -232,7 +267,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -268,6 +303,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -282,6 +318,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- imagedir = $(datadir)/pixmaps/faces
-@@ -321,14 +358,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/faces/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/faces/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/faces/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/faces/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -346,6 +383,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -355,20 +393,23 @@ clean-libtool:
- install-imageDATA: $(image_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(imagedir)" || $(MKDIR_P) "$(DESTDIR)$(imagedir)"
--	@list='$(image_DATA)'; for p in $$list; do \
-+	@list='$(image_DATA)'; test -n "$(imagedir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(imageDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(imagedir)/$$f'"; \
--	  $(imageDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(imagedir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(imagedir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(imagedir)" || exit $$?; \
- 	done
- 
- uninstall-imageDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(image_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(imagedir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(imagedir)/$$f"; \
--	done
-+	@list='$(image_DATA)'; test -n "$(imagedir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(imagedir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(imagedir)" && rm -f $$files
- tags: TAGS
- TAGS:
- 
-@@ -392,13 +433,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -429,6 +474,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -447,6 +493,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -455,18 +503,28 @@ install-data-am: install-imageDATA
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -501,6 +559,7 @@ uninstall-am: uninstall-imageDATA
- 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- 	uninstall uninstall-am uninstall-imageDATA
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/data/greeter-autostart/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/greeter-autostart/Makefile.in	2009-10-25 08:29:55.513761967 +0100
-+++ gdm-2.28.1/data/greeter-autostart/Makefile.in	2009-10-25 08:29:43.522258575 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -16,8 +17,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -36,13 +38,22 @@ subdir = data/greeter-autostart
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-@@ -50,14 +61,29 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(desktopdir)"
--desktopDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(desktop_DATA)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -98,7 +124,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -113,8 +140,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -155,6 +181,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -164,6 +191,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -174,13 +202,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -194,6 +228,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -232,7 +267,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -268,6 +303,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -282,6 +318,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -333,14 +370,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/greeter-autostart/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/greeter-autostart/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/greeter-autostart/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/greeter-autostart/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -358,6 +395,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -367,20 +405,23 @@ clean-libtool:
- install-desktopDATA: $(desktop_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)"
--	@list='$(desktop_DATA)'; for p in $$list; do \
-+	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(desktopDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(desktopdir)/$$f'"; \
--	  $(desktopDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(desktopdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \
- 	done
- 
- uninstall-desktopDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(desktop_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(desktopdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(desktopdir)/$$f"; \
--	done
-+	@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(desktopdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(desktopdir)" && rm -f $$files
- tags: TAGS
- TAGS:
- 
-@@ -404,13 +445,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -441,6 +486,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
- 
- maintainer-clean-generic:
-@@ -461,6 +507,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -469,18 +517,28 @@ install-data-am: install-desktopDATA
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -520,6 +578,7 @@ uninstall-am: uninstall-desktopDATA
- 	$(edit) $< >$@
- 
- @INTLTOOL_DESKTOP_RULE@
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/data/pixmaps/16x16/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/pixmaps/16x16/Makefile.in	2009-10-25 08:29:55.365765514 +0100
-+++ gdm-2.28.1/data/pixmaps/16x16/Makefile.in	2009-10-25 08:29:43.622260325 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -18,8 +19,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -38,13 +40,22 @@ subdir = data/pixmaps/16x16
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-@@ -52,14 +63,29 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(appsicondir)"
--appsiconDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(appsicon_DATA)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -100,7 +126,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -115,8 +142,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -157,6 +183,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -166,6 +193,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -176,13 +204,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -196,6 +230,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -234,7 +269,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -270,6 +305,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -284,6 +320,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- appsicondir = \
-@@ -305,14 +342,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/16x16/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/pixmaps/16x16/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/16x16/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/pixmaps/16x16/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -330,6 +367,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -339,20 +377,23 @@ clean-libtool:
- install-appsiconDATA: $(appsicon_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(appsicondir)" || $(MKDIR_P) "$(DESTDIR)$(appsicondir)"
--	@list='$(appsicon_DATA)'; for p in $$list; do \
-+	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(appsiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(appsicondir)/$$f'"; \
--	  $(appsiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(appsicondir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicondir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicondir)" || exit $$?; \
- 	done
- 
- uninstall-appsiconDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(appsicon_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(appsicondir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(appsicondir)/$$f"; \
--	done
-+	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(appsicondir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(appsicondir)" && rm -f $$files
- tags: TAGS
- TAGS:
- 
-@@ -376,13 +417,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -413,6 +458,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -432,6 +478,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -440,18 +488,28 @@ install-data-am: install-appsiconDATA
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -486,6 +544,7 @@ uninstall-am: uninstall-appsiconDATA
- 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- 	uninstall uninstall-am uninstall-appsiconDATA
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/data/pixmaps/32x32/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/pixmaps/32x32/Makefile.in	2009-10-25 08:29:55.253763013 +0100
-+++ gdm-2.28.1/data/pixmaps/32x32/Makefile.in	2009-10-25 08:29:43.714260432 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -18,8 +19,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -38,13 +40,22 @@ subdir = data/pixmaps/32x32
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-@@ -52,14 +63,29 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(appsicondir)"
--appsiconDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(appsicon_DATA)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -100,7 +126,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -115,8 +142,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -157,6 +183,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -166,6 +193,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -176,13 +204,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -196,6 +230,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -234,7 +269,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -270,6 +305,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -284,6 +320,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- appsicondir = \
-@@ -306,14 +343,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/32x32/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/pixmaps/32x32/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/32x32/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/pixmaps/32x32/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -331,6 +368,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -340,20 +378,23 @@ clean-libtool:
- install-appsiconDATA: $(appsicon_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(appsicondir)" || $(MKDIR_P) "$(DESTDIR)$(appsicondir)"
--	@list='$(appsicon_DATA)'; for p in $$list; do \
-+	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(appsiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(appsicondir)/$$f'"; \
--	  $(appsiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(appsicondir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicondir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicondir)" || exit $$?; \
- 	done
- 
- uninstall-appsiconDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(appsicon_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(appsicondir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(appsicondir)/$$f"; \
--	done
-+	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(appsicondir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(appsicondir)" && rm -f $$files
- tags: TAGS
- TAGS:
- 
-@@ -377,13 +418,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -414,6 +459,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -433,6 +479,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -441,18 +489,28 @@ install-data-am: install-appsiconDATA
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -487,6 +545,7 @@ uninstall-am: uninstall-appsiconDATA
- 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- 	uninstall uninstall-am uninstall-appsiconDATA
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/data/pixmaps/48x48/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/pixmaps/48x48/Makefile.in	2009-10-25 08:29:55.097758050 +0100
-+++ gdm-2.28.1/data/pixmaps/48x48/Makefile.in	2009-10-25 08:29:43.806258581 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -18,8 +19,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -38,13 +40,22 @@ subdir = data/pixmaps/48x48
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-@@ -52,14 +63,29 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(appsicondir)"
--appsiconDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(appsicon_DATA)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -100,7 +126,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -115,8 +142,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -157,6 +183,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -166,6 +193,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -176,13 +204,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -196,6 +230,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -234,7 +269,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -270,6 +305,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -284,6 +320,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- appsicondir = \
-@@ -307,14 +344,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/48x48/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/pixmaps/48x48/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/48x48/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/pixmaps/48x48/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -332,6 +369,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -341,20 +379,23 @@ clean-libtool:
- install-appsiconDATA: $(appsicon_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(appsicondir)" || $(MKDIR_P) "$(DESTDIR)$(appsicondir)"
--	@list='$(appsicon_DATA)'; for p in $$list; do \
-+	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(appsiconDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(appsicondir)/$$f'"; \
--	  $(appsiconDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(appsicondir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appsicondir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(appsicondir)" || exit $$?; \
- 	done
- 
- uninstall-appsiconDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(appsicon_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(appsicondir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(appsicondir)/$$f"; \
--	done
-+	@list='$(appsicon_DATA)'; test -n "$(appsicondir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(appsicondir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(appsicondir)" && rm -f $$files
- tags: TAGS
- TAGS:
- 
-@@ -378,13 +419,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -415,6 +460,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -434,6 +480,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -442,18 +490,28 @@ install-data-am: install-appsiconDATA
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -488,6 +546,7 @@ uninstall-am: uninstall-appsiconDATA
- 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- 	uninstall uninstall-am uninstall-appsiconDATA
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/data/pixmaps/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/data/pixmaps/Makefile.in	2009-10-25 08:29:54.989761500 +0100
-+++ gdm-2.28.1/data/pixmaps/Makefile.in	2009-10-25 08:29:43.905760188 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -16,8 +17,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -36,13 +38,22 @@ subdir = data/pixmaps
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-@@ -57,19 +68,62 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- am__installdirs = "$(DESTDIR)$(pixmapdir)"
--pixmapDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(pixmap_DATA)
- RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
-   distclean-recursive maintainer-clean-recursive
-+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-+	distdir
- ETAGS = etags
- CTAGS = ctags
- DIST_SUBDIRS = $(SUBDIRS)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-+am__relativize = \
-+  dir0=`pwd`; \
-+  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
-+  sed_rest='s,^[^/]*/*,,'; \
-+  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
-+  sed_butlast='s,/*[^/]*$$,,'; \
-+  while test -n "$$dir1"; do \
-+    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
-+    if test "$$first" != "."; then \
-+      if test "$$first" = ".."; then \
-+        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
-+        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
-+      else \
-+        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
-+        if test "$$first2" = "$$first"; then \
-+          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
-+        else \
-+          dir2="../$$dir2"; \
-+        fi; \
-+        dir0="$$dir0"/"$$first"; \
-+      fi; \
-+    fi; \
-+    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
-+  done; \
-+  reldir="$$dir2"
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -110,7 +164,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -125,8 +180,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -167,6 +221,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -176,6 +231,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -186,13 +242,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -206,6 +268,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -244,7 +307,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -280,6 +343,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -294,6 +358,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- SUBDIRS = \
-@@ -309,14 +374,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/pixmaps/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  data/pixmaps/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu data/pixmaps/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu data/pixmaps/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -334,6 +399,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -343,20 +409,23 @@ clean-libtool:
- install-pixmapDATA: $(pixmap_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(pixmapdir)" || $(MKDIR_P) "$(DESTDIR)$(pixmapdir)"
--	@list='$(pixmap_DATA)'; for p in $$list; do \
-+	@list='$(pixmap_DATA)'; test -n "$(pixmapdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(pixmapDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pixmapdir)/$$f'"; \
--	  $(pixmapDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pixmapdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pixmapdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pixmapdir)" || exit $$?; \
- 	done
- 
- uninstall-pixmapDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(pixmap_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(pixmapdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(pixmapdir)/$$f"; \
--	done
-+	@list='$(pixmap_DATA)'; test -n "$(pixmapdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(pixmapdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(pixmapdir)" && rm -f $$files
- 
- # This directory's subdirectories are mostly independent; you can cd
- # into them and run `make' without going through this Makefile.
-@@ -382,7 +451,7 @@ $(RECURSIVE_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done; \
- 	if test "$$dot_seen" = "no"; then \
-@@ -416,16 +485,16 @@ $(RECURSIVE_CLEAN_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done && test -z "$$fail"
- tags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- 	done
- ctags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- 	done
- 
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-@@ -433,14 +502,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- 	  include_option=--etags-include; \
-@@ -452,39 +521,43 @@ TAGS: tags-recursive $(HEADERS) $(SOURCE
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test ! -f $$subdir/TAGS || \
--	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
-+	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
- 	  fi; \
- 	done; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -505,29 +578,44 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
--	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test -d "$(distdir)/$$subdir" \
- 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
- 	    || exit 1; \
--	    distdir=`$(am__cd) $(distdir) && pwd`; \
--	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
--	    (cd $$subdir && \
-+	  fi; \
-+	done
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	  if test "$$subdir" = .; then :; else \
-+	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
-+	    $(am__relativize); \
-+	    new_distdir=$$reldir; \
-+	    dir1=$$subdir; dir2="$(top_distdir)"; \
-+	    $(am__relativize); \
-+	    new_top_distdir=$$reldir; \
-+	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
-+	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
-+	    ($(am__cd) $$subdir && \
- 	      $(MAKE) $(AM_MAKEFLAGS) \
--	        top_distdir="$$top_distdir" \
--	        distdir="$$distdir/$$subdir" \
-+	        top_distdir="$$new_top_distdir" \
-+	        distdir="$$new_distdir" \
- 		am__remove_distdir=: \
- 		am__skip_length_check=: \
-+		am__skip_mode_fix=: \
- 	        distdir) \
- 	      || exit 1; \
- 	  fi; \
-@@ -560,6 +648,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -578,6 +667,8 @@ dvi-am:
- 
- html: html-recursive
- 
-+html-am:
-+
- info: info-recursive
- 
- info-am:
-@@ -586,18 +677,28 @@ install-data-am: install-pixmapDATA
- 
- install-dvi: install-dvi-recursive
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-recursive
- 
-+install-html-am:
-+
- install-info: install-info-recursive
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-recursive
- 
-+install-pdf-am:
-+
- install-ps: install-ps-recursive
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-recursive
-@@ -618,8 +719,8 @@ ps-am:
- 
- uninstall-am: uninstall-pixmapDATA
- 
--.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
--	install-strip
-+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
-+	install-am install-strip tags-recursive
- 
- .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
- 	all all-am check check-am clean clean-generic clean-libtool \
-@@ -636,6 +737,7 @@ uninstall-am: uninstall-pixmapDATA
- 	tags tags-recursive uninstall uninstall-am \
- 	uninstall-pixmapDATA
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/depcomp
-===================================================================
---- gdm-2.28.1.orig/depcomp	2009-10-25 08:29:54.058265731 +0100
-+++ gdm-2.28.1/depcomp	2009-10-25 08:29:44.921761383 +0100
+diff -urN gdm-2.28.1.orig/missing gdm-2.28.1/missing
+--- gdm-2.28.1.orig/missing	2009-10-20 01:50:53.000000000 +0200
++++ gdm-2.28.1/missing	2009-11-08 11:32:57.000000000 +0100
 @@ -1,10 +1,10 @@
  #! /bin/sh
- # depcomp - compile a program generating dependencies as side-effects
- 
--scriptversion=2006-10-15.18
+ # Common stub for a few missing GNU programs while installing.
+ 
+-scriptversion=2006-05-10.23
 +scriptversion=2009-04-28.21; # UTC
  
--# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software
--# Foundation, Inc.
-+# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free
-+# Software Foundation, Inc.
+-# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
+-#   Free Software Foundation, Inc.
++# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
++# 2008, 2009 Free Software Foundation, Inc.
+ # Originally by Fran,cois Pinard <pinard at iro.umontreal.ca>, 1996.
  
  # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
-@@ -17,9 +17,7 @@ scriptversion=2006-10-15.18
+@@ -18,9 +18,7 @@
  # GNU General Public License for more details.
  
  # You should have received a copy of the GNU General Public License
@@ -89138,4162 +93292,7 @@
  
  # As a special exception to the GNU General Public License, if you
  # distribute this file as part of a program that contains a
-@@ -87,6 +85,15 @@ if test "$depmode" = dashXmstdout; then
-    depmode=dashmstdout
- fi
- 
-+cygpath_u="cygpath -u -f -"
-+if test "$depmode" = msvcmsys; then
-+   # This is just like msvisualcpp but w/o cygpath translation.
-+   # Just convert the backslash-escaped backslashes to single forward
-+   # slashes to satisfy depend.m4
-+   cygpath_u="sed s,\\\\\\\\,/,g"
-+   depmode=msvisualcpp
-+fi
-+
- case "$depmode" in
- gcc3)
- ## gcc 3 implements dependency tracking that does exactly what
-@@ -192,14 +199,14 @@ sgi)
- ' < "$tmpdepfile" \
-     | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \
-     tr '
--' ' ' >> $depfile
--    echo >> $depfile
-+' ' ' >> "$depfile"
-+    echo >> "$depfile"
- 
-     # The second pass generates a dummy entry for each header file.
-     tr ' ' '
- ' < "$tmpdepfile" \
-    | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
--   >> $depfile
-+   >> "$depfile"
-   else
-     # The sourcefile does not contain any dependencies, so just
-     # store a dummy comment line, to avoid errors with the Makefile
-@@ -215,34 +222,39 @@ aix)
-   # current directory.  Also, the AIX compiler puts `$object:' at the
-   # start of each line; $object doesn't have directory information.
-   # Version 6 uses the directory in both cases.
--  stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
--  tmpdepfile="$stripped.u"
-+  dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
-+  test "x$dir" = "x$object" && dir=
-+  base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
-   if test "$libtool" = yes; then
-+    tmpdepfile1=$dir$base.u
-+    tmpdepfile2=$base.u
-+    tmpdepfile3=$dir.libs/$base.u
-     "$@" -Wc,-M
-   else
-+    tmpdepfile1=$dir$base.u
-+    tmpdepfile2=$dir$base.u
-+    tmpdepfile3=$dir$base.u
-     "$@" -M
-   fi
-   stat=$?
- 
--  if test -f "$tmpdepfile"; then :
--  else
--    stripped=`echo "$stripped" | sed 's,^.*/,,'`
--    tmpdepfile="$stripped.u"
--  fi
--
-   if test $stat -eq 0; then :
-   else
--    rm -f "$tmpdepfile"
-+    rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
-     exit $stat
-   fi
- 
-+  for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
-+  do
-+    test -f "$tmpdepfile" && break
-+  done
-   if test -f "$tmpdepfile"; then
--    outname="$stripped.o"
-     # Each line is of the form `foo.o: dependent.h'.
-     # Do two passes, one to just change these to
-     # `$object: dependent.h' and one to simply `dependent.h:'.
--    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
--    sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
-+    sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
-+    # That's a tab and a space in the [].
-+    sed -e 's,^.*\.[a-z]*:[	 ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile"
-   else
-     # The sourcefile does not contain any dependencies, so just
-     # store a dummy comment line, to avoid errors with the Makefile
-@@ -323,7 +335,12 @@ hp2)
-   if test -f "$tmpdepfile"; then
-     sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile"
-     # Add `dependent.h:' lines.
--    sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile"
-+    sed -ne '2,${
-+	       s/^ *//
-+	       s/ \\*$//
-+	       s/$/:/
-+	       p
-+	     }' "$tmpdepfile" >> "$depfile"
-   else
-     echo "#dummy" > "$depfile"
-   fi
-@@ -399,7 +416,7 @@ dashmstdout)
- 
-   # Remove the call to Libtool.
-   if test "$libtool" = yes; then
--    while test $1 != '--mode=compile'; do
-+    while test "X$1" != 'X--mode=compile'; do
-       shift
-     done
-     shift
-@@ -450,32 +467,39 @@ makedepend)
-   "$@" || exit $?
-   # Remove any Libtool call
-   if test "$libtool" = yes; then
--    while test $1 != '--mode=compile'; do
-+    while test "X$1" != 'X--mode=compile'; do
-       shift
-     done
-     shift
-   fi
-   # X makedepend
-   shift
--  cleared=no
--  for arg in "$@"; do
-+  cleared=no eat=no
-+  for arg
-+  do
-     case $cleared in
-     no)
-       set ""; shift
-       cleared=yes ;;
-     esac
-+    if test $eat = yes; then
-+      eat=no
-+      continue
-+    fi
-     case "$arg" in
-     -D*|-I*)
-       set fnord "$@" "$arg"; shift ;;
-     # Strip any option that makedepend may not understand.  Remove
-     # the object too, otherwise makedepend will parse it as a source file.
-+    -arch)
-+      eat=yes ;;
-     -*|$object)
-       ;;
-     *)
-       set fnord "$@" "$arg"; shift ;;
-     esac
-   done
--  obj_suffix="`echo $object | sed 's/^.*\././'`"
-+  obj_suffix=`echo "$object" | sed 's/^.*\././'`
-   touch "$tmpdepfile"
-   ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
-   rm -f "$depfile"
-@@ -495,7 +519,7 @@ cpp)
- 
-   # Remove the call to Libtool.
-   if test "$libtool" = yes; then
--    while test $1 != '--mode=compile'; do
-+    while test "X$1" != 'X--mode=compile'; do
-       shift
-     done
-     shift
-@@ -533,13 +557,27 @@ cpp)
- 
- msvisualcpp)
-   # Important note: in order to support this mode, a compiler *must*
--  # always write the preprocessed file to stdout, regardless of -o,
--  # because we must use -o when running libtool.
-+  # always write the preprocessed file to stdout.
-   "$@" || exit $?
-+
-+  # Remove the call to Libtool.
-+  if test "$libtool" = yes; then
-+    while test "X$1" != 'X--mode=compile'; do
-+      shift
-+    done
-+    shift
-+  fi
-+
-   IFS=" "
-   for arg
-   do
-     case "$arg" in
-+    -o)
-+      shift
-+      ;;
-+    $object)
-+      shift
-+      ;;
-     "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
- 	set fnord "$@"
- 	shift
-@@ -552,16 +590,23 @@ msvisualcpp)
- 	;;
-     esac
-   done
--  "$@" -E |
--  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile"
-+  "$@" -E 2>/dev/null |
-+  sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
-   rm -f "$depfile"
-   echo "$object : \\" > "$depfile"
--  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
-+  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::	\1 \\:p' >> "$depfile"
-   echo "	" >> "$depfile"
--  . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile"
-+  sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
-   rm -f "$tmpdepfile"
-   ;;
- 
-+msvcmsys)
-+  # This case exists only to let depend.m4 do its work.  It works by
-+  # looking at the text of this script.  This case will never be run,
-+  # since it is checked for above.
-+  exit 1
-+  ;;
-+
- none)
-   exec "$@"
-   ;;
-@@ -580,5 +625,6 @@ exit 0
- # eval: (add-hook 'write-file-hooks 'time-stamp)
- # time-stamp-start: "scriptversion="
- # time-stamp-format: "%:y-%02m-%02d.%02H"
--# time-stamp-end: "$"
-+# time-stamp-time-zone: "UTC"
-+# time-stamp-end: "; # UTC"
- # End:
-Index: gdm-2.28.1/docs/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/docs/Makefile.in	2009-10-25 08:29:55.921767180 +0100
-+++ gdm-2.28.1/docs/Makefile.in	2009-10-25 08:29:44.037759710 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -39,8 +40,9 @@
- ################################################################################
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -60,19 +62,29 @@ DIST_COMMON = $(srcdir)/Makefile.am $(sr
- subdir = docs
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -113,7 +125,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -128,8 +141,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -170,6 +182,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -179,6 +192,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -189,13 +203,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -209,6 +229,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -247,7 +268,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -283,6 +304,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -297,6 +319,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- _clean_doc_header = $(if $(DOC_H_FILE),clean-doc-header)
-@@ -419,14 +442,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  docs/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  docs/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu docs/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu docs/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -444,6 +467,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -473,13 +497,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -510,6 +538,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -528,6 +557,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -536,18 +567,28 @@ install-data-am: install-data-local
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -992,6 +1033,7 @@ dist-hook: doc-dist-hook
- 
- #man_MANS = gdm.1
- #EXTRA_DIST = gdm.1
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/gui/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/gui/Makefile.in	2009-10-25 08:29:56.145765829 +0100
-+++ gdm-2.28.1/gui/Makefile.in	2009-10-25 08:29:44.133758925 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -15,8 +16,9 @@
- @SET_MAKE@
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -35,13 +37,22 @@ subdir = gui
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- SOURCES =
- DIST_SOURCES =
- RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-@@ -53,13 +64,42 @@ RECURSIVE_TARGETS = all-recursive check-
- 	ps-recursive uninstall-recursive
- RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
-   distclean-recursive maintainer-clean-recursive
-+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-+	distdir
- ETAGS = etags
- CTAGS = ctags
- DIST_SUBDIRS = $(SUBDIRS)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-+am__relativize = \
-+  dir0=`pwd`; \
-+  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
-+  sed_rest='s,^[^/]*/*,,'; \
-+  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
-+  sed_butlast='s,/*[^/]*$$,,'; \
-+  while test -n "$$dir1"; do \
-+    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
-+    if test "$$first" != "."; then \
-+      if test "$$first" = ".."; then \
-+        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
-+        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
-+      else \
-+        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
-+        if test "$$first2" = "$$first"; then \
-+          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
-+        else \
-+          dir2="../$$dir2"; \
-+        fi; \
-+        dir0="$$dir0"/"$$first"; \
-+      fi; \
-+    fi; \
-+    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
-+  done; \
-+  reldir="$$dir2"
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -100,7 +140,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -115,8 +156,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -157,6 +197,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -166,6 +207,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -176,13 +218,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -196,6 +244,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -234,7 +283,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -270,6 +319,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -284,6 +334,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -300,14 +351,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  gui/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu gui/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -325,6 +376,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -356,7 +408,7 @@ $(RECURSIVE_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done; \
- 	if test "$$dot_seen" = "no"; then \
-@@ -390,16 +442,16 @@ $(RECURSIVE_CLEAN_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done && test -z "$$fail"
- tags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- 	done
- ctags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- 	done
- 
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-@@ -407,14 +459,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- 	  include_option=--etags-include; \
-@@ -426,39 +478,43 @@ TAGS: tags-recursive $(HEADERS) $(SOURCE
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test ! -f $$subdir/TAGS || \
--	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
-+	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
- 	  fi; \
- 	done; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -479,29 +535,44 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
--	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test -d "$(distdir)/$$subdir" \
- 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
- 	    || exit 1; \
--	    distdir=`$(am__cd) $(distdir) && pwd`; \
--	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
--	    (cd $$subdir && \
-+	  fi; \
-+	done
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	  if test "$$subdir" = .; then :; else \
-+	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
-+	    $(am__relativize); \
-+	    new_distdir=$$reldir; \
-+	    dir1=$$subdir; dir2="$(top_distdir)"; \
-+	    $(am__relativize); \
-+	    new_top_distdir=$$reldir; \
-+	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
-+	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
-+	    ($(am__cd) $$subdir && \
- 	      $(MAKE) $(AM_MAKEFLAGS) \
--	        top_distdir="$$top_distdir" \
--	        distdir="$$distdir/$$subdir" \
-+	        top_distdir="$$new_top_distdir" \
-+	        distdir="$$new_distdir" \
- 		am__remove_distdir=: \
- 		am__skip_length_check=: \
-+		am__skip_mode_fix=: \
- 	        distdir) \
- 	      || exit 1; \
- 	  fi; \
-@@ -531,6 +602,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -549,6 +621,8 @@ dvi-am:
- 
- html: html-recursive
- 
-+html-am:
-+
- info: info-recursive
- 
- info-am:
-@@ -557,18 +631,28 @@ install-data-am:
- 
- install-dvi: install-dvi-recursive
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-recursive
- 
-+install-html-am:
-+
- install-info: install-info-recursive
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-recursive
- 
-+install-pdf-am:
-+
- install-ps: install-ps-recursive
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-recursive
-@@ -589,8 +673,8 @@ ps-am:
- 
- uninstall-am:
- 
--.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
--	install-strip
-+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
-+	install-am install-strip tags-recursive
- 
- .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
- 	all all-am check check-am clean clean-generic clean-libtool \
-@@ -606,6 +690,7 @@ uninstall-am:
- 	mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
- 	uninstall uninstall-am
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/gui/simple-chooser/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/gui/simple-chooser/Makefile.in	2009-10-25 08:29:56.909764329 +0100
-+++ gdm-2.28.1/gui/simple-chooser/Makefile.in	2009-10-25 08:29:44.257758772 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -16,8 +17,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -38,16 +40,18 @@ subdir = gui/simple-chooser
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- am__EXEEXT_1 =
- am__installdirs = "$(DESTDIR)$(libexecdir)"
--libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- PROGRAMS = $(libexec_PROGRAMS)
- am__objects_1 =
- am_gdm_host_chooser_OBJECTS = gdm-host-chooser.$(OBJEXT) \
-@@ -59,6 +63,9 @@ gdm_host_chooser_DEPENDENCIES =  \
- 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
-+AM_V_lt = $(am__v_lt_$(V))
-+am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
-+am__v_lt_0 = --silent
- am_gdm_simple_chooser_OBJECTS = chooser-main.$(OBJEXT) \
- 	gdm-chooser-host.$(OBJEXT) gdm-host-chooser-widget.$(OBJEXT) \
- 	gdm-host-chooser-dialog.$(OBJEXT) gdm-chooser-client.$(OBJEXT) \
-@@ -68,18 +75,32 @@ gdm_simple_chooser_DEPENDENCIES =  \
- 	$(top_builddir)/common/libgdmcommon.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
--DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
-+DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
--	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-+	$(AM_CFLAGS) $(CFLAGS)
-+AM_V_CC = $(am__v_CC_$(V))
-+am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
-+am__v_CC_0 = @echo "  CC    " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- CCLD = $(CC)
--LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
--	$(LDFLAGS) -o $@
-+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_CCLD = $(am__v_CCLD_$(V))
-+am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
-+am__v_CCLD_0 = @echo "  CCLD  " $@;
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
- SOURCES = $(gdm_host_chooser_SOURCES) $(gdm_simple_chooser_SOURCES)
- DIST_SOURCES = $(gdm_host_chooser_SOURCES) \
- 	$(gdm_simple_chooser_SOURCES)
-@@ -89,6 +110,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -129,7 +151,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -144,8 +167,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -186,6 +208,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -195,6 +218,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -205,13 +229,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -225,6 +255,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -263,7 +294,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -299,6 +330,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -313,6 +345,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -385,14 +418,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/simple-chooser/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  gui/simple-chooser/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/simple-chooser/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu gui/simple-chooser/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -410,40 +443,56 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- install-libexecPROGRAMS: $(libexec_PROGRAMS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  if test -f $$p \
--	     || test -f $$p1 \
--	  ; then \
--	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
--	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
--	  else :; fi; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	for p in $$list; do echo "$$p $$p"; done | \
-+	sed 's/$(EXEEXT)$$//' | \
-+	while read p p1; do if test -f $$p || test -f $$p1; \
-+	  then echo "$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+	sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+	    else { print "f", $$3 "/" $$4, $$1; } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	    test -z "$$files" || { \
-+	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
-+	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
-+	    } \
-+	; done
- 
- uninstall-libexecPROGRAMS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+	      -e 's/$$/$(EXEEXT)/' `; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
- 
- clean-libexecPROGRAMS:
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- gdm-host-chooser$(EXEEXT): $(gdm_host_chooser_OBJECTS) $(gdm_host_chooser_DEPENDENCIES) 
- 	@rm -f gdm-host-chooser$(EXEEXT)
--	$(LINK) $(gdm_host_chooser_OBJECTS) $(gdm_host_chooser_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(gdm_host_chooser_OBJECTS) $(gdm_host_chooser_LDADD) $(LIBS)
- gdm-simple-chooser$(EXEEXT): $(gdm_simple_chooser_OBJECTS) $(gdm_simple_chooser_DEPENDENCIES) 
- 	@rm -f gdm-simple-chooser$(EXEEXT)
--	$(LINK) $(gdm_simple_chooser_OBJECTS) $(gdm_simple_chooser_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(gdm_simple_chooser_OBJECTS) $(gdm_simple_chooser_LDADD) $(LIBS)
- 
- mostlyclean-compile:
- 	-rm -f *.$(OBJEXT)
-@@ -460,22 +509,25 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gdm-host-chooser.Po at am__quote@
- 
- .c.o:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c $<
- 
- .c.obj:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
- 
- .c.lo:
-- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
-@@ -491,45 +543,49 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -550,13 +606,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -587,6 +647,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -608,6 +669,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -616,18 +679,28 @@ install-data-am:
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am: install-libexecPROGRAMS
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -666,6 +739,7 @@ uninstall-am: uninstall-libexecPROGRAMS
- 	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
- 	tags uninstall uninstall-am uninstall-libexecPROGRAMS
- 
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/gui/simple-greeter/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/gui/simple-greeter/Makefile.in	2009-10-25 08:29:56.237761048 +0100
-+++ gdm-2.28.1/gui/simple-greeter/Makefile.in	2009-10-25 08:29:44.469761055 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -18,8 +19,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -45,13 +47,16 @@ subdir = gui/simple-greeter
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- LTLIBRARIES = $(noinst_LTLIBRARIES)
- am__DEPENDENCIES_1 =
- libgdmuser_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
-@@ -59,12 +64,14 @@ am__objects_1 =
- am_libgdmuser_la_OBJECTS = libgdmuser_la-gdm-user.lo \
- 	libgdmuser_la-gdm-user-manager.lo $(am__objects_1)
- libgdmuser_la_OBJECTS = $(am_libgdmuser_la_OBJECTS)
--libgdmuser_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
-+AM_V_lt = $(am__v_lt_$(V))
-+am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
-+am__v_lt_0 = --silent
-+libgdmuser_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
- 	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libgdmuser_la_CFLAGS) \
- 	$(CFLAGS) $(libgdmuser_la_LDFLAGS) $(LDFLAGS) -o $@
- am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(gladedir)" \
- 	"$(DESTDIR)$(schemasdir)"
--libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- am__EXEEXT_1 =
- PROGRAMS = $(libexec_PROGRAMS) $(noinst_PROGRAMS)
- am_gdm_simple_greeter_OBJECTS = greeter-main.$(OBJEXT) \
-@@ -177,18 +184,32 @@ am_test_user_manager_OBJECTS = test-user
- test_user_manager_OBJECTS = $(am_test_user_manager_OBJECTS)
- test_user_manager_DEPENDENCIES = libgdmuser.la $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
--DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
-+DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
--	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-+	$(AM_CFLAGS) $(CFLAGS)
-+AM_V_CC = $(am__v_CC_$(V))
-+am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
-+am__v_CC_0 = @echo "  CC    " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- CCLD = $(CC)
--LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
--	$(LDFLAGS) -o $@
-+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_CCLD = $(am__v_CCLD_$(V))
-+am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
-+am__v_CCLD_0 = @echo "  CCLD  " $@;
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
- SOURCES = $(libgdmuser_la_SOURCES) $(gdm_simple_greeter_SOURCES) \
- 	$(test_filesystem_type_SOURCES) \
- 	$(test_greeter_login_window_SOURCES) \
-@@ -215,19 +236,61 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
--gladeDATA_INSTALL = $(INSTALL_DATA)
--schemasDATA_INSTALL = $(INSTALL_DATA)
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- DATA = $(glade_DATA) $(schemas_DATA)
- RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
-   distclean-recursive maintainer-clean-recursive
-+AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-+	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-+	distdir
- ETAGS = etags
- CTAGS = ctags
- DIST_SUBDIRS = $(SUBDIRS)
- DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-+am__relativize = \
-+  dir0=`pwd`; \
-+  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
-+  sed_rest='s,^[^/]*/*,,'; \
-+  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
-+  sed_butlast='s,/*[^/]*$$,,'; \
-+  while test -n "$$dir1"; do \
-+    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
-+    if test "$$first" != "."; then \
-+      if test "$$first" = ".."; then \
-+        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
-+        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
-+      else \
-+        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
-+        if test "$$first2" = "$$first"; then \
-+          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
-+        else \
-+          dir2="../$$dir2"; \
-+        fi; \
-+        dir0="$$dir0"/"$$first"; \
-+      fi; \
-+    fi; \
-+    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
-+  done; \
-+  reldir="$$dir2"
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -268,7 +331,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -283,8 +347,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -325,6 +388,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -334,6 +398,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -344,13 +409,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -364,6 +435,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -402,7 +474,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -438,6 +510,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -452,6 +525,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -792,14 +866,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/simple-greeter/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  gui/simple-greeter/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/simple-greeter/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu gui/simple-greeter/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -817,6 +891,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- clean-noinstLTLIBRARIES:
- 	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
-@@ -827,75 +902,92 @@ clean-noinstLTLIBRARIES:
- 	  rm -f "$${dir}/so_locations"; \
- 	done
- libgdmuser.la: $(libgdmuser_la_OBJECTS) $(libgdmuser_la_DEPENDENCIES) 
--	$(libgdmuser_la_LINK)  $(libgdmuser_la_OBJECTS) $(libgdmuser_la_LIBADD) $(LIBS)
-+	$(AM_V_CCLD)$(libgdmuser_la_LINK)  $(libgdmuser_la_OBJECTS) $(libgdmuser_la_LIBADD) $(LIBS)
- install-libexecPROGRAMS: $(libexec_PROGRAMS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  if test -f $$p \
--	     || test -f $$p1 \
--	  ; then \
--	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
--	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
--	  else :; fi; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	for p in $$list; do echo "$$p $$p"; done | \
-+	sed 's/$(EXEEXT)$$//' | \
-+	while read p p1; do if test -f $$p || test -f $$p1; \
-+	  then echo "$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+	sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+	    else { print "f", $$3 "/" $$4, $$1; } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	    test -z "$$files" || { \
-+	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
-+	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
-+	    } \
-+	; done
- 
- uninstall-libexecPROGRAMS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+	      -e 's/$$/$(EXEEXT)/' `; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
- 
- clean-libexecPROGRAMS:
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- 
- clean-noinstPROGRAMS:
--	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- gdm-simple-greeter$(EXEEXT): $(gdm_simple_greeter_OBJECTS) $(gdm_simple_greeter_DEPENDENCIES) 
- 	@rm -f gdm-simple-greeter$(EXEEXT)
--	$(LINK) $(gdm_simple_greeter_OBJECTS) $(gdm_simple_greeter_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(gdm_simple_greeter_OBJECTS) $(gdm_simple_greeter_LDADD) $(LIBS)
- test-filesystem-type$(EXEEXT): $(test_filesystem_type_OBJECTS) $(test_filesystem_type_DEPENDENCIES) 
- 	@rm -f test-filesystem-type$(EXEEXT)
--	$(LINK) $(test_filesystem_type_OBJECTS) $(test_filesystem_type_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_filesystem_type_OBJECTS) $(test_filesystem_type_LDADD) $(LIBS)
- test-greeter-login-window$(EXEEXT): $(test_greeter_login_window_OBJECTS) $(test_greeter_login_window_DEPENDENCIES) 
- 	@rm -f test-greeter-login-window$(EXEEXT)
--	$(LINK) $(test_greeter_login_window_OBJECTS) $(test_greeter_login_window_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_greeter_login_window_OBJECTS) $(test_greeter_login_window_LDADD) $(LIBS)
- test-greeter-panel$(EXEEXT): $(test_greeter_panel_OBJECTS) $(test_greeter_panel_DEPENDENCIES) 
- 	@rm -f test-greeter-panel$(EXEEXT)
--	$(LINK) $(test_greeter_panel_OBJECTS) $(test_greeter_panel_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_greeter_panel_OBJECTS) $(test_greeter_panel_LDADD) $(LIBS)
- test-language-chooser$(EXEEXT): $(test_language_chooser_OBJECTS) $(test_language_chooser_DEPENDENCIES) 
- 	@rm -f test-language-chooser$(EXEEXT)
--	$(LINK) $(test_language_chooser_OBJECTS) $(test_language_chooser_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_language_chooser_OBJECTS) $(test_language_chooser_LDADD) $(LIBS)
- test-languages$(EXEEXT): $(test_languages_OBJECTS) $(test_languages_DEPENDENCIES) 
- 	@rm -f test-languages$(EXEEXT)
--	$(LINK) $(test_languages_OBJECTS) $(test_languages_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_languages_OBJECTS) $(test_languages_LDADD) $(LIBS)
- test-layout-chooser$(EXEEXT): $(test_layout_chooser_OBJECTS) $(test_layout_chooser_DEPENDENCIES) 
- 	@rm -f test-layout-chooser$(EXEEXT)
--	$(LINK) $(test_layout_chooser_OBJECTS) $(test_layout_chooser_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_layout_chooser_OBJECTS) $(test_layout_chooser_LDADD) $(LIBS)
- test-remote-login-window$(EXEEXT): $(test_remote_login_window_OBJECTS) $(test_remote_login_window_DEPENDENCIES) 
- 	@rm -f test-remote-login-window$(EXEEXT)
--	$(LINK) $(test_remote_login_window_OBJECTS) $(test_remote_login_window_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_remote_login_window_OBJECTS) $(test_remote_login_window_LDADD) $(LIBS)
- test-sessions$(EXEEXT): $(test_sessions_OBJECTS) $(test_sessions_DEPENDENCIES) 
- 	@rm -f test-sessions$(EXEEXT)
--	$(LINK) $(test_sessions_OBJECTS) $(test_sessions_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_sessions_OBJECTS) $(test_sessions_LDADD) $(LIBS)
- test-user-chooser$(EXEEXT): $(test_user_chooser_OBJECTS) $(test_user_chooser_DEPENDENCIES) 
- 	@rm -f test-user-chooser$(EXEEXT)
--	$(LINK) $(test_user_chooser_OBJECTS) $(test_user_chooser_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_user_chooser_OBJECTS) $(test_user_chooser_LDADD) $(LIBS)
- test-user-manager$(EXEEXT): $(test_user_manager_OBJECTS) $(test_user_manager_DEPENDENCIES) 
- 	@rm -f test-user-manager$(EXEEXT)
--	$(LINK) $(test_user_manager_OBJECTS) $(test_user_manager_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(test_user_manager_OBJECTS) $(test_user_manager_LDADD) $(LIBS)
- 
- mostlyclean-compile:
- 	-rm -f *.$(OBJEXT)
-@@ -942,39 +1034,44 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/test-user-manager.Po at am__quote@
- 
- .c.o:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c $<
- 
- .c.obj:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
- 
- .c.lo:
-- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
- 
- libgdmuser_la-gdm-user.lo: gdm-user.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user.Tpo -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmuser_la-gdm-user.Tpo $(DEPDIR)/libgdmuser_la-gdm-user.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user.Tpo -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmuser_la-gdm-user.Tpo $(DEPDIR)/libgdmuser_la-gdm-user.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-user.c' object='libgdmuser_la-gdm-user.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user.lo `test -f 'gdm-user.c' || echo '$(srcdir)/'`gdm-user.c
- 
- libgdmuser_la-gdm-user-manager.lo: gdm-user-manager.c
-- at am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user-manager.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo $(DEPDIR)/libgdmuser_la-gdm-user-manager.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -MT libgdmuser_la-gdm-user-manager.lo -MD -MP -MF $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libgdmuser_la-gdm-user-manager.Tpo $(DEPDIR)/libgdmuser_la-gdm-user-manager.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='gdm-user-manager.c' object='libgdmuser_la-gdm-user-manager.lo' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-- at am__fastdepCC_FALSE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
-+ at am__fastdepCC_FALSE@	$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgdmuser_la_CFLAGS) $(CFLAGS) -c -o libgdmuser_la-gdm-user-manager.lo `test -f 'gdm-user-manager.c' || echo '$(srcdir)/'`gdm-user-manager.c
- 
- mostlyclean-libtool:
- 	-rm -f *.lo
-@@ -984,37 +1081,43 @@ clean-libtool:
- install-gladeDATA: $(glade_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(gladedir)" || $(MKDIR_P) "$(DESTDIR)$(gladedir)"
--	@list='$(glade_DATA)'; for p in $$list; do \
-+	@list='$(glade_DATA)'; test -n "$(gladedir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(gladeDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(gladedir)/$$f'"; \
--	  $(gladeDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(gladedir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(gladedir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(gladedir)" || exit $$?; \
- 	done
- 
- uninstall-gladeDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(glade_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(gladedir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(gladedir)/$$f"; \
--	done
-+	@list='$(glade_DATA)'; test -n "$(gladedir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(gladedir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(gladedir)" && rm -f $$files
- install-schemasDATA: $(schemas_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(schemasdir)" || $(MKDIR_P) "$(DESTDIR)$(schemasdir)"
--	@list='$(schemas_DATA)'; for p in $$list; do \
-+	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(schemasDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(schemasdir)/$$f'"; \
--	  $(schemasDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(schemasdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(schemasdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(schemasdir)" || exit $$?; \
- 	done
- 
- uninstall-schemasDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(schemas_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(schemasdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(schemasdir)/$$f"; \
--	done
-+	@list='$(schemas_DATA)'; test -n "$(schemasdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(schemasdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(schemasdir)" && rm -f $$files
- 
- # This directory's subdirectories are mostly independent; you can cd
- # into them and run `make' without going through this Makefile.
-@@ -1040,7 +1143,7 @@ $(RECURSIVE_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done; \
- 	if test "$$dot_seen" = "no"; then \
-@@ -1074,16 +1177,16 @@ $(RECURSIVE_CLEAN_TARGETS):
- 	  else \
- 	    local_target="$$target"; \
- 	  fi; \
--	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
-+	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- 	  || eval $$failcom; \
- 	done && test -z "$$fail"
- tags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- 	done
- ctags-recursive:
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
--	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
-+	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- 	done
- 
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-@@ -1091,14 +1194,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- 	  include_option=--etags-include; \
-@@ -1110,39 +1213,43 @@ TAGS: tags-recursive $(HEADERS) $(SOURCE
- 	list='$(SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test ! -f $$subdir/TAGS || \
--	      tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
-+	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
- 	  fi; \
- 	done; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -1163,29 +1270,44 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
--	list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- 	  if test "$$subdir" = .; then :; else \
- 	    test -d "$(distdir)/$$subdir" \
- 	    || $(MKDIR_P) "$(distdir)/$$subdir" \
- 	    || exit 1; \
--	    distdir=`$(am__cd) $(distdir) && pwd`; \
--	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
--	    (cd $$subdir && \
-+	  fi; \
-+	done
-+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
-+	  if test "$$subdir" = .; then :; else \
-+	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
-+	    $(am__relativize); \
-+	    new_distdir=$$reldir; \
-+	    dir1=$$subdir; dir2="$(top_distdir)"; \
-+	    $(am__relativize); \
-+	    new_top_distdir=$$reldir; \
-+	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
-+	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
-+	    ($(am__cd) $$subdir && \
- 	      $(MAKE) $(AM_MAKEFLAGS) \
--	        top_distdir="$$top_distdir" \
--	        distdir="$$distdir/$$subdir" \
-+	        top_distdir="$$new_top_distdir" \
-+	        distdir="$$new_distdir" \
- 		am__remove_distdir=: \
- 		am__skip_length_check=: \
-+		am__skip_mode_fix=: \
- 	        distdir) \
- 	      || exit 1; \
- 	  fi; \
-@@ -1218,6 +1340,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
- 
- maintainer-clean-generic:
-@@ -1241,6 +1364,8 @@ dvi-am:
- 
- html: html-recursive
- 
-+html-am:
-+
- info: info-recursive
- 
- info-am:
-@@ -1250,18 +1375,28 @@ install-data-am: install-data-local inst
- 
- install-dvi: install-dvi-recursive
- 
-+install-dvi-am:
-+
- install-exec-am: install-libexecPROGRAMS
- 
- install-html: install-html-recursive
- 
-+install-html-am:
-+
- install-info: install-info-recursive
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-recursive
- 
-+install-pdf-am:
-+
- install-ps: install-ps-recursive
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-recursive
-@@ -1285,8 +1420,8 @@ ps-am:
- uninstall-am: uninstall-gladeDATA uninstall-libexecPROGRAMS \
- 	uninstall-schemasDATA
- 
--.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
--	install-strip
-+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
-+	install-am install-strip tags-recursive
- 
- .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
- 	all all-am check check-am clean clean-generic \
-@@ -1317,6 +1452,7 @@ uninstall-am: uninstall-gladeDATA uninst
- @GCONF_SCHEMAS_INSTALL_TRUE@		done \
- @GCONF_SCHEMAS_INSTALL_TRUE@	fi
- @GCONF_SCHEMAS_INSTALL_FALSE at install-data-local:
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/gui/simple-greeter/libnotificationarea/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/gui/simple-greeter/libnotificationarea/Makefile.in	2009-10-25 08:29:56.549768500 +0100
-+++ gdm-2.28.1/gui/simple-greeter/libnotificationarea/Makefile.in	2009-10-25 08:29:44.593759917 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -17,8 +18,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -38,13 +40,16 @@ subdir = gui/simple-greeter/libnotificat
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- LTLIBRARIES = $(noinst_LTLIBRARIES)
- am__DEPENDENCIES_1 =
- libnotificationarea_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
-@@ -53,25 +58,43 @@ am__objects_1 =
- am_libnotificationarea_la_OBJECTS = fixedtip.lo obox.lo na-tray.lo \
- 	na-tray-manager.lo na-marshal.lo $(am__objects_1)
- libnotificationarea_la_OBJECTS = $(am_libnotificationarea_la_OBJECTS)
--libnotificationarea_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
--	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
--	$(libnotificationarea_la_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_lt = $(am__v_lt_$(V))
-+am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
-+am__v_lt_0 = --silent
-+libnotificationarea_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
-+	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
-+	$(AM_CFLAGS) $(CFLAGS) $(libnotificationarea_la_LDFLAGS) \
-+	$(LDFLAGS) -o $@
- PROGRAMS = $(noinst_PROGRAMS)
- am_testtray_OBJECTS = testtray.$(OBJEXT) $(am__objects_1)
- testtray_OBJECTS = $(am_testtray_OBJECTS)
- testtray_DEPENDENCIES = libnotificationarea.la $(am__DEPENDENCIES_1)
--DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
-+DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
--	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-+	$(AM_CFLAGS) $(CFLAGS)
-+AM_V_CC = $(am__v_CC_$(V))
-+am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
-+am__v_CC_0 = @echo "  CC    " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- CCLD = $(CC)
--LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
--	$(LDFLAGS) -o $@
-+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_CCLD = $(am__v_CCLD_$(V))
-+am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
-+am__v_CCLD_0 = @echo "  CCLD  " $@;
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
- SOURCES = $(libnotificationarea_la_SOURCES) $(testtray_SOURCES)
- DIST_SOURCES = $(libnotificationarea_la_SOURCES) $(testtray_SOURCES)
- ETAGS = etags
-@@ -80,6 +103,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -120,7 +144,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -135,8 +160,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -177,6 +201,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -186,6 +211,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -196,13 +222,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -216,6 +248,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -254,7 +287,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -290,6 +323,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -304,6 +338,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -372,14 +407,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/simple-greeter/libnotificationarea/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  gui/simple-greeter/libnotificationarea/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/simple-greeter/libnotificationarea/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu gui/simple-greeter/libnotificationarea/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -397,6 +432,7 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- 
- clean-noinstLTLIBRARIES:
- 	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
-@@ -407,17 +443,19 @@ clean-noinstLTLIBRARIES:
- 	  rm -f "$${dir}/so_locations"; \
- 	done
- libnotificationarea.la: $(libnotificationarea_la_OBJECTS) $(libnotificationarea_la_DEPENDENCIES) 
--	$(libnotificationarea_la_LINK)  $(libnotificationarea_la_OBJECTS) $(libnotificationarea_la_LIBADD) $(LIBS)
-+	$(AM_V_CCLD)$(libnotificationarea_la_LINK)  $(libnotificationarea_la_OBJECTS) $(libnotificationarea_la_LIBADD) $(LIBS)
- 
- clean-noinstPROGRAMS:
--	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- testtray$(EXEEXT): $(testtray_OBJECTS) $(testtray_DEPENDENCIES) 
- 	@rm -f testtray$(EXEEXT)
--	$(LINK) $(testtray_OBJECTS) $(testtray_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(testtray_OBJECTS) $(testtray_LDADD) $(LIBS)
- 
- mostlyclean-compile:
- 	-rm -f *.$(OBJEXT)
-@@ -433,22 +471,25 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/testtray.Po at am__quote@
- 
- .c.o:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c $<
- 
- .c.obj:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
- 
- .c.lo:
-- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
-@@ -464,45 +505,49 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -523,13 +568,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -559,6 +608,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 
- maintainer-clean-generic:
- 	@echo "This command is intended for maintainers to use"
-@@ -581,6 +631,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -589,18 +641,28 @@ install-data-am:
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am:
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -623,7 +685,7 @@ ps-am:
- 
- uninstall-am:
- 
--.MAKE: install-am install-strip
-+.MAKE: all check install install-am install-strip
- 
- .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
- 	clean-libtool clean-noinstLTLIBRARIES clean-noinstPROGRAMS \
-@@ -646,6 +708,7 @@ na-marshal.h: na-marshal.list $(GLIB_GEN
- na-marshal.c: na-marshal.list $(GLIB_GENMARSHAL)
- 	echo "#include \"na-marshal.h\"" > $@ && \
- 	$(GLIB_GENMARSHAL) $< --body --prefix=_na_marshal >> $@
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/gui/user-switch-applet/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/gui/user-switch-applet/Makefile.in	2009-10-25 08:29:56.793757832 +0100
-+++ gdm-2.28.1/gui/user-switch-applet/Makefile.in	2009-10-25 08:29:44.721759362 +0100
-@@ -1,8 +1,9 @@
--# Makefile.in generated by automake 1.10 from Makefile.am.
-+# Makefile.in generated by automake 1.11 from Makefile.am.
- # @configure_input@
- 
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
-+# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-+# Inc.
- # This Makefile.in is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -17,8 +18,9 @@
- 
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkglibdir = $(libdir)/@PACKAGE@
- pkgincludedir = $(includedir)/@PACKAGE@
-+pkglibdir = $(libdir)/@PACKAGE@
-+pkglibexecdir = $(libexecdir)/@PACKAGE@
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
-@@ -38,17 +40,19 @@ subdir = gui/user-switch-applet
- DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
--	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/acinclude.m4 \
--	$(top_srcdir)/configure.ac
-+	$(top_srcdir)/m4/intltool.m4 $(top_srcdir)/m4/libtool.m4 \
-+	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
-+	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
-+	$(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- 	$(ACLOCAL_M4)
- mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
- CONFIG_HEADER = $(top_builddir)/config.h
- CONFIG_CLEAN_FILES =
-+CONFIG_CLEAN_VPATH_FILES =
- am__EXEEXT_1 =
- am__installdirs = "$(DESTDIR)$(libexecdir)" "$(DESTDIR)$(serverdir)" \
- 	"$(DESTDIR)$(uidir)"
--libexecPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- PROGRAMS = $(libexec_PROGRAMS)
- am__objects_1 =
- am_gdm_user_switch_applet_OBJECTS = applet.$(OBJEXT) \
-@@ -59,18 +63,35 @@ gdm_user_switch_applet_DEPENDENCIES =  \
- 	$(top_builddir)/gui/simple-greeter/libgdmuser.la \
- 	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
- 	$(am__DEPENDENCIES_1)
--DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@
-+AM_V_lt = $(am__v_lt_$(V))
-+am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
-+am__v_lt_0 = --silent
-+DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
-+am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- 	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
--LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
--	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-+LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
-+	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
-+	$(AM_CFLAGS) $(CFLAGS)
-+AM_V_CC = $(am__v_CC_$(V))
-+am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
-+am__v_CC_0 = @echo "  CC    " $@;
-+AM_V_at = $(am__v_at_$(V))
-+am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
-+am__v_at_0 = @
- CCLD = $(CC)
--LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--	--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
--	$(LDFLAGS) -o $@
-+LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
-+	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
-+	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-+AM_V_CCLD = $(am__v_CCLD_$(V))
-+am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
-+am__v_CCLD_0 = @echo "  CCLD  " $@;
-+AM_V_GEN = $(am__v_GEN_$(V))
-+am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
-+am__v_GEN_0 = @echo "  GEN   " $@;
- SOURCES = $(gdm_user_switch_applet_SOURCES)
- DIST_SOURCES = $(gdm_user_switch_applet_SOURCES)
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-@@ -78,9 +99,22 @@ am__vpath_adj = case $$p in \
-     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
-     *) f=$$p;; \
-   esac;
--am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
--serverDATA_INSTALL = $(INSTALL_DATA)
--uiDATA_INSTALL = $(INSTALL_DATA)
-+am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
-+am__install_max = 40
-+am__nobase_strip_setup = \
-+  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
-+am__nobase_strip = \
-+  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
-+am__nobase_list = $(am__nobase_strip_setup); \
-+  for p in $$list; do echo "$$p $$p"; done | \
-+  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-+  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-+    if (++n[$$2] == $(am__install_max)) \
-+      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-+    END { for (dir in files) print dir, files[dir] }'
-+am__base_list = \
-+  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-+  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
- DATA = $(server_DATA) $(ui_DATA)
- ETAGS = etags
- CTAGS = ctags
-@@ -88,6 +122,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
- ACLOCAL = @ACLOCAL@
- ALL_LINGUAS = @ALL_LINGUAS@
- AMTAR = @AMTAR@
-+AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
- APPLET_CFLAGS = @APPLET_CFLAGS@
- APPLET_LIBS = @APPLET_LIBS@
- AR = @AR@
-@@ -128,7 +163,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
- DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
- DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
- DOC_USER_FORMATS = @DOC_USER_FORMATS@
--ECHO = @ECHO@
-+DSYMUTIL = @DSYMUTIL@
-+DUMPBIN = @DUMPBIN@
- ECHO_C = @ECHO_C@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
-@@ -143,8 +179,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
- EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
- EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
- EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
--F77 = @F77@
--FFLAGS = @FFLAGS@
-+FGREP = @FGREP@
- GCONFTOOL = @GCONFTOOL@
- GCONF_CFLAGS = @GCONF_CFLAGS@
- GCONF_LIBS = @GCONF_LIBS@
-@@ -185,6 +220,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
- INTLTOOL_PERL = @INTLTOOL_PERL@
- INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
- LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
-+LD = @LD@
- LDFLAGS = @LDFLAGS@
- LIBDIR = @LIBDIR@
- LIBEXECDIR = @LIBEXECDIR@
-@@ -194,6 +230,7 @@ LIBTOOL = @LIBTOOL@
- LIBWRAP_LIBS = @LIBWRAP_LIBS@
- LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
- LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
-+LIPO = @LIPO@
- LN_S = @LN_S@
- LOCALSTATEDIR = @LOCALSTATEDIR@
- LTLIBOBJS = @LTLIBOBJS@
-@@ -204,13 +241,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
- MSGFMT = @MSGFMT@
- MSGFMT_OPTS = @MSGFMT_OPTS@
- MSGMERGE = @MSGMERGE@
-+NM = @NM@
-+NMEDIT = @NMEDIT@
-+OBJDUMP = @OBJDUMP@
- OBJEXT = @OBJEXT@
- OMF_DIR = @OMF_DIR@
-+OTOOL = @OTOOL@
-+OTOOL64 = @OTOOL64@
- PACKAGE = @PACKAGE@
- PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
- PACKAGE_NAME = @PACKAGE_NAME@
- PACKAGE_STRING = @PACKAGE_STRING@
- PACKAGE_TARNAME = @PACKAGE_TARNAME@
-+PACKAGE_URL = @PACKAGE_URL@
- PACKAGE_VERSION = @PACKAGE_VERSION@
- PAM_LIBS = @PAM_LIBS@
- PAM_PREFIX = @PAM_PREFIX@
-@@ -224,6 +267,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
- RANLIB = @RANLIB@
- RBAC_LIBS = @RBAC_LIBS@
- SBINDIR = @SBINDIR@
-+SED = @SED@
- SET_MAKE = @SET_MAKE@
- SHELL = @SHELL@
- SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -262,7 +306,7 @@ abs_top_builddir = @abs_top_builddir@
- abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
--ac_ct_F77 = @ac_ct_F77@
-+ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -298,6 +342,7 @@ libexecdir = @libexecdir@
- localedir = @localedir@
- localstatedir = @localstatedir@
- logdir = @logdir@
-+lt_ECHO = @lt_ECHO@
- mandir = @mandir@
- mkdir_p = @mkdir_p@
- oldincludedir = @oldincludedir@
-@@ -312,6 +357,7 @@ srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- sysconfsubdir = @sysconfsubdir@
- target_alias = @target_alias@
-+top_build_prefix = @top_build_prefix@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
- NULL = 
-@@ -379,14 +425,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
- 	@for dep in $?; do \
- 	  case '$(am__configure_deps)' in \
- 	    *$$dep*) \
--	      cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
--		&& exit 0; \
-+	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-+	        && { if test -f $@; then exit 0; else break; fi; }; \
- 	      exit 1;; \
- 	  esac; \
- 	done; \
--	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  gui/user-switch-applet/Makefile'; \
--	cd $(top_srcdir) && \
--	  $(AUTOMAKE) --gnu  gui/user-switch-applet/Makefile
-+	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu gui/user-switch-applet/Makefile'; \
-+	$(am__cd) $(top_srcdir) && \
-+	  $(AUTOMAKE) --gnu gui/user-switch-applet/Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- 	@case '$?' in \
-@@ -404,37 +450,53 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- 	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-+$(am__aclocal_m4_deps):
- install-libexecPROGRAMS: $(libexec_PROGRAMS)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(libexecdir)" || $(MKDIR_P) "$(DESTDIR)$(libexecdir)"
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  if test -f $$p \
--	     || test -f $$p1 \
--	  ; then \
--	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
--	   echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \
--	   $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(libexecPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \
--	  else :; fi; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	for p in $$list; do echo "$$p $$p"; done | \
-+	sed 's/$(EXEEXT)$$//' | \
-+	while read p p1; do if test -f $$p || test -f $$p1; \
-+	  then echo "$$p"; echo "$$p"; else :; fi; \
-+	done | \
-+	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-+	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-+	sed 'N;N;N;s,\n, ,g' | \
-+	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-+	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-+	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-+	    else { print "f", $$3 "/" $$4, $$1; } } \
-+	  END { for (d in files) print "f", d, files[d] }' | \
-+	while read type dir files; do \
-+	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-+	    test -z "$$files" || { \
-+	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(libexecdir)$$dir'"; \
-+	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(libexecdir)$$dir" || exit $$?; \
-+	    } \
-+	; done
- 
- uninstall-libexecPROGRAMS:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
--	  echo " rm -f '$(DESTDIR)$(libexecdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(libexecdir)/$$f"; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$(libexecdir)" || list=; \
-+	files=`for p in $$list; do echo "$$p"; done | \
-+	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-+	      -e 's/$$/$(EXEEXT)/' `; \
-+	test -n "$$list" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(libexecdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(libexecdir)" && rm -f $$files
- 
- clean-libexecPROGRAMS:
--	@list='$(libexec_PROGRAMS)'; for p in $$list; do \
--	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
--	  echo " rm -f $$p $$f"; \
--	  rm -f $$p $$f ; \
--	done
-+	@list='$(libexec_PROGRAMS)'; test -n "$$list" || exit 0; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list || exit $$?; \
-+	test -n "$(EXEEXT)" || exit 0; \
-+	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
-+	echo " rm -f" $$list; \
-+	rm -f $$list
- gdm-user-switch-applet$(EXEEXT): $(gdm_user_switch_applet_OBJECTS) $(gdm_user_switch_applet_DEPENDENCIES) 
- 	@rm -f gdm-user-switch-applet$(EXEEXT)
--	$(LINK) $(gdm_user_switch_applet_OBJECTS) $(gdm_user_switch_applet_LDADD) $(LIBS)
-+	$(AM_V_CCLD)$(LINK) $(gdm_user_switch_applet_OBJECTS) $(gdm_user_switch_applet_LDADD) $(LIBS)
- 
- mostlyclean-compile:
- 	-rm -f *.$(OBJEXT)
-@@ -446,22 +508,25 @@ distclean-compile:
- @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gdm-entry-menu-item.Po at am__quote@
- 
- .c.o:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c $<
- 
- .c.obj:
-- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
- 
- .c.lo:
-- at am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-- at am__fastdepCC_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_TRUE@	$(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
-+ at am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
-+ at am__fastdepCC_FALSE@	$(AM_V_CC) @AM_BACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
-@@ -474,82 +539,92 @@ clean-libtool:
- install-serverDATA: $(server_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(serverdir)" || $(MKDIR_P) "$(DESTDIR)$(serverdir)"
--	@list='$(server_DATA)'; for p in $$list; do \
-+	@list='$(server_DATA)'; test -n "$(serverdir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(serverDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(serverdir)/$$f'"; \
--	  $(serverDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(serverdir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(serverdir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(serverdir)" || exit $$?; \
- 	done
- 
- uninstall-serverDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(server_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(serverdir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(serverdir)/$$f"; \
--	done
-+	@list='$(server_DATA)'; test -n "$(serverdir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(serverdir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(serverdir)" && rm -f $$files
- install-uiDATA: $(ui_DATA)
- 	@$(NORMAL_INSTALL)
- 	test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)"
--	@list='$(ui_DATA)'; for p in $$list; do \
-+	@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \
-+	for p in $$list; do \
- 	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
--	  f=$(am__strip_dir) \
--	  echo " $(uiDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(uidir)/$$f'"; \
--	  $(uiDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(uidir)/$$f"; \
-+	  echo "$$d$$p"; \
-+	done | $(am__base_list) | \
-+	while read files; do \
-+	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(uidir)'"; \
-+	  $(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \
- 	done
- 
- uninstall-uiDATA:
- 	@$(NORMAL_UNINSTALL)
--	@list='$(ui_DATA)'; for p in $$list; do \
--	  f=$(am__strip_dir) \
--	  echo " rm -f '$(DESTDIR)$(uidir)/$$f'"; \
--	  rm -f "$(DESTDIR)$(uidir)/$$f"; \
--	done
-+	@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \
-+	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-+	test -n "$$files" || exit 0; \
-+	echo " ( cd '$(DESTDIR)$(uidir)' && rm -f" $$files ")"; \
-+	cd "$(DESTDIR)$(uidir)" && rm -f $$files
- 
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- 	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
- 	mkid -fID $$unique
- tags: TAGS
- 
- TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
-+	set x; \
- 	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	shift; \
-+	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
- 	  test -n "$$unique" || unique=$$empty_fix; \
--	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
--	    $$tags $$unique; \
-+	  if test $$# -gt 0; then \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      "$$@" $$unique; \
-+	  else \
-+	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+	      $$unique; \
-+	  fi; \
- 	fi
- ctags: CTAGS
- CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
- 		$(TAGS_FILES) $(LISP)
--	tags=; \
--	here=`pwd`; \
- 	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
- 	unique=`for i in $$list; do \
- 	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- 	  done | \
--	  $(AWK) '    { files[$$0] = 1; } \
--	       END { for (i in files) print i; }'`; \
--	test -z "$(CTAGS_ARGS)$$tags$$unique" \
-+	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-+	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-+	test -z "$(CTAGS_ARGS)$$unique" \
- 	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
--	     $$tags $$unique
-+	     $$unique
- 
- GTAGS:
- 	here=`$(am__cd) $(top_builddir) && pwd` \
--	  && cd $(top_srcdir) \
--	  && gtags -i $(GTAGS_ARGS) $$here
-+	  && $(am__cd) $(top_srcdir) \
-+	  && gtags -i $(GTAGS_ARGS) "$$here"
- 
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -570,13 +645,17 @@ distdir: $(DISTFILES)
- 	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- 	  if test -d $$d/$$file; then \
- 	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-+	    if test -d "$(distdir)/$$file"; then \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+	    fi; \
- 	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
--	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
-+	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-+	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
- 	    fi; \
--	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
-+	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
- 	  else \
--	    test -f $(distdir)/$$file \
--	    || cp -p $$d/$$file $(distdir)/$$file \
-+	    test -f "$(distdir)/$$file" \
-+	    || cp -p $$d/$$file "$(distdir)/$$file" \
- 	    || exit 1; \
- 	  fi; \
- 	done
-@@ -607,6 +686,7 @@ clean-generic:
- 
- distclean-generic:
- 	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-+	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- 	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
- 
- maintainer-clean-generic:
-@@ -630,6 +710,8 @@ dvi-am:
- 
- html: html-am
- 
-+html-am:
-+
- info: info-am
- 
- info-am:
-@@ -638,18 +720,28 @@ install-data-am: install-serverDATA inst
- 
- install-dvi: install-dvi-am
- 
-+install-dvi-am:
-+
- install-exec-am: install-libexecPROGRAMS
- 
- install-html: install-html-am
- 
-+install-html-am:
-+
- install-info: install-info-am
- 
-+install-info-am:
-+
- install-man:
- 
- install-pdf: install-pdf-am
- 
-+install-pdf-am:
-+
- install-ps: install-ps-am
- 
-+install-ps-am:
-+
- installcheck-am:
- 
- maintainer-clean: maintainer-clean-am
-@@ -696,6 +788,7 @@ $(server_in_files): $(server_in_files:.s
- 	sed -e "s|\@LIBEXECDIR\@|$(libexecdir)|" -e "s|\@VERSION\@|$(VERSION)|" $< > $@
- 
- @INTLTOOL_SERVER_RULE@
-+
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
- .NOEXPORT:
-Index: gdm-2.28.1/install-sh
-===================================================================
---- gdm-2.28.1.orig/install-sh	2009-10-25 08:29:54.262263459 +0100
-+++ gdm-2.28.1/install-sh	2009-10-25 08:29:42.458259244 +0100
-@@ -1,7 +1,7 @@
- #!/bin/sh
- # install - install a program, script, or datafile
- 
--scriptversion=2006-10-14.15
-+scriptversion=2009-04-28.21; # UTC
- 
- # This originates from X11R5 (mit/util/scripts/install.sh), which was
- # later released in X11R6 (xc/config/util/install.sh) with the
-@@ -48,7 +48,7 @@ IFS=" ""	$nl"
- # set DOITPROG to echo to test this script
- 
- # Don't use :- since 4.3BSD and earlier shells don't like it.
--doit="${DOITPROG-}"
-+doit=${DOITPROG-}
- if test -z "$doit"; then
-   doit_exec=exec
- else
-@@ -58,34 +58,49 @@ fi
- # Put in absolute file names if you don't have them in your path;
- # or use environment vars.
- 
--mvprog="${MVPROG-mv}"
--cpprog="${CPPROG-cp}"
--chmodprog="${CHMODPROG-chmod}"
--chownprog="${CHOWNPROG-chown}"
--chgrpprog="${CHGRPPROG-chgrp}"
--stripprog="${STRIPPROG-strip}"
--rmprog="${RMPROG-rm}"
--mkdirprog="${MKDIRPROG-mkdir}"
-+chgrpprog=${CHGRPPROG-chgrp}
-+chmodprog=${CHMODPROG-chmod}
-+chownprog=${CHOWNPROG-chown}
-+cmpprog=${CMPPROG-cmp}
-+cpprog=${CPPROG-cp}
-+mkdirprog=${MKDIRPROG-mkdir}
-+mvprog=${MVPROG-mv}
-+rmprog=${RMPROG-rm}
-+stripprog=${STRIPPROG-strip}
-+
-+posix_glob='?'
-+initialize_posix_glob='
-+  test "$posix_glob" != "?" || {
-+    if (set -f) 2>/dev/null; then
-+      posix_glob=
-+    else
-+      posix_glob=:
-+    fi
-+  }
-+'
- 
--posix_glob=
- posix_mkdir=
- 
- # Desired mode of installed file.
- mode=0755
- 
-+chgrpcmd=
- chmodcmd=$chmodprog
- chowncmd=
--chgrpcmd=
--stripcmd=
-+mvcmd=$mvprog
- rmcmd="$rmprog -f"
--mvcmd="$mvprog"
-+stripcmd=
-+
- src=
- dst=
- dir_arg=
--dstarg=
-+dst_arg=
-+
-+copy_on_change=false
- no_target_directory=
- 
--usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
-+usage="\
-+Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
-    or: $0 [OPTION]... SRCFILES... DIRECTORY
-    or: $0 [OPTION]... -t DIRECTORY SRCFILES...
-    or: $0 [OPTION]... -d DIRECTORIES...
-@@ -95,65 +110,55 @@ In the 2nd and 3rd, copy all SRCFILES to
- In the 4th, create DIRECTORIES.
- 
- Options:
---c         (ignored)
---d         create directories instead of installing files.
---g GROUP   $chgrpprog installed files to GROUP.
---m MODE    $chmodprog installed files to MODE.
---o USER    $chownprog installed files to USER.
---s         $stripprog installed files.
---t DIRECTORY  install into DIRECTORY.
---T         report an error if DSTFILE is a directory.
----help     display this help and exit.
----version  display version info and exit.
-+     --help     display this help and exit.
-+     --version  display version info and exit.
-+
-+  -c            (ignored)
-+  -C            install only if different (preserve the last data modification time)
-+  -d            create directories instead of installing files.
-+  -g GROUP      $chgrpprog installed files to GROUP.
-+  -m MODE       $chmodprog installed files to MODE.
-+  -o USER       $chownprog installed files to USER.
-+  -s            $stripprog installed files.
-+  -t DIRECTORY  install into DIRECTORY.
-+  -T            report an error if DSTFILE is a directory.
- 
- Environment variables override the default commands:
--  CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG
-+  CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
-+  RMPROG STRIPPROG
- "
- 
- while test $# -ne 0; do
-   case $1 in
--    -c) shift
--        continue;;
-+    -c) ;;
-+
-+    -C) copy_on_change=true;;
- 
--    -d) dir_arg=true
--        shift
--        continue;;
-+    -d) dir_arg=true;;
- 
-     -g) chgrpcmd="$chgrpprog $2"
--        shift
--        shift
--        continue;;
-+	shift;;
- 
-     --help) echo "$usage"; exit $?;;
- 
-     -m) mode=$2
--        shift
--        shift
- 	case $mode in
- 	  *' '* | *'	'* | *'
- '*	  | *'*'* | *'?'* | *'['*)
- 	    echo "$0: invalid mode: $mode" >&2
- 	    exit 1;;
- 	esac
--        continue;;
-+	shift;;
- 
-     -o) chowncmd="$chownprog $2"
--        shift
--        shift
--        continue;;
--
--    -s) stripcmd=$stripprog
--        shift
--        continue;;
--
--    -t) dstarg=$2
--	shift
--	shift
--	continue;;
--
--    -T) no_target_directory=true
--	shift
--	continue;;
-+	shift;;
-+
-+    -s) stripcmd=$stripprog;;
-+
-+    -t) dst_arg=$2
-+	shift;;
-+
-+    -T) no_target_directory=true;;
- 
-     --version) echo "$0 $scriptversion"; exit $?;;
- 
-@@ -165,21 +170,22 @@ while test $# -ne 0; do
- 
-     *)  break;;
-   esac
-+  shift
- done
- 
--if test $# -ne 0 && test -z "$dir_arg$dstarg"; then
-+if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
-   # When -d is used, all remaining arguments are directories to create.
-   # When -t is used, the destination is already specified.
-   # Otherwise, the last argument is the destination.  Remove it from $@.
-   for arg
-   do
--    if test -n "$dstarg"; then
-+    if test -n "$dst_arg"; then
-       # $@ is not empty: it contains at least $arg.
--      set fnord "$@" "$dstarg"
-+      set fnord "$@" "$dst_arg"
-       shift # fnord
-     fi
-     shift # arg
--    dstarg=$arg
-+    dst_arg=$arg
-   done
- fi
- 
-@@ -224,7 +230,7 @@ for src
- do
-   # Protect names starting with `-'.
-   case $src in
--    -*) src=./$src ;;
-+    -*) src=./$src;;
-   esac
- 
-   if test -n "$dir_arg"; then
-@@ -242,22 +248,22 @@ do
-       exit 1
-     fi
- 
--    if test -z "$dstarg"; then
-+    if test -z "$dst_arg"; then
-       echo "$0: no destination specified." >&2
-       exit 1
-     fi
- 
--    dst=$dstarg
-+    dst=$dst_arg
-     # Protect names starting with `-'.
-     case $dst in
--      -*) dst=./$dst ;;
-+      -*) dst=./$dst;;
-     esac
- 
-     # If destination is a directory, append the input filename; won't work
-     # if double slashes aren't ignored.
-     if test -d "$dst"; then
-       if test -n "$no_target_directory"; then
--	echo "$0: $dstarg: Is a directory" >&2
-+	echo "$0: $dst_arg: Is a directory" >&2
- 	exit 1
-       fi
-       dstdir=$dst
-@@ -378,26 +384,19 @@ do
-       # directory the slow way, step by step, checking for races as we go.
- 
-       case $dstdir in
--	/*) prefix=/ ;;
--	-*) prefix=./ ;;
--	*)  prefix= ;;
-+	/*) prefix='/';;
-+	-*) prefix='./';;
-+	*)  prefix='';;
-       esac
- 
--      case $posix_glob in
--        '')
--	  if (set -f) 2>/dev/null; then
--	    posix_glob=true
--	  else
--	    posix_glob=false
--	  fi ;;
--      esac
-+      eval "$initialize_posix_glob"
- 
-       oIFS=$IFS
-       IFS=/
--      $posix_glob && set -f
-+      $posix_glob set -f
-       set fnord $dstdir
-       shift
--      $posix_glob && set +f
-+      $posix_glob set +f
-       IFS=$oIFS
- 
-       prefixes=
-@@ -459,41 +458,54 @@ do
-     # ignore errors from any of these, just make sure not to ignore
-     # errors from the above "$doit $cpprog $src $dsttmp" command.
-     #
--    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \
--      && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \
--      && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \
--      && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
--
--    # Now rename the file to the real destination.
--    { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \
--      || {
--	   # The rename failed, perhaps because mv can't rename something else
--	   # to itself, or perhaps because mv is so ancient that it does not
--	   # support -f.
--
--	   # Now remove or move aside any old file at destination location.
--	   # We try this two ways since rm can't unlink itself on some
--	   # systems and the destination file might be busy for other
--	   # reasons.  In this case, the final cleanup might fail but the new
--	   # file should still install successfully.
--	   {
--	     if test -f "$dst"; then
--	       $doit $rmcmd -f "$dst" 2>/dev/null \
--	       || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \
--		     && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\
--	       || {
--		 echo "$0: cannot unlink or rename $dst" >&2
--		 (exit 1); exit 1
--	       }
--	     else
--	       :
--	     fi
--	   } &&
--
--	   # Now rename the file to the real destination.
--	   $doit $mvcmd "$dsttmp" "$dst"
--	 }
--    } || exit 1
-+    { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } &&
-+    { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } &&
-+    { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } &&
-+    { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&
-+
-+    # If -C, don't bother to copy if it wouldn't change the file.
-+    if $copy_on_change &&
-+       old=`LC_ALL=C ls -dlL "$dst"	2>/dev/null` &&
-+       new=`LC_ALL=C ls -dlL "$dsttmp"	2>/dev/null` &&
-+
-+       eval "$initialize_posix_glob" &&
-+       $posix_glob set -f &&
-+       set X $old && old=:$2:$4:$5:$6 &&
-+       set X $new && new=:$2:$4:$5:$6 &&
-+       $posix_glob set +f &&
-+
-+       test "$old" = "$new" &&
-+       $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
-+    then
-+      rm -f "$dsttmp"
-+    else
-+      # Rename the file to the real destination.
-+      $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
-+
-+      # The rename failed, perhaps because mv can't rename something else
-+      # to itself, or perhaps because mv is so ancient that it does not
-+      # support -f.
-+      {
-+	# Now remove or move aside any old file at destination location.
-+	# We try this two ways since rm can't unlink itself on some
-+	# systems and the destination file might be busy for other
-+	# reasons.  In this case, the final cleanup might fail but the new
-+	# file should still install successfully.
-+	{
-+	  test ! -f "$dst" ||
-+	  $doit $rmcmd -f "$dst" 2>/dev/null ||
-+	  { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
-+	    { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
-+	  } ||
-+	  { echo "$0: cannot unlink or rename $dst" >&2
-+	    (exit 1); exit 1
-+	  }
-+	} &&
-+
-+	# Now rename the file to the real destination.
-+	$doit $mvcmd "$dsttmp" "$dst"
-+      }
-+    fi || exit 1
- 
-     trap '' 0
-   fi
-@@ -503,5 +515,6 @@ done
- # eval: (add-hook 'write-file-hooks 'time-stamp)
- # time-stamp-start: "scriptversion="
- # time-stamp-format: "%:y-%02m-%02d.%02H"
--# time-stamp-end: "$"
-+# time-stamp-time-zone: "UTC"
-+# time-stamp-end: "; # UTC"
- # End:
-Index: gdm-2.28.1/m4/ltoptions.m4
-===================================================================
---- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdm-2.28.1/m4/ltoptions.m4	2009-10-25 08:29:28.562265478 +0100
-@@ -0,0 +1,368 @@
-+# Helper functions for option handling.                    -*- Autoconf -*-
-+#
-+#   Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
-+#   Written by Gary V. Vaughan, 2004
-+#
-+# This file is free software; the Free Software Foundation gives
-+# unlimited permission to copy and/or distribute it, with or without
-+# modifications, as long as this notice is preserved.
-+
-+# serial 6 ltoptions.m4
-+
-+# This is to help aclocal find these macros, as it can't see m4_define.
-+AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
-+
-+
-+# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
-+# ------------------------------------------
-+m4_define([_LT_MANGLE_OPTION],
-+[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
-+
-+
-+# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
-+# ---------------------------------------
-+# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
-+# matching handler defined, dispatch to it.  Other OPTION-NAMEs are
-+# saved as a flag.
-+m4_define([_LT_SET_OPTION],
-+[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
-+m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
-+        _LT_MANGLE_DEFUN([$1], [$2]),
-+    [m4_warning([Unknown $1 option `$2'])])[]dnl
-+])
-+
-+
-+# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
-+# ------------------------------------------------------------
-+# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
-+m4_define([_LT_IF_OPTION],
-+[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
-+
-+
-+# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
-+# -------------------------------------------------------
-+# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
-+# are set.
-+m4_define([_LT_UNLESS_OPTIONS],
-+[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
-+	    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
-+		      [m4_define([$0_found])])])[]dnl
-+m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
-+])[]dnl
-+])
-+
-+
-+# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
-+# ----------------------------------------
-+# OPTION-LIST is a space-separated list of Libtool options associated
-+# with MACRO-NAME.  If any OPTION has a matching handler declared with
-+# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
-+# the unknown option and exit.
-+m4_defun([_LT_SET_OPTIONS],
-+[# Set options
-+m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
-+    [_LT_SET_OPTION([$1], _LT_Option)])
-+
-+m4_if([$1],[LT_INIT],[
-+  dnl
-+  dnl Simply set some default values (i.e off) if boolean options were not
-+  dnl specified:
-+  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
-+  ])
-+  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
-+  ])
-+  dnl
-+  dnl If no reference was made to various pairs of opposing options, then
-+  dnl we run the default mode handler for the pair.  For example, if neither
-+  dnl `shared' nor `disable-shared' was passed, we enable building of shared
-+  dnl archives by default:
-+  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
-+  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
-+  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
-+  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
-+  		   [_LT_ENABLE_FAST_INSTALL])
-+  ])
-+])# _LT_SET_OPTIONS
-+
-+
-+## --------------------------------- ##
-+## Macros to handle LT_INIT options. ##
-+## --------------------------------- ##
-+
-+# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
-+# -----------------------------------------
-+m4_define([_LT_MANGLE_DEFUN],
-+[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
-+
-+
-+# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
-+# -----------------------------------------------
-+m4_define([LT_OPTION_DEFINE],
-+[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
-+])# LT_OPTION_DEFINE
-+
-+
-+# dlopen
-+# ------
-+LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
-+])
-+
-+AU_DEFUN([AC_LIBTOOL_DLOPEN],
-+[_LT_SET_OPTION([LT_INIT], [dlopen])
-+AC_DIAGNOSE([obsolete],
-+[$0: Remove this warning and the call to _LT_SET_OPTION when you
-+put the `dlopen' option into LT_INIT's first parameter.])
-+])
-+
-+dnl aclocal-1.4 backwards compatibility:
-+dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
-+
-+
-+# win32-dll
-+# ---------
-+# Declare package support for building win32 dll's.
-+LT_OPTION_DEFINE([LT_INIT], [win32-dll],
-+[enable_win32_dll=yes
-+
-+case $host in
-+*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*)
-+  AC_CHECK_TOOL(AS, as, false)
-+  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
-+  AC_CHECK_TOOL(OBJDUMP, objdump, false)
-+  ;;
-+esac
-+
-+test -z "$AS" && AS=as
-+_LT_DECL([], [AS],      [0], [Assembler program])dnl
-+
-+test -z "$DLLTOOL" && DLLTOOL=dlltool
-+_LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl
-+
-+test -z "$OBJDUMP" && OBJDUMP=objdump
-+_LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl
-+])# win32-dll
-+
-+AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
-+[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-+_LT_SET_OPTION([LT_INIT], [win32-dll])
-+AC_DIAGNOSE([obsolete],
-+[$0: Remove this warning and the call to _LT_SET_OPTION when you
-+put the `win32-dll' option into LT_INIT's first parameter.])
-+])
-+
-+dnl aclocal-1.4 backwards compatibility:
-+dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
-+
-+
-+# _LT_ENABLE_SHARED([DEFAULT])
-+# ----------------------------
-+# implement the --enable-shared flag, and supports the `shared' and
-+# `disable-shared' LT_INIT options.
-+# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
-+m4_define([_LT_ENABLE_SHARED],
-+[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
-+AC_ARG_ENABLE([shared],
-+    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
-+	[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
-+    [p=${PACKAGE-default}
-+    case $enableval in
-+    yes) enable_shared=yes ;;
-+    no) enable_shared=no ;;
-+    *)
-+      enable_shared=no
-+      # Look at the argument we got.  We use all the common list separators.
-+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-+      for pkg in $enableval; do
-+	IFS="$lt_save_ifs"
-+	if test "X$pkg" = "X$p"; then
-+	  enable_shared=yes
-+	fi
-+      done
-+      IFS="$lt_save_ifs"
-+      ;;
-+    esac],
-+    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
-+
-+    _LT_DECL([build_libtool_libs], [enable_shared], [0],
-+	[Whether or not to build shared libraries])
-+])# _LT_ENABLE_SHARED
-+
-+LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
-+LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
-+
-+# Old names:
-+AC_DEFUN([AC_ENABLE_SHARED],
-+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
-+])
-+
-+AC_DEFUN([AC_DISABLE_SHARED],
-+[_LT_SET_OPTION([LT_INIT], [disable-shared])
-+])
-+
-+AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
-+AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
-+
-+dnl aclocal-1.4 backwards compatibility:
-+dnl AC_DEFUN([AM_ENABLE_SHARED], [])
-+dnl AC_DEFUN([AM_DISABLE_SHARED], [])
-+
-+
-+
-+# _LT_ENABLE_STATIC([DEFAULT])
-+# ----------------------------
-+# implement the --enable-static flag, and support the `static' and
-+# `disable-static' LT_INIT options.
-+# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
-+m4_define([_LT_ENABLE_STATIC],
-+[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
-+AC_ARG_ENABLE([static],
-+    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
-+	[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
-+    [p=${PACKAGE-default}
-+    case $enableval in
-+    yes) enable_static=yes ;;
-+    no) enable_static=no ;;
-+    *)
-+     enable_static=no
-+      # Look at the argument we got.  We use all the common list separators.
-+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-+      for pkg in $enableval; do
-+	IFS="$lt_save_ifs"
-+	if test "X$pkg" = "X$p"; then
-+	  enable_static=yes
-+	fi
-+      done
-+      IFS="$lt_save_ifs"
-+      ;;
-+    esac],
-+    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
-+
-+    _LT_DECL([build_old_libs], [enable_static], [0],
-+	[Whether or not to build static libraries])
-+])# _LT_ENABLE_STATIC
-+
-+LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
-+LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
-+
-+# Old names:
-+AC_DEFUN([AC_ENABLE_STATIC],
-+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
-+])
-+
-+AC_DEFUN([AC_DISABLE_STATIC],
-+[_LT_SET_OPTION([LT_INIT], [disable-static])
-+])
-+
-+AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
-+AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
-+
-+dnl aclocal-1.4 backwards compatibility:
-+dnl AC_DEFUN([AM_ENABLE_STATIC], [])
-+dnl AC_DEFUN([AM_DISABLE_STATIC], [])
-+
-+
-+
-+# _LT_ENABLE_FAST_INSTALL([DEFAULT])
-+# ----------------------------------
-+# implement the --enable-fast-install flag, and support the `fast-install'
-+# and `disable-fast-install' LT_INIT options.
-+# DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
-+m4_define([_LT_ENABLE_FAST_INSTALL],
-+[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
-+AC_ARG_ENABLE([fast-install],
-+    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
-+    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
-+    [p=${PACKAGE-default}
-+    case $enableval in
-+    yes) enable_fast_install=yes ;;
-+    no) enable_fast_install=no ;;
-+    *)
-+      enable_fast_install=no
-+      # Look at the argument we got.  We use all the common list separators.
-+      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
-+      for pkg in $enableval; do
-+	IFS="$lt_save_ifs"
-+	if test "X$pkg" = "X$p"; then
-+	  enable_fast_install=yes
-+	fi
-+      done
-+      IFS="$lt_save_ifs"
-+      ;;
-+    esac],
-+    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
-+
-+_LT_DECL([fast_install], [enable_fast_install], [0],
-+	 [Whether or not to optimize for fast installation])dnl
-+])# _LT_ENABLE_FAST_INSTALL
-+
-+LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
-+LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
-+
-+# Old names:
-+AU_DEFUN([AC_ENABLE_FAST_INSTALL],
-+[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
-+AC_DIAGNOSE([obsolete],
-+[$0: Remove this warning and the call to _LT_SET_OPTION when you put
-+the `fast-install' option into LT_INIT's first parameter.])
-+])
-+
-+AU_DEFUN([AC_DISABLE_FAST_INSTALL],
-+[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
-+AC_DIAGNOSE([obsolete],
-+[$0: Remove this warning and the call to _LT_SET_OPTION when you put
-+the `disable-fast-install' option into LT_INIT's first parameter.])
-+])
-+
-+dnl aclocal-1.4 backwards compatibility:
-+dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
-+dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
-+
-+
-+# _LT_WITH_PIC([MODE])
-+# --------------------
-+# implement the --with-pic flag, and support the `pic-only' and `no-pic'
-+# LT_INIT options.
-+# MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
-+m4_define([_LT_WITH_PIC],
-+[AC_ARG_WITH([pic],
-+    [AS_HELP_STRING([--with-pic],
-+	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
-+    [pic_mode="$withval"],
-+    [pic_mode=default])
-+
-+test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
-+
-+_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
-+])# _LT_WITH_PIC
-+
-+LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
-+LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
-+
-+# Old name:
-+AU_DEFUN([AC_LIBTOOL_PICMODE],
-+[_LT_SET_OPTION([LT_INIT], [pic-only])
-+AC_DIAGNOSE([obsolete],
-+[$0: Remove this warning and the call to _LT_SET_OPTION when you
-+put the `pic-only' option into LT_INIT's first parameter.])
-+])
-+
-+dnl aclocal-1.4 backwards compatibility:
-+dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
-+
-+## ----------------- ##
-+## LTDL_INIT Options ##
-+## ----------------- ##
-+
-+m4_define([_LTDL_MODE], [])
-+LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
-+		 [m4_define([_LTDL_MODE], [nonrecursive])])
-+LT_OPTION_DEFINE([LTDL_INIT], [recursive],
-+		 [m4_define([_LTDL_MODE], [recursive])])
-+LT_OPTION_DEFINE([LTDL_INIT], [subproject],
-+		 [m4_define([_LTDL_MODE], [subproject])])
-+
-+m4_define([_LTDL_TYPE], [])
-+LT_OPTION_DEFINE([LTDL_INIT], [installable],
-+		 [m4_define([_LTDL_TYPE], [installable])])
-+LT_OPTION_DEFINE([LTDL_INIT], [convenience],
-+		 [m4_define([_LTDL_TYPE], [convenience])])
-Index: gdm-2.28.1/m4/ltsugar.m4
-===================================================================
---- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdm-2.28.1/m4/ltsugar.m4	2009-10-25 08:29:28.806266054 +0100
-@@ -0,0 +1,123 @@
-+# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
-+#
-+# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
-+# Written by Gary V. Vaughan, 2004
-+#
-+# This file is free software; the Free Software Foundation gives
-+# unlimited permission to copy and/or distribute it, with or without
-+# modifications, as long as this notice is preserved.
-+
-+# serial 6 ltsugar.m4
-+
-+# This is to help aclocal find these macros, as it can't see m4_define.
-+AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
-+
-+
-+# lt_join(SEP, ARG1, [ARG2...])
-+# -----------------------------
-+# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
-+# associated separator.
-+# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
-+# versions in m4sugar had bugs.
-+m4_define([lt_join],
-+[m4_if([$#], [1], [],
-+       [$#], [2], [[$2]],
-+       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
-+m4_define([_lt_join],
-+[m4_if([$#$2], [2], [],
-+       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
-+
-+
-+# lt_car(LIST)
-+# lt_cdr(LIST)
-+# ------------
-+# Manipulate m4 lists.
-+# These macros are necessary as long as will still need to support
-+# Autoconf-2.59 which quotes differently.
-+m4_define([lt_car], [[$1]])
-+m4_define([lt_cdr],
-+[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
-+       [$#], 1, [],
-+       [m4_dquote(m4_shift($@))])])
-+m4_define([lt_unquote], $1)
-+
-+
-+# lt_append(MACRO-NAME, STRING, [SEPARATOR])
-+# ------------------------------------------
-+# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
-+# Note that neither SEPARATOR nor STRING are expanded; they are appended
-+# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
-+# No SEPARATOR is output if MACRO-NAME was previously undefined (different
-+# than defined and empty).
-+#
-+# This macro is needed until we can rely on Autoconf 2.62, since earlier
-+# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
-+m4_define([lt_append],
-+[m4_define([$1],
-+	   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
-+
-+
-+
-+# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
-+# ----------------------------------------------------------
-+# Produce a SEP delimited list of all paired combinations of elements of
-+# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list
-+# has the form PREFIXmINFIXSUFFIXn.
-+# Needed until we can rely on m4_combine added in Autoconf 2.62.
-+m4_define([lt_combine],
-+[m4_if(m4_eval([$# > 3]), [1],
-+       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
-+[[m4_foreach([_Lt_prefix], [$2],
-+	     [m4_foreach([_Lt_suffix],
-+		]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
-+	[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
-+
-+
-+# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
-+# -----------------------------------------------------------------------
-+# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
-+# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
-+m4_define([lt_if_append_uniq],
-+[m4_ifdef([$1],
-+	  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
-+		 [lt_append([$1], [$2], [$3])$4],
-+		 [$5])],
-+	  [lt_append([$1], [$2], [$3])$4])])
-+
-+
-+# lt_dict_add(DICT, KEY, VALUE)
-+# -----------------------------
-+m4_define([lt_dict_add],
-+[m4_define([$1($2)], [$3])])
-+
-+
-+# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
-+# --------------------------------------------
-+m4_define([lt_dict_add_subkey],
-+[m4_define([$1($2:$3)], [$4])])
-+
-+
-+# lt_dict_fetch(DICT, KEY, [SUBKEY])
-+# ----------------------------------
-+m4_define([lt_dict_fetch],
-+[m4_ifval([$3],
-+	m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
-+    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
-+
-+
-+# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
-+# -----------------------------------------------------------------
-+m4_define([lt_if_dict_fetch],
-+[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
-+	[$5],
-+    [$6])])
-+
-+
-+# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
-+# --------------------------------------------------------------
-+m4_define([lt_dict_filter],
-+[m4_if([$5], [], [],
-+  [lt_join(m4_quote(m4_default([$4], [[, ]])),
-+           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
-+		      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
-+])
-Index: gdm-2.28.1/m4/ltversion.m4
-===================================================================
---- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdm-2.28.1/m4/ltversion.m4	2009-10-25 08:29:29.062266876 +0100
-@@ -0,0 +1,23 @@
-+# ltversion.m4 -- version numbers			-*- Autoconf -*-
-+#
-+#   Copyright (C) 2004 Free Software Foundation, Inc.
-+#   Written by Scott James Remnant, 2004
-+#
-+# This file is free software; the Free Software Foundation gives
-+# unlimited permission to copy and/or distribute it, with or without
-+# modifications, as long as this notice is preserved.
-+
-+# Generated from ltversion.in.
-+
-+# serial 3012 ltversion.m4
-+# This file is part of GNU Libtool
-+
-+m4_define([LT_PACKAGE_VERSION], [2.2.6])
-+m4_define([LT_PACKAGE_REVISION], [1.3012])
-+
-+AC_DEFUN([LTVERSION_VERSION],
-+[macro_version='2.2.6'
-+macro_revision='1.3012'
-+_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
-+_LT_DECL(, macro_revision, 0)
-+])
-Index: gdm-2.28.1/m4/lt~obsolete.m4
-===================================================================
---- /dev/null	1970-01-01 00:00:00.000000000 +0000
-+++ gdm-2.28.1/m4/lt~obsolete.m4	2009-10-25 08:29:29.310263141 +0100
-@@ -0,0 +1,92 @@
-+# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-
-+#
-+#   Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
-+#   Written by Scott James Remnant, 2004.
-+#
-+# This file is free software; the Free Software Foundation gives
-+# unlimited permission to copy and/or distribute it, with or without
-+# modifications, as long as this notice is preserved.
-+
-+# serial 4 lt~obsolete.m4
-+
-+# These exist entirely to fool aclocal when bootstrapping libtool.
-+#
-+# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
-+# which have later been changed to m4_define as they aren't part of the
-+# exported API, or moved to Autoconf or Automake where they belong.
-+#
-+# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN
-+# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
-+# using a macro with the same name in our local m4/libtool.m4 it'll
-+# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
-+# and doesn't know about Autoconf macros at all.)
-+#
-+# So we provide this file, which has a silly filename so it's always
-+# included after everything else.  This provides aclocal with the
-+# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
-+# because those macros already exist, or will be overwritten later.
-+# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. 
-+#
-+# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
-+# Yes, that means every name once taken will need to remain here until
-+# we give up compatibility with versions before 1.7, at which point
-+# we need to keep only those names which we still refer to.
-+
-+# This is to help aclocal find these macros, as it can't see m4_define.
-+AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
-+
-+m4_ifndef([AC_LIBTOOL_LINKER_OPTION],	[AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
-+m4_ifndef([AC_PROG_EGREP],		[AC_DEFUN([AC_PROG_EGREP])])
-+m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],	[AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
-+m4_ifndef([_LT_AC_SHELL_INIT],		[AC_DEFUN([_LT_AC_SHELL_INIT])])
-+m4_ifndef([_LT_AC_SYS_LIBPATH_AIX],	[AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
-+m4_ifndef([_LT_PROG_LTMAIN],		[AC_DEFUN([_LT_PROG_LTMAIN])])
-+m4_ifndef([_LT_AC_TAGVAR],		[AC_DEFUN([_LT_AC_TAGVAR])])
-+m4_ifndef([AC_LTDL_ENABLE_INSTALL],	[AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
-+m4_ifndef([AC_LTDL_PREOPEN],		[AC_DEFUN([AC_LTDL_PREOPEN])])
-+m4_ifndef([_LT_AC_SYS_COMPILER],	[AC_DEFUN([_LT_AC_SYS_COMPILER])])
-+m4_ifndef([_LT_AC_LOCK],		[AC_DEFUN([_LT_AC_LOCK])])
-+m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],	[AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
-+m4_ifndef([_LT_AC_TRY_DLOPEN_SELF],	[AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
-+m4_ifndef([AC_LIBTOOL_PROG_CC_C_O],	[AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
-+m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
-+m4_ifndef([AC_LIBTOOL_OBJDIR],		[AC_DEFUN([AC_LIBTOOL_OBJDIR])])
-+m4_ifndef([AC_LTDL_OBJDIR],		[AC_DEFUN([AC_LTDL_OBJDIR])])
-+m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
-+m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],	[AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
-+m4_ifndef([AC_PATH_MAGIC],		[AC_DEFUN([AC_PATH_MAGIC])])
-+m4_ifndef([AC_PROG_LD_GNU],		[AC_DEFUN([AC_PROG_LD_GNU])])
-+m4_ifndef([AC_PROG_LD_RELOAD_FLAG],	[AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
-+m4_ifndef([AC_DEPLIBS_CHECK_METHOD],	[AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
-+m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
-+m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
-+m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
-+m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS],	[AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
-+m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP],	[AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
-+m4_ifndef([LT_AC_PROG_EGREP],		[AC_DEFUN([LT_AC_PROG_EGREP])])
-+m4_ifndef([LT_AC_PROG_SED],		[AC_DEFUN([LT_AC_PROG_SED])])
-+m4_ifndef([_LT_CC_BASENAME],		[AC_DEFUN([_LT_CC_BASENAME])])
-+m4_ifndef([_LT_COMPILER_BOILERPLATE],	[AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
-+m4_ifndef([_LT_LINKER_BOILERPLATE],	[AC_DEFUN([_LT_LINKER_BOILERPLATE])])
-+m4_ifndef([_AC_PROG_LIBTOOL],		[AC_DEFUN([_AC_PROG_LIBTOOL])])
-+m4_ifndef([AC_LIBTOOL_SETUP],		[AC_DEFUN([AC_LIBTOOL_SETUP])])
-+m4_ifndef([_LT_AC_CHECK_DLFCN],		[AC_DEFUN([_LT_AC_CHECK_DLFCN])])
-+m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],	[AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
-+m4_ifndef([_LT_AC_TAGCONFIG],		[AC_DEFUN([_LT_AC_TAGCONFIG])])
-+m4_ifndef([AC_DISABLE_FAST_INSTALL],	[AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
-+m4_ifndef([_LT_AC_LANG_CXX],		[AC_DEFUN([_LT_AC_LANG_CXX])])
-+m4_ifndef([_LT_AC_LANG_F77],		[AC_DEFUN([_LT_AC_LANG_F77])])
-+m4_ifndef([_LT_AC_LANG_GCJ],		[AC_DEFUN([_LT_AC_LANG_GCJ])])
-+m4_ifndef([AC_LIBTOOL_RC],		[AC_DEFUN([AC_LIBTOOL_RC])])
-+m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
-+m4_ifndef([_LT_AC_LANG_C_CONFIG],	[AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
-+m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
-+m4_ifndef([_LT_AC_LANG_CXX_CONFIG],	[AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
-+m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
-+m4_ifndef([_LT_AC_LANG_F77_CONFIG],	[AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
-+m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
-+m4_ifndef([_LT_AC_LANG_GCJ_CONFIG],	[AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
-+m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
-+m4_ifndef([_LT_AC_LANG_RC_CONFIG],	[AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
-+m4_ifndef([AC_LIBTOOL_CONFIG],		[AC_DEFUN([AC_LIBTOOL_CONFIG])])
-+m4_ifndef([_LT_AC_FILE_LTDLL_C],	[AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
-Index: gdm-2.28.1/missing
-===================================================================
---- gdm-2.28.1.orig/missing	2009-10-25 08:29:54.158263569 +0100
-+++ gdm-2.28.1/missing	2009-10-25 08:29:42.462260800 +0100
-@@ -1,10 +1,10 @@
- #! /bin/sh
- # Common stub for a few missing GNU programs while installing.
- 
--scriptversion=2006-05-10.23
-+scriptversion=2009-04-28.21; # UTC
- 
--# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006
--#   Free Software Foundation, Inc.
-+# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006,
-+# 2008, 2009 Free Software Foundation, Inc.
- # Originally by Fran,cois Pinard <pinard at iro.umontreal.ca>, 1996.
- 
- # This program is free software; you can redistribute it and/or modify
-@@ -18,9 +18,7 @@ scriptversion=2006-05-10.23
- # GNU General Public License for more details.
- 
- # You should have received a copy of the GNU General Public License
--# along with this program; if not, write to the Free Software
--# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
--# 02110-1301, USA.
-+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
- 
- # As a special exception to the GNU General Public License, if you
- # distribute this file as part of a program that contains a
-@@ -89,6 +87,9 @@ Supported PROGRAM values:
+@@ -89,6 +87,9 @@
    tar          try tar, gnutar, gtar, then tar without non-portable flags
    yacc         create \`y.tab.[ch]', if possible, from existing .[ch]
  
@@ -93303,7 +93302,7 @@
  Send bug reports to <bug-automake at gnu.org>."
      exit $?
      ;;
-@@ -106,15 +107,22 @@ Send bug reports to <bug-automake at gnu.or
+@@ -106,15 +107,22 @@
  
  esac
  
@@ -93329,7 +93328,7 @@
      if test -n "$run"; then
         echo 1>&2 "ERROR: \`tar' requires --run"
         exit 1
-@@ -138,7 +146,7 @@ esac
+@@ -138,7 +146,7 @@
  
  # If it does not exist, or fails to run (possibly an outdated version),
  # try to emulate it.
@@ -93338,7 +93337,7 @@
    aclocal*)
      echo 1>&2 "\
  WARNING: \`$1' is $msg.  You should only need it if
-@@ -148,7 +156,7 @@ WARNING: \`$1' is $msg.  You should only
+@@ -148,7 +156,7 @@
      touch aclocal.m4
      ;;
  
@@ -93347,7 +93346,7 @@
      echo 1>&2 "\
  WARNING: \`$1' is $msg.  You should only need it if
           you modified \`${configure_ac}'.  You might want to install the
-@@ -157,7 +165,7 @@ WARNING: \`$1' is $msg.  You should only
+@@ -157,7 +165,7 @@
      touch configure
      ;;
  
@@ -93356,7 +93355,7 @@
      echo 1>&2 "\
  WARNING: \`$1' is $msg.  You should only need it if
           you modified \`acconfig.h' or \`${configure_ac}'.  You might want
-@@ -187,7 +195,7 @@ WARNING: \`$1' is $msg.  You should only
+@@ -187,7 +195,7 @@
  	   while read f; do touch "$f"; done
      ;;
  
@@ -93365,7 +93364,7 @@
      echo 1>&2 "\
  WARNING: \`$1' is needed, but is $msg.
           You might have modified some files without having the
-@@ -210,7 +218,7 @@ WARNING: \`$1' is needed, but is $msg.
+@@ -210,7 +218,7 @@
      fi
      ;;
  
@@ -93374,7 +93373,7 @@
      echo 1>&2 "\
  WARNING: \`$1' $msg.  You should only need it if
           you modified a \`.y' file.  You may need the \`Bison' package
-@@ -240,7 +248,7 @@ WARNING: \`$1' $msg.  You should only ne
+@@ -240,7 +248,7 @@
      fi
      ;;
  
@@ -93383,7 +93382,7 @@
      echo 1>&2 "\
  WARNING: \`$1' is $msg.  You should only need it if
           you modified a \`.l' file.  You may need the \`Flex' package
-@@ -263,7 +271,7 @@ WARNING: \`$1' is $msg.  You should only
+@@ -263,7 +271,7 @@
      fi
      ;;
  
@@ -93392,7 +93391,7 @@
      echo 1>&2 "\
  WARNING: \`$1' is $msg.  You should only need it if
  	 you modified a dependency of a manual page.  You may need the
-@@ -277,11 +285,11 @@ WARNING: \`$1' is $msg.  You should only
+@@ -277,11 +285,11 @@
      else
  	test -z "$file" || exec >$file
  	echo ".ab help2man is required to generate this page"
@@ -93406,7 +93405,7 @@
      echo 1>&2 "\
  WARNING: \`$1' is $msg.  You should only need it if
           you modified a \`.texi' or \`.texinfo' file, or any other file
-@@ -310,7 +318,7 @@ WARNING: \`$1' is $msg.  You should only
+@@ -310,7 +318,7 @@
      touch $file
      ;;
  
@@ -93415,7 +93414,7 @@
      shift
  
      # We have already tried tar in the generic part.
-@@ -363,5 +371,6 @@ exit 0
+@@ -363,5 +371,6 @@
  # eval: (add-hook 'write-file-hooks 'time-stamp)
  # time-stamp-start: "scriptversion="
  # time-stamp-format: "%:y-%02m-%02d.%02H"
@@ -93423,10 +93422,9 @@
 +# time-stamp-time-zone: "UTC"
 +# time-stamp-end: "; # UTC"
  # End:
-Index: gdm-2.28.1/mkinstalldirs
-===================================================================
---- gdm-2.28.1.orig/mkinstalldirs	2009-10-25 08:29:53.850269888 +0100
-+++ gdm-2.28.1/mkinstalldirs	2009-10-25 08:29:45.054261041 +0100
+diff -urN gdm-2.28.1.orig/mkinstalldirs gdm-2.28.1/mkinstalldirs
+--- gdm-2.28.1.orig/mkinstalldirs	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/mkinstalldirs	2009-11-08 11:33:00.000000000 +0100
 @@ -1,7 +1,7 @@
  #! /bin/sh
  # mkinstalldirs --- make directory hierarchy
@@ -93436,7 +93434,7 @@
  
  # Original author: Noah Friedman <friedman at prep.ai.mit.edu>
  # Created: 1993-05-16
-@@ -157,5 +157,6 @@ exit $errstatus
+@@ -157,5 +157,6 @@
  # eval: (add-hook 'write-file-hooks 'time-stamp)
  # time-stamp-start: "scriptversion="
  # time-stamp-format: "%:y-%02m-%02d.%02H"
@@ -93444,10 +93442,9 @@
 +# time-stamp-time-zone: "UTC"
 +# time-stamp-end: "; # UTC"
  # End:
-Index: gdm-2.28.1/tests/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/tests/Makefile.in	2009-10-25 08:29:54.766265439 +0100
-+++ gdm-2.28.1/tests/Makefile.in	2009-10-25 08:29:44.861759559 +0100
+diff -urN gdm-2.28.1.orig/tests/Makefile.in gdm-2.28.1/tests/Makefile.in
+--- gdm-2.28.1.orig/tests/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/tests/Makefile.in	2009-11-08 11:33:00.000000000 +0100
 @@ -1,8 +1,9 @@
 -# Makefile.in generated by automake 1.10 from Makefile.am.
 +# Makefile.in generated by automake 1.11 from Makefile.am.
@@ -93471,7 +93468,7 @@
  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  install_sh_DATA = $(install_sh) -c -m 644
  install_sh_PROGRAM = $(install_sh) -c
-@@ -38,13 +40,16 @@ subdir = tests
+@@ -38,13 +40,16 @@
  DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
@@ -93490,7 +93487,7 @@
  am__EXEEXT_1 =
  am__EXEEXT_2 = m-common$(EXEEXT) $(am__EXEEXT_1)
  PROGRAMS = $(noinst_PROGRAMS)
-@@ -57,29 +62,49 @@ am__DEPENDENCIES_1 =
+@@ -57,29 +62,49 @@
  m_common_DEPENDENCIES = $(top_builddir)/common/libgdmcommon.la \
  	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
  	$(am__DEPENDENCIES_1)
@@ -93550,7 +93547,7 @@
  APPLET_CFLAGS = @APPLET_CFLAGS@
  APPLET_LIBS = @APPLET_LIBS@
  AR = @AR@
-@@ -120,7 +145,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
+@@ -120,7 +145,8 @@
  DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
  DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
  DOC_USER_FORMATS = @DOC_USER_FORMATS@
@@ -93560,7 +93557,7 @@
  ECHO_C = @ECHO_C@
  ECHO_N = @ECHO_N@
  ECHO_T = @ECHO_T@
-@@ -135,8 +161,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
+@@ -135,8 +161,7 @@
  EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
  EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
  EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
@@ -93570,7 +93567,7 @@
  GCONFTOOL = @GCONFTOOL@
  GCONF_CFLAGS = @GCONF_CFLAGS@
  GCONF_LIBS = @GCONF_LIBS@
-@@ -177,6 +202,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
+@@ -177,6 +202,7 @@
  INTLTOOL_PERL = @INTLTOOL_PERL@
  INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
  LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
@@ -93578,7 +93575,7 @@
  LDFLAGS = @LDFLAGS@
  LIBDIR = @LIBDIR@
  LIBEXECDIR = @LIBEXECDIR@
-@@ -186,6 +212,7 @@ LIBTOOL = @LIBTOOL@
+@@ -186,6 +212,7 @@
  LIBWRAP_LIBS = @LIBWRAP_LIBS@
  LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
  LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
@@ -93586,7 +93583,7 @@
  LN_S = @LN_S@
  LOCALSTATEDIR = @LOCALSTATEDIR@
  LTLIBOBJS = @LTLIBOBJS@
-@@ -196,13 +223,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
+@@ -196,13 +223,19 @@
  MSGFMT = @MSGFMT@
  MSGFMT_OPTS = @MSGFMT_OPTS@
  MSGMERGE = @MSGMERGE@
@@ -93606,7 +93603,7 @@
  PACKAGE_VERSION = @PACKAGE_VERSION@
  PAM_LIBS = @PAM_LIBS@
  PAM_PREFIX = @PAM_PREFIX@
-@@ -216,6 +249,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
+@@ -216,6 +249,7 @@
  RANLIB = @RANLIB@
  RBAC_LIBS = @RBAC_LIBS@
  SBINDIR = @SBINDIR@
@@ -93614,7 +93611,7 @@
  SET_MAKE = @SET_MAKE@
  SHELL = @SHELL@
  SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -254,7 +288,7 @@ abs_top_builddir = @abs_top_builddir@
+@@ -254,7 +288,7 @@
  abs_top_srcdir = @abs_top_srcdir@
  ac_ct_CC = @ac_ct_CC@
  ac_ct_CXX = @ac_ct_CXX@
@@ -93623,7 +93620,7 @@
  am__include = @am__include@
  am__leading_dot = @am__leading_dot@
  am__quote = @am__quote@
-@@ -290,6 +324,7 @@ libexecdir = @libexecdir@
+@@ -290,6 +324,7 @@
  localedir = @localedir@
  localstatedir = @localstatedir@
  logdir = @logdir@
@@ -93631,7 +93628,7 @@
  mandir = @mandir@
  mkdir_p = @mkdir_p@
  oldincludedir = @oldincludedir@
-@@ -304,6 +339,7 @@ srcdir = @srcdir@
+@@ -304,6 +339,7 @@
  sysconfdir = @sysconfdir@
  sysconfsubdir = @sysconfsubdir@
  target_alias = @target_alias@
@@ -93639,7 +93636,7 @@
  top_builddir = @top_builddir@
  top_srcdir = @top_srcdir@
  NULL = 
-@@ -342,14 +378,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
+@@ -342,14 +378,14 @@
  	@for dep in $?; do \
  	  case '$(am__configure_deps)' in \
  	    *$$dep*) \
@@ -93659,7 +93656,7 @@
  .PRECIOUS: Makefile
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  	@case '$?' in \
-@@ -367,16 +403,19 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
+@@ -367,16 +403,19 @@
  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -93685,7 +93682,7 @@
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT)
-@@ -389,64 +428,73 @@ distclean-compile:
+@@ -389,64 +428,73 @@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/m_common-s-common-utils.Po at am__quote@
  
  .c.o:
@@ -93777,7 +93774,7 @@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='s-common-utils.c' object='m_common-s-common-utils.obj' libtool=no @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(m_common_CFLAGS) $(CFLAGS) -c -o m_common-s-common-utils.obj `if test -f 's-common-utils.c'; then $(CYGPATH_W) 's-common-utils.c'; else $(CYGPATH_W) '$(srcdir)/s-common-utils.c'; fi`
-@@ -462,53 +510,58 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
+@@ -462,53 +510,58 @@
  	unique=`for i in $$list; do \
  	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  	  done | \
@@ -93853,7 +93850,7 @@
  	if test -n "$$list"; then \
  	  for tst in $$list; do \
  	    if test -f ./$$tst; then dir=./; \
-@@ -517,49 +570,63 @@ check-TESTS: $(TESTS)
+@@ -517,49 +570,63 @@
  	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
  	      all=`expr $$all + 1`; \
  	      case " $(XFAIL_TESTS) " in \
@@ -93929,7 +93926,7 @@
  	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
  	      dashes="$$skipped"; \
  	  fi; \
-@@ -570,11 +637,15 @@ check-TESTS: $(TESTS)
+@@ -570,11 +637,15 @@
  	      dashes="$$report"; \
  	  fi; \
  	  dashes=`echo "$$dashes" | sed s/./=/g`; \
@@ -93947,7 +93944,7 @@
  	  test "$$failed" -eq 0; \
  	else :; fi
  
-@@ -594,13 +665,17 @@ distdir: $(DISTFILES)
+@@ -594,13 +665,17 @@
  	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  	  if test -d $$d/$$file; then \
  	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
@@ -93969,7 +93966,7 @@
  	    || exit 1; \
  	  fi; \
  	done
-@@ -629,6 +704,7 @@ clean-generic:
+@@ -629,6 +704,7 @@
  
  distclean-generic:
  	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
@@ -93977,7 +93974,7 @@
  
  maintainer-clean-generic:
  	@echo "This command is intended for maintainers to use"
-@@ -650,6 +726,8 @@ dvi-am:
+@@ -650,6 +726,8 @@
  
  html: html-am
  
@@ -93986,7 +93983,7 @@
  info: info-am
  
  info-am:
-@@ -658,18 +736,28 @@ install-data-am:
+@@ -658,18 +736,28 @@
  
  install-dvi: install-dvi-am
  
@@ -94015,7 +94012,7 @@
  installcheck-am:
  
  maintainer-clean: maintainer-clean-am
-@@ -692,7 +780,7 @@ ps-am:
+@@ -692,7 +780,7 @@
  
  uninstall-am:
  
@@ -94024,7 +94021,7 @@
  
  .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
  	clean-generic clean-libtool clean-noinstPROGRAMS ctags \
-@@ -708,6 +796,7 @@ uninstall-am:
+@@ -708,6 +796,7 @@
  	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
  	tags uninstall uninstall-am
  
@@ -94032,10 +94029,9 @@
  # Tell versions [3.59,3.63) of GNU make to not export all variables.
  # Otherwise a system limit (for SysV at least) may be exceeded.
  .NOEXPORT:
-Index: gdm-2.28.1/utils/Makefile.in
-===================================================================
---- gdm-2.28.1.orig/utils/Makefile.in	2009-10-25 08:29:58.786261907 +0100
-+++ gdm-2.28.1/utils/Makefile.in	2009-10-25 08:29:44.985757919 +0100
+diff -urN gdm-2.28.1.orig/utils/Makefile.in gdm-2.28.1/utils/Makefile.in
+--- gdm-2.28.1.orig/utils/Makefile.in	2009-10-20 01:50:55.000000000 +0200
++++ gdm-2.28.1/utils/Makefile.in	2009-11-08 11:33:00.000000000 +0100
 @@ -1,8 +1,9 @@
 -# Makefile.in generated by automake 1.10 from Makefile.am.
 +# Makefile.in generated by automake 1.11 from Makefile.am.
@@ -94059,7 +94055,7 @@
  am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  install_sh_DATA = $(install_sh) -c -m 644
  install_sh_PROGRAM = $(install_sh) -c
-@@ -39,16 +41,18 @@ subdir = utils
+@@ -39,16 +41,18 @@
  DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
  am__aclocal_m4_deps = $(top_srcdir)/m4/gnome-doc-utils.m4 \
@@ -94081,7 +94077,7 @@
  PROGRAMS = $(bin_PROGRAMS)
  am__objects_1 =
  am_gdm_screenshot_OBJECTS = gdm-screenshot.$(OBJEXT) $(am__objects_1)
-@@ -57,24 +61,61 @@ am__DEPENDENCIES_1 =
+@@ -57,24 +61,61 @@
  gdm_screenshot_DEPENDENCIES = $(am__DEPENDENCIES_1) \
  	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
  	$(am__DEPENDENCIES_1)
@@ -94151,7 +94147,7 @@
  SOURCES = $(gdm_screenshot_SOURCES) $(gdmflexiserver_SOURCES)
  DIST_SOURCES = $(gdm_screenshot_SOURCES) $(gdmflexiserver_SOURCES)
  ETAGS = etags
-@@ -83,6 +124,7 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCE
+@@ -83,6 +124,7 @@
  ACLOCAL = @ACLOCAL@
  ALL_LINGUAS = @ALL_LINGUAS@
  AMTAR = @AMTAR@
@@ -94159,7 +94155,7 @@
  APPLET_CFLAGS = @APPLET_CFLAGS@
  APPLET_LIBS = @APPLET_LIBS@
  AR = @AR@
-@@ -123,7 +165,8 @@ DEVKIT_POWER_CFLAGS = @DEVKIT_POWER_CFLA
+@@ -123,7 +165,8 @@
  DEVKIT_POWER_LIBS = @DEVKIT_POWER_LIBS@
  DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
  DOC_USER_FORMATS = @DOC_USER_FORMATS@
@@ -94169,7 +94165,7 @@
  ECHO_C = @ECHO_C@
  ECHO_N = @ECHO_N@
  ECHO_T = @ECHO_T@
-@@ -138,8 +181,7 @@ EXTRA_SETUP_LIBS = @EXTRA_SETUP_LIBS@
+@@ -138,8 +181,7 @@
  EXTRA_SLAVE_LIBS = @EXTRA_SLAVE_LIBS@
  EXTRA_TEST_LIBS = @EXTRA_TEST_LIBS@
  EXTRA_XNEST_LIBS = @EXTRA_XNEST_LIBS@
@@ -94179,7 +94175,7 @@
  GCONFTOOL = @GCONFTOOL@
  GCONF_CFLAGS = @GCONF_CFLAGS@
  GCONF_LIBS = @GCONF_LIBS@
-@@ -180,6 +222,7 @@ INTLTOOL_MERGE = @INTLTOOL_MERGE@
+@@ -180,6 +222,7 @@
  INTLTOOL_PERL = @INTLTOOL_PERL@
  INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
  LANG_CONFIG_FILE = @LANG_CONFIG_FILE@
@@ -94187,7 +94183,7 @@
  LDFLAGS = @LDFLAGS@
  LIBDIR = @LIBDIR@
  LIBEXECDIR = @LIBEXECDIR@
-@@ -189,6 +232,7 @@ LIBTOOL = @LIBTOOL@
+@@ -189,6 +232,7 @@
  LIBWRAP_LIBS = @LIBWRAP_LIBS@
  LIBXKLAVIER_CFLAGS = @LIBXKLAVIER_CFLAGS@
  LIBXKLAVIER_LIBS = @LIBXKLAVIER_LIBS@
@@ -94195,7 +94191,7 @@
  LN_S = @LN_S@
  LOCALSTATEDIR = @LOCALSTATEDIR@
  LTLIBOBJS = @LTLIBOBJS@
-@@ -199,13 +243,19 @@ MKINSTALLDIRS = @MKINSTALLDIRS@
+@@ -199,13 +243,19 @@
  MSGFMT = @MSGFMT@
  MSGFMT_OPTS = @MSGFMT_OPTS@
  MSGMERGE = @MSGMERGE@
@@ -94215,7 +94211,7 @@
  PACKAGE_VERSION = @PACKAGE_VERSION@
  PAM_LIBS = @PAM_LIBS@
  PAM_PREFIX = @PAM_PREFIX@
-@@ -219,6 +269,7 @@ PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE
+@@ -219,6 +269,7 @@
  RANLIB = @RANLIB@
  RBAC_LIBS = @RBAC_LIBS@
  SBINDIR = @SBINDIR@
@@ -94223,7 +94219,7 @@
  SET_MAKE = @SET_MAKE@
  SHELL = @SHELL@
  SIMPLE_CHOOSER_CFLAGS = @SIMPLE_CHOOSER_CFLAGS@
-@@ -257,7 +308,7 @@ abs_top_builddir = @abs_top_builddir@
+@@ -257,7 +308,7 @@
  abs_top_srcdir = @abs_top_srcdir@
  ac_ct_CC = @ac_ct_CC@
  ac_ct_CXX = @ac_ct_CXX@
@@ -94232,7 +94228,7 @@
  am__include = @am__include@
  am__leading_dot = @am__leading_dot@
  am__quote = @am__quote@
-@@ -293,6 +344,7 @@ libexecdir = @libexecdir@
+@@ -293,6 +344,7 @@
  localedir = @localedir@
  localstatedir = @localstatedir@
  logdir = @logdir@
@@ -94240,7 +94236,7 @@
  mandir = @mandir@
  mkdir_p = @mkdir_p@
  oldincludedir = @oldincludedir@
-@@ -307,6 +359,7 @@ srcdir = @srcdir@
+@@ -307,6 +359,7 @@
  sysconfdir = @sysconfdir@
  sysconfsubdir = @sysconfsubdir@
  target_alias = @target_alias@
@@ -94248,7 +94244,7 @@
  top_builddir = @top_builddir@
  top_srcdir = @top_srcdir@
  NULL = 
-@@ -375,14 +428,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_
+@@ -375,14 +428,14 @@
  	@for dep in $?; do \
  	  case '$(am__configure_deps)' in \
  	    *$$dep*) \
@@ -94268,7 +94264,7 @@
  .PRECIOUS: Makefile
  Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
  	@case '$?' in \
-@@ -400,59 +453,90 @@ $(top_srcdir)/configure: @MAINTAINER_MOD
+@@ -400,59 +453,90 @@
  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
  $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
  	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
@@ -94393,7 +94389,7 @@
  
  mostlyclean-compile:
  	-rm -f *.$(OBJEXT)
-@@ -464,22 +548,25 @@ distclean-compile:
+@@ -464,22 +548,25 @@
  @AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/gdmflexiserver.Po at am__quote@
  
  .c.o:
@@ -94425,7 +94421,7 @@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
  @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
  @am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<
-@@ -495,45 +582,49 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS
+@@ -495,45 +582,49 @@
  	unique=`for i in $$list; do \
  	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  	  done | \
@@ -94491,7 +94487,7 @@
  
  distclean-tags:
  	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-@@ -554,13 +645,17 @@ distdir: $(DISTFILES)
+@@ -554,13 +645,17 @@
  	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
  	  if test -d $$d/$$file; then \
  	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
@@ -94513,7 +94509,7 @@
  	    || exit 1; \
  	  fi; \
  	done
-@@ -592,6 +687,7 @@ clean-generic:
+@@ -592,6 +687,7 @@
  
  distclean-generic:
  	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
@@ -94521,7 +94517,7 @@
  	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
  
  maintainer-clean-generic:
-@@ -613,6 +709,8 @@ dvi-am:
+@@ -613,6 +709,8 @@
  
  html: html-am
  
@@ -94530,7 +94526,7 @@
  info: info-am
  
  info-am:
-@@ -621,18 +719,28 @@ install-data-am:
+@@ -621,18 +719,28 @@
  
  install-dvi: install-dvi-am
  
@@ -94559,7 +94555,7 @@
  installcheck-am:
  
  maintainer-clean: maintainer-clean-am
-@@ -678,6 +786,7 @@ gdm-restart: gdm-restart.in Makefile
+@@ -678,6 +786,7 @@
  	$(edit) $< >$@
  gdm-safe-restart: gdm-safe-restart.in Makefile
  	$(edit) $< >$@

Modified: desktop/experimental/gdm/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/experimental/gdm/debian/patches/series?rev=22256&op=diff
==============================================================================
--- desktop/experimental/gdm/debian/patches/series [utf-8] (original)
+++ desktop/experimental/gdm/debian/patches/series [utf-8] Sun Nov  8 10:56:11 2009
@@ -2,4 +2,5 @@
 02_xnest-wrapper.patch
 03_authdir.patch
 04_custom-conf.patch
+05_default_keyboard_layout_xkl.patch
 90_relibtoolize.patch




More information about the pkg-gnome-commits mailing list