--- gnome-session-2.20.2.orig/debian/gnome-session.manpages +++ gnome-session-2.20.2/debian/gnome-session.manpages @@ -0,0 +1 @@ +debian/gnome-session-remove.1 --- gnome-session-2.20.2.orig/debian/patches/11_session_dialog.patch +++ gnome-session-2.20.2/debian/patches/11_session_dialog.patch @@ -0,0 +1,1006 @@ +diff -Nur gnome-session-2.19.6/gnome-session/logout.c gnome-session-2.19.6.new/gnome-session/logout.c +--- gnome-session-2.19.6/gnome-session/logout.c 2007-08-02 10:29:05.000000000 +0200 ++++ gnome-session-2.19.6.new/gnome-session/logout.c 2007-08-02 10:29:44.000000000 +0200 +@@ -17,7 +17,13 @@ + 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., 59 Temple Place - Suite 330, Boston, MA +- 02111-1307, USA. */ ++ 02111-1307, USA. ++ ++ Authors: ++ Owen Taylor ++ Manu Cornet ++*/ ++ + #include + #include + #include +@@ -27,6 +33,7 @@ + #include + #include + #include ++#include + + #include + +@@ -39,21 +46,6 @@ + #include "gdm-logout-action.h" + #include "gsm-multiscreen.h" + +-enum +-{ +- OPTION_LOGOUT, +- OPTION_HALT, +- OPTION_REBOOT +-}; +- +-static GConfEnumStringPair logout_options_lookup_table[] = +-{ +- { OPTION_LOGOUT, "logout" }, +- { OPTION_HALT, "shutdown" }, +- { OPTION_REBOOT, "restart" }, +- { 0, NULL } +-}; +- + typedef struct { + GdkScreen *screen; + int monitor; +@@ -68,12 +60,36 @@ + gboolean composited; + } FadeoutData; + ++typedef struct { ++ GtkWidget *dialog; ++ GtkWidget *status_notebook; ++ gboolean retval; ++} LogoutDialog; ++ ++enum { ++ RESPONSE_LOGOUT, ++ RESPONSE_SWITCH, ++ RESPONSE_LOCK, ++ RESPONSE_REBOOT, ++ RESPONSE_SUSPEND, ++ RESPONSE_HIBERNATE, ++ RESPONSE_HALT, ++ RESPONSE_NONE, ++ N_RESPONSES ++}; ++ ++/* Globals */ + static GList *fadeout_windows = NULL; ++LogoutDialog *dialog; + + /* Go for five seconds */ + #define FADE_DURATION 1500.0 + #define SATURATION_TARGET 0.5 + ++#define GPM_DBUS_SERVICE "org.freedesktop.PowerManagement" ++#define GPM_DBUS_PATH "/org/freedesktop/PowerManagement" ++#define GPM_DBUS_INTERFACE "org.freedesktop.PowerManagement" ++ + static void + get_current_frame (FadeoutData *fadeout, + double sat) +@@ -251,88 +267,181 @@ + fadeout_windows = NULL; + } + +-static GtkWidget * +-make_title_label (const char *text) ++static void ++logout (LogoutDialog *dialog) ++ { ++ dialog->retval = TRUE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_LOGOUT); ++} ++ ++static void ++switch_user (LogoutDialog *dialog) + { +- GtkWidget *label; +- char *full; +- +- full = g_strdup_printf ("%s", text); +- label = gtk_label_new (full); +- g_free (full); +- +- gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); +- gtk_label_set_use_markup (GTK_LABEL (label), TRUE); +- +- return label; ++ dialog->retval = FALSE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_SWITCH); + } +- +-static int +-get_default_option (void) ++ ++static void ++lock (LogoutDialog *dialog) + { +- GConfClient *gconf_client; +- char *str; +- int option; +- +- gconf_client = gsm_get_conf_client (); +- str = gconf_client_get_string (gconf_client, LOGOUT_OPTION_KEY, NULL); +- +- if (str == NULL || !gconf_string_to_enum (logout_options_lookup_table, str, &option)) +- option = OPTION_LOGOUT; +- +- g_free (str); +- return option; ++ dialog->retval = FALSE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_LOCK); + } + + static void +-set_default_option (int option) ++reboot (LogoutDialog *dialog) + { +- GConfClient *gconf_client; +- const char *str; ++ dialog->retval = TRUE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_REBOOT); ++} ++ ++static void ++suspend (LogoutDialog *dialog) ++{ ++ dialog->retval = FALSE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_SUSPEND); ++} ++ ++static void ++hibernate (LogoutDialog *dialog) ++{ ++ dialog->retval = FALSE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_HIBERNATE); ++} ++ ++static void ++halt (LogoutDialog *dialog) ++{ ++ dialog->retval = TRUE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), RESPONSE_HALT); ++} ++ ++ static void ++cancel (LogoutDialog *dialog) ++{ ++ dialog->retval = FALSE; ++ gtk_dialog_response (GTK_DIALOG (dialog->dialog), GTK_RESPONSE_CANCEL); ++} + +- gconf_client = gsm_get_conf_client (); ++static gboolean ++update_status_label (gpointer data) { ++ int response; + +- str = gconf_enum_to_string (logout_options_lookup_table, option); +- g_assert (str != NULL); ++ response = GPOINTER_TO_INT (data); ++ gtk_notebook_set_current_page (GTK_NOTEBOOK (dialog->status_notebook), response); ++ return FALSE; ++} + +- gconf_client_set_string (gconf_client, LOGOUT_OPTION_KEY, str, NULL); ++static gboolean ++gpm_dbus_interaction (const char *method) ++{ ++ DBusGConnection *connection; ++ DBusGProxy *proxy; ++ GError *error; ++ gboolean value; ++ ++ value = FALSE; ++ error = NULL; ++ connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); ++ if (connection == NULL) { ++ if (error) { ++ g_warning ("Couldn't connect to PowerManager %s", error->message); ++ g_error_free (error); ++ } ++ return FALSE; ++} ++ ++ proxy = dbus_g_proxy_new_for_name (connection, ++ GPM_DBUS_SERVICE, ++ GPM_DBUS_PATH, ++ GPM_DBUS_INTERFACE); ++ ++ if (!strcmp (method, "CanSuspend") || ++ !strcmp (method, "CanHibernate")) { ++ ++ if (! dbus_g_proxy_call (proxy, ++ method, ++ &error, ++ G_TYPE_INVALID, ++ G_TYPE_BOOLEAN, &value, ++ G_TYPE_INVALID)) { ++ if (error) { ++ g_warning ("Couldn't connect to PowerManager %s", error->message); ++ g_error_free (error); ++ } ++ value = FALSE; ++ } ++ } ++ ++ if (!strcmp (method, "Suspend") || ++ !strcmp (method, "Hibernate") || ++ !strcmp (method, "Shutdown")) { ++ ++ if (! dbus_g_proxy_call (proxy, ++ method, ++ &error, ++ G_TYPE_INVALID, ++ G_TYPE_INVALID)) { ++ if (error) { ++ g_warning ("Couldn't connect to PowerManager %s", error->message); ++ g_error_free (error); ++ } ++ } ++ } ++ ++ g_object_unref (proxy); ++ ++ return value; + } + + static gboolean + display_gui (void) + { +- GtkWidget *box; +- GtkWidget *title; +- GtkWidget *hbox; +- GtkWidget *vbox; +- GtkWidget *image; +- GtkWidget *toggle_button = NULL; +- gint response; +- GtkWidget *halt = NULL; +- GtkWidget *reboot = NULL; +- GtkWidget *suspend = NULL; +- GtkWidget *hibernate = NULL; +- GtkWidget *invisible; ++ GtkWidget *vbox; ++ GtkWidget *cancel_button; ++ GtkWidget *cancel_button_vbox; ++ GtkWidget *empty_label; ++ GtkWidget *current_page; ++ GtkWidget *invisible; ++ gint response; ++ gint runvalue = 0; ++ gchar *cmd_stderr; ++ ++ GError *error = NULL; ++ ++ gboolean grab_xserver; ++ gboolean iris_effect_enabled; + gboolean halt_supported = FALSE; + gboolean reboot_supported = FALSE; + gboolean suspend_supported = FALSE; + gboolean hibernate_supported = FALSE; +- gboolean retval = FALSE; +- gboolean save_active = FALSE; +- gboolean halt_active = FALSE; +- gboolean reboot_active = FALSE; +- gboolean suspend_active = FALSE; +- gboolean hibernate_active = FALSE; +- GdmLogoutAction logout_action = GDM_LOGOUT_ACTION_NONE; +- gboolean iris_effect_enabled; +- gboolean grab_xserver; +- GError *error = NULL; ++ gboolean xscreensaver_supported = FALSE; ++ gboolean gnomescreensaver_supported = FALSE; ++ gboolean disable_lock_screen = FALSE; ++ gboolean disable_user_switching = FALSE; ++ gboolean retval; ++ ++ GtkWidget *action_box, *action_icon, *action_label, *action_button; ++ GdkPixbuf *icon_name; ++ ++ GtkWidget *top_hbox; ++ GtkWidget *middle_separator; ++ GtkWidget *bottom_hbox, *status_hbox; ++ ++ gchar **labels; ++ + GdkScreen *screen; +- int monitor; +- int selected_option; ++ int monitor, i; ++ ++ GConfClient *client; + + gsm_verbose ("display_gui: showing logout dialog\n"); + ++ // Tooltips don't work (background doesn't get redrawn) ++ // Using a "status label" instead. ++ dialog = g_new (LogoutDialog, 1); ++ dialog->retval = FALSE; ++ + /* It's really bad here if someone else has the pointer + * grabbed, so we first grab the pointer and keyboard + * to an offscreen window, and then once we have the +@@ -368,130 +477,372 @@ + sleep (1); + } + +- box = g_object_new (GTK_TYPE_DIALOG, +- "type", GTK_WINDOW_POPUP, +- NULL); +- } +- else +- { +- box = gtk_dialog_new (); +- atk_object_set_role (gtk_widget_get_accessible (box), ATK_ROLE_ALERT); +- gtk_window_set_decorated (GTK_WINDOW (box), FALSE); ++ dialog->dialog = g_object_new (GTK_TYPE_DIALOG, ++ "type", GTK_WINDOW_POPUP, ++ NULL); ++ } else { ++ dialog->dialog = gtk_dialog_new (); ++ atk_object_set_role (gtk_widget_get_accessible (dialog->dialog), ATK_ROLE_ALERT); ++ gtk_window_set_decorated (GTK_WINDOW (dialog->dialog), FALSE); + } + +- gtk_dialog_set_has_separator (GTK_DIALOG (box), FALSE); ++ gtk_window_set_title (GTK_WINDOW (dialog->dialog), _("Exit")); + +- vbox = gtk_vbox_new (FALSE, 12); +- gtk_box_pack_start (GTK_BOX (GTK_DIALOG (box)->vbox), vbox, FALSE, FALSE, 0); +- gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (box)->vbox), 2); +- gtk_container_set_border_width (GTK_CONTAINER (vbox), 5); ++ gtk_dialog_set_has_separator (GTK_DIALOG (dialog->dialog), FALSE); ++ ++ vbox = gtk_vbox_new (FALSE, 15); ++ gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog->dialog)->vbox), vbox, FALSE, FALSE, 0); ++ gtk_box_set_spacing (GTK_BOX (GTK_DIALOG (dialog->dialog)->vbox), 2); + gtk_widget_show (vbox); + +- hbox = gtk_hbox_new (FALSE, 12); +- gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); +- gtk_widget_show (hbox); +- +- image = gtk_image_new_from_stock ("gtk-dialog-question", GTK_ICON_SIZE_DIALOG); +- gtk_box_pack_start (GTK_BOX (hbox), image, FALSE, FALSE, 0); +- gtk_widget_show (image); +- +- title = make_title_label (_("Are you sure you want to log out?")); +- gtk_box_pack_start (GTK_BOX (hbox), title, FALSE, FALSE, 0); +- gtk_misc_set_alignment (GTK_MISC (title), 0, 0.5); +- gtk_widget_show (title); +- +- gtk_dialog_add_button (GTK_DIALOG (box), GTK_STOCK_HELP, GTK_RESPONSE_HELP); +- gtk_dialog_add_button (GTK_DIALOG (box), GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL); +- gtk_dialog_add_button (GTK_DIALOG (box), GTK_STOCK_OK, GTK_RESPONSE_OK); +- +- gtk_dialog_set_default_response (GTK_DIALOG (box), GTK_RESPONSE_OK); +- gtk_window_set_screen (GTK_WINDOW (box), screen); +- gtk_window_set_resizable (GTK_WINDOW (box), FALSE); +- +- gtk_container_set_border_width (GTK_CONTAINER (box), 5); +- +- if (!autosave) +- { +- toggle_button = gtk_check_button_new_with_mnemonic (_("Remember running applications")); +- gtk_widget_show (toggle_button); +- gtk_box_pack_start (GTK_BOX (vbox), +- toggle_button, +- FALSE, TRUE, 0); +- } +- +- halt_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_SHUTDOWN); +- reboot_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_REBOOT); +- suspend_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_SUSPEND); +- hibernate_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_HIBERNATE); +- +- if (halt_supported || reboot_supported || suspend_supported || hibernate_supported) +- { +- GtkWidget *title, *spacer; +- GtkWidget *action_vbox, *hbox; +- GtkWidget *category_vbox; +- GtkWidget *r; +- +- selected_option = get_default_option (); +- +- category_vbox = gtk_vbox_new (FALSE, 6); +- gtk_box_pack_start (GTK_BOX (vbox), category_vbox, TRUE, TRUE, 0); +- gtk_widget_show (category_vbox); +- +- title = make_title_label (_("Action")); +- gtk_box_pack_start (GTK_BOX (category_vbox), +- title, FALSE, FALSE, 0); +- gtk_widget_show (title); +- +- hbox = gtk_hbox_new (FALSE, 0); +- gtk_box_pack_start (GTK_BOX (category_vbox), hbox, TRUE, TRUE, 0); +- gtk_widget_show (hbox); +- +- spacer = gtk_label_new (" "); +- gtk_box_pack_start (GTK_BOX (hbox), spacer, FALSE, FALSE, 0); +- gtk_widget_show (spacer); +- +- action_vbox = gtk_vbox_new (FALSE, 6); +- gtk_box_pack_start (GTK_BOX (hbox), action_vbox, TRUE, TRUE, 0); +- gtk_widget_show (action_vbox); +- +- r = gtk_radio_button_new_with_mnemonic (NULL, _("_Log out")); +- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (r), (selected_option == OPTION_LOGOUT)); +- gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); +- gtk_widget_show (r); ++ cancel_button = gtk_button_new_from_stock (GTK_STOCK_CANCEL); ++ g_signal_connect_swapped (G_OBJECT (cancel_button), ++ "clicked", ++ G_CALLBACK (cancel), ++ dialog); ++ g_signal_connect (dialog->dialog, ++ "close", ++ G_CALLBACK (gtk_dialog_response), ++ GINT_TO_POINTER (GTK_RESPONSE_CANCEL)); ++ ++ gtk_dialog_set_default_response (GTK_DIALOG (dialog->dialog), GTK_RESPONSE_CANCEL); ++ gtk_window_set_screen (GTK_WINDOW (dialog->dialog), screen); ++ gtk_window_set_policy (GTK_WINDOW (dialog->dialog), FALSE, FALSE, TRUE); ++ ++ gtk_container_set_border_width (GTK_CONTAINER (dialog->dialog), 5); ++ ++ top_hbox = gtk_hbox_new (TRUE, 60); ++ ++ halt_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_SHUTDOWN); ++ reboot_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_REBOOT); ++ suspend_supported = gpm_dbus_interaction ("CanSuspend"); ++ hibernate_supported = gpm_dbus_interaction ("CanHibernate"); ++ ++ gnomescreensaver_supported = g_find_program_in_path ("gnome-screensaver-command") != NULL; ++ if (!gnomescreensaver_supported) ++ xscreensaver_supported = g_find_program_in_path ("xscreensaver-command") != NULL; ++ ++ client = gconf_client_get_default (); ++ disable_lock_screen = gconf_client_get_bool (client, ++ "/desktop/gnome/lockdown/disable_lock_screen", ++ NULL); ++ disable_user_switching = gconf_client_get_bool (client, ++ "/desktop/gnome/lockdown/disable_user_switching", ++ NULL); ++ g_object_unref (client); + +- if (halt_supported) ++ /* The Log Out button */ ++ ++ action_box = gtk_vbox_new (FALSE, 0); ++ ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-session-logout", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("_Log Out")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (top_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_LOGOUT)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_LOGOUT)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (logout), ++ dialog); ++ ++ /* The Lock Screen button */ ++ ++ if (!disable_lock_screen && (xscreensaver_supported || gnomescreensaver_supported)) ++ { ++ action_box = gtk_vbox_new (FALSE, 0); ++ ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-lockscreen", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("L_ock Screen")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (top_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_LOCK)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_LOCK)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (lock), ++ dialog); ++ } ++ ++ /* The Switch User button */ ++ ++ if (!disable_user_switching) ++ { ++ action_box = gtk_vbox_new (FALSE, 0); ++ ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-session-switch", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("S_witch User")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (top_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_SWITCH)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_SWITCH)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (switch_user), ++ dialog); ++ } ++ ++ gtk_box_pack_start (GTK_BOX (vbox), top_hbox, FALSE, FALSE, 0); ++ gtk_widget_show_all (top_hbox); ++ ++ if (suspend_supported || hibernate_supported || reboot_supported || halt_supported) ++ { ++ middle_separator = gtk_hseparator_new (); ++ gtk_box_pack_start (GTK_BOX (vbox), middle_separator, FALSE, FALSE, 20); ++ ++ bottom_hbox = gtk_hbox_new (TRUE, 60); ++ ++ if (suspend_supported) + { +- r = halt = gtk_radio_button_new_with_mnemonic_from_widget (GTK_RADIO_BUTTON (r), _("Sh_ut down")); +- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (r), (selected_option == OPTION_HALT)); +- gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); +- gtk_widget_show (r); ++ action_box = gtk_vbox_new (FALSE, 0); ++ ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-session-suspend", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("Sus_pend")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (bottom_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_SUSPEND)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_SUSPEND)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (suspend), ++ dialog); + } ++ ++ if (hibernate_supported) ++ { ++ action_box = gtk_vbox_new (FALSE, 0); + ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-session-hibernate", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("_Hibernate")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (bottom_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_HIBERNATE)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_HIBERNATE)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (hibernate), ++ dialog); ++ } ++ + if (reboot_supported) + { +- r = reboot = gtk_radio_button_new_with_mnemonic_from_widget (GTK_RADIO_BUTTON (r), _("_Restart the computer")); +- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (r), (selected_option == OPTION_REBOOT)); +- gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); +- gtk_widget_show (r); ++ action_box = gtk_vbox_new (FALSE, 0); ++ ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-session-reboot", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("_Restart")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (bottom_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_REBOOT)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_REBOOT)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (reboot), ++ dialog); + } +- +- if (suspend_supported) ++ ++ if (halt_supported) + { +- r = suspend = gtk_radio_button_new_with_mnemonic_from_widget (GTK_RADIO_BUTTON (r), _("_Suspend the computer")); +- gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); +- gtk_widget_show (r); +- } ++ action_box = gtk_vbox_new (FALSE, 0); + +- if (hibernate_supported) +- { +- r = hibernate = gtk_radio_button_new_with_mnemonic_from_widget (GTK_RADIO_BUTTON (r), _("_Hibernate the computer")); +- gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); +- gtk_widget_show (r); ++ icon_name = gtk_icon_theme_load_icon (gtk_icon_theme_get_default (), ++ "gnome-session-halt", 48, 0, NULL); ++ action_icon = gtk_image_new_from_pixbuf (icon_name); ++ g_object_unref (icon_name); ++ ++ action_label = gtk_label_new_with_mnemonic (_("_Shut Down")); ++ action_button = gtk_button_new (); ++ ++ gtk_button_set_relief (GTK_BUTTON (action_button), GTK_RELIEF_NONE); ++ gtk_label_set_line_wrap (GTK_LABEL (action_label), TRUE); ++ ++ gtk_box_pack_start (GTK_BOX (action_box), action_icon, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (action_box), action_label, FALSE, FALSE, 0); ++ gtk_container_add (GTK_CONTAINER (action_button), action_box); ++ gtk_box_pack_start (GTK_BOX (bottom_hbox), action_button, TRUE, TRUE, 0); ++ ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "grab-focus", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_HALT)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "enter-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_HALT)); ++ g_signal_connect_swapped (GTK_WIDGET (action_button), ++ "leave-notify-event", ++ G_CALLBACK (update_status_label), ++ GINT_TO_POINTER (RESPONSE_NONE)); ++ g_signal_connect_swapped (G_OBJECT (action_button), ++ "clicked", ++ G_CALLBACK (halt), ++ dialog); + } ++ ++ gtk_box_pack_start (GTK_BOX (vbox), bottom_hbox, FALSE, FALSE, 0); ++ gtk_widget_show_all (bottom_hbox); ++ } ++ ++ status_hbox = gtk_hbox_new (FALSE, 10); ++ dialog->status_notebook = gtk_notebook_new (); ++ cancel_button_vbox = gtk_vbox_new (FALSE, 0); ++ empty_label = gtk_label_new (""); ++ ++ labels = (gchar**) malloc (N_RESPONSES * sizeof (char*)); ++ labels[RESPONSE_LOGOUT] = g_strdup_printf (_("Close your session and return to the login screen.")); ++ labels[RESPONSE_SWITCH] = g_strdup_printf (_("Leave your session open and password protected, but let other users log in as well.")); ++ labels[RESPONSE_LOCK] = g_strdup_printf (_("Launch the screensaver and password protect your session.")); ++ labels[RESPONSE_REBOOT] = g_strdup_printf (_("Restart the computer.")); ++ labels[RESPONSE_SUSPEND] = g_strdup_printf (_("Power saving mode. Depending on your computer, you can wake the computer up by pressing a key, the power button, or opening the laptop lid.")); ++ labels[RESPONSE_HIBERNATE] = g_strdup_printf (_("While hibernating, your computer won't need any power. When started again, all open applications will be restored.")); ++ labels[RESPONSE_HALT] = g_strdup_printf (_("Completely turn off the computer.")); ++ labels[RESPONSE_NONE] = ""; ++ ++ for (i = 0; i < N_RESPONSES; i++) { ++ current_page = gtk_label_new (labels[i]); ++ gtk_label_set_line_wrap (GTK_LABEL (current_page), TRUE); ++ gtk_notebook_append_page (GTK_NOTEBOOK (dialog->status_notebook), ++ current_page, ++ NULL); ++ } ++ gtk_notebook_set_show_tabs (GTK_NOTEBOOK (dialog->status_notebook), FALSE); ++ gtk_notebook_set_show_border (GTK_NOTEBOOK (dialog->status_notebook), FALSE); ++ ++ gtk_box_pack_start (GTK_BOX (status_hbox), dialog->status_notebook, TRUE, TRUE, 0); ++ gtk_box_pack_start (GTK_BOX (cancel_button_vbox), empty_label, TRUE, TRUE, 0); ++ gtk_box_pack_start (GTK_BOX (cancel_button_vbox), cancel_button, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (status_hbox), cancel_button_vbox, FALSE, FALSE, 0); ++ gtk_box_pack_start (GTK_BOX (vbox), status_hbox, FALSE, FALSE, 0); + +- } ++ gtk_container_set_border_width (GTK_CONTAINER (vbox), 10); ++ gtk_widget_grab_focus (cancel_button); + +- gsm_center_window_on_screen (GTK_WINDOW (box), screen, monitor); ++ gsm_center_window_on_screen (GTK_WINDOW (dialog->dialog), screen, monitor); + + /* Grabbing the Xserver when accessibility is enabled will cause + * a hang. See #93103 for details. +@@ -505,45 +856,27 @@ + gsm_foreach_screen (fadeout_screen); + } + +- gtk_widget_show_all (box); ++gtk_widget_show_all (dialog->dialog); + +- if (iris_effect_enabled) ++if (iris_effect_enabled) + { + /* Move the grabs to our message box */ +- gdk_pointer_grab (box->window, TRUE, 0, +- NULL, NULL, GDK_CURRENT_TIME); +- gdk_keyboard_grab (box->window, FALSE, GDK_CURRENT_TIME); ++ gdk_pointer_grab (dialog->dialog->window, TRUE, 0, ++ NULL, NULL, GDK_CURRENT_TIME); ++ gdk_keyboard_grab (dialog->dialog->window, FALSE, GDK_CURRENT_TIME); ++ ++ + XSetInputFocus (GDK_DISPLAY (), +- GDK_WINDOW_XWINDOW (box->window), ++ GDK_WINDOW_XWINDOW (dialog->dialog->window), + RevertToParent, + CurrentTime); + } + +- response = gtk_dialog_run (GTK_DIALOG (box)); +- +- if (halt) +- halt_active = GTK_TOGGLE_BUTTON (halt)->active; +- +- if (reboot) +- reboot_active = GTK_TOGGLE_BUTTON (reboot)->active; +- +- if (suspend) +- suspend_active = GTK_TOGGLE_BUTTON (suspend)->active; +- +- if (hibernate) +- hibernate_active = GTK_TOGGLE_BUTTON (hibernate)->active; +- +- if (toggle_button) +- save_active = GTK_TOGGLE_BUTTON (toggle_button)->active; +- +- if (reboot_active) +- selected_option = OPTION_REBOOT; +- else if (halt_active) +- selected_option = OPTION_HALT; +- else +- selected_option = OPTION_LOGOUT; +- +- gtk_widget_destroy (box); ++ gtk_notebook_set_current_page (GTK_NOTEBOOK (dialog->status_notebook), RESPONSE_NONE); ++ ++ response = gtk_dialog_run (GTK_DIALOG (dialog->dialog)); ++ ++ gtk_widget_destroy (dialog->dialog); + gtk_widget_destroy (invisible); + + if (iris_effect_enabled) +@@ -562,67 +895,69 @@ + } + + switch (response) { +- case GTK_RESPONSE_OK: +- /* We want to know if we should trash changes (and lose forever) +- * or save them */ +- if(save_active) +- save_selected = save_active; +- if (halt_active) +- logout_action = GDM_LOGOUT_ACTION_SHUTDOWN; +- else if (reboot_active) +- logout_action = GDM_LOGOUT_ACTION_REBOOT; +- else if (suspend_active) { +- logout_action = GDM_LOGOUT_ACTION_SUSPEND; +- retval = FALSE; +- break; +- } +- else if (hibernate_active) { +- logout_action = GDM_LOGOUT_ACTION_HIBERNATE; +- retval = FALSE; +- break; +- } +- set_default_option (selected_option); +- retval = TRUE; +- break; +- default: +- case GTK_RESPONSE_CANCEL: +- retval = FALSE; +- break; +- case GTK_RESPONSE_HELP: +- gnome_help_display_desktop_on_screen (NULL, "user-guide", +- "user-guide.xml", +- "gosgetstarted-73", +- screen, +- &error); ++ case RESPONSE_LOGOUT: ++ gdm_set_logout_action (GDM_LOGOUT_ACTION_NONE); ++ break; ++ case RESPONSE_SWITCH: ++ g_spawn_command_line_sync ("gdmflexiserver --startnew", NULL, &cmd_stderr, &runvalue, &error); ++ break; ++ case RESPONSE_LOCK: ++ if (gnomescreensaver_supported) { ++ g_spawn_command_line_sync ("gnome-screensaver-command --lock", NULL, &cmd_stderr, &runvalue, &error); ++ } else { ++ g_spawn_command_line_sync ("xscreensaver-command --lock", NULL, &cmd_stderr, &runvalue, &error); ++ } ++ break; ++ default: ++ case RESPONSE_REBOOT: ++ /* It seems gpm doesn't support rebooting, doing it with gdm */ ++ gdm_set_logout_action (GDM_LOGOUT_ACTION_REBOOT); ++ break; ++ case RESPONSE_SUSPEND: ++ gpm_dbus_interaction ("Suspend"); ++ break; ++ case RESPONSE_HIBERNATE: ++ gpm_dbus_interaction ("Hibernate"); ++ break; ++ case RESPONSE_HALT: ++ gdm_set_logout_action (GDM_LOGOUT_ACTION_SHUTDOWN); ++ break; ++ case GTK_RESPONSE_CANCEL: ++ dialog->retval = FALSE; ++ break; ++ } + +- if (error) +- { +- GtkWidget *dialog; +- +- dialog = gtk_message_dialog_new (NULL, +- GTK_DIALOG_DESTROY_WITH_PARENT, +- GTK_MESSAGE_ERROR, +- GTK_BUTTONS_CLOSE, +- ("There was an error displaying help: \n%s"), +- error->message); +- +- g_signal_connect (G_OBJECT (dialog), "response", +- G_CALLBACK (gtk_widget_destroy), +- NULL); +- +- gtk_window_set_screen (GTK_WINDOW (dialog), screen); +- +- gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE); +- gtk_widget_show (dialog); +- g_error_free (error); +- } +- +- retval = FALSE; +- break; +- } +- +- gdm_set_logout_action (logout_action); ++ if (error) { ++ GtkWidget *dialog; ++ ++ dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, ++ GTK_BUTTONS_OK, _("Could not run command")); ++ if (error->message != NULL) ++ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), ++ error->message); ++ ++ response = gtk_dialog_run (GTK_DIALOG (dialog)); ++ gtk_widget_destroy (dialog); ++ ++ g_error_free (error); ++ } ++ else if (runvalue) { ++ GtkWidget *dialog; ++ ++ dialog = gtk_message_dialog_new (NULL, 0, GTK_MESSAGE_ERROR, ++ GTK_BUTTONS_OK, _("Error while running command")); ++ if (cmd_stderr != NULL) ++ gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (dialog), ++ cmd_stderr); ++ ++ response = gtk_dialog_run (GTK_DIALOG (dialog)); ++ gtk_widget_destroy (dialog); + ++ g_free (cmd_stderr); ++ } ++ ++ retval = dialog->retval; ++ g_free (dialog); + return retval; + } + +diff -Nur gnome-session-2.19.6/gnome-session/logout-test.c gnome-session-2.19.6.new/gnome-session/logout-test.c +--- gnome-session-2.19.6/gnome-session/logout-test.c 2007-07-30 22:07:15.000000000 +0200 ++++ gnome-session-2.19.6.new/gnome-session/logout-test.c 2007-08-02 10:29:06.000000000 +0200 +@@ -8,8 +8,6 @@ + #define ice_thawed() + + #define COMMAND_H +-static gboolean autosave = FALSE; +-static gboolean save_selected = FALSE; + static gboolean logout_prompt = TRUE; + + #include "logout.c" --- gnome-session-2.20.2.orig/debian/patches/02_gsd-spawn.patch +++ gnome-session-2.20.2/debian/patches/02_gsd-spawn.patch @@ -0,0 +1,178 @@ +Index: gnome-session-2.20.1/configure.in +=================================================================== +--- gnome-session-2.20.1.orig/configure.in 2007-11-03 01:53:08.948933959 +0100 ++++ gnome-session-2.20.1/configure.in 2007-11-03 02:12:48.712164834 +0100 +@@ -427,6 +427,20 @@ AC_ARG_WITH(rsh-command, + ]) + AC_SUBST(RSH_COMMAND) + ++AC_MSG_CHECKING([for gnome-settings-daemon]) ++AC_ARG_WITH(settings-daemon, ++ AC_HELP_STRING([--with-settings-daemon=PATH], ++ [Specify the path to gnome-settings-daemon]), ++ [SETTINGS_DAEMON_PATH="$with_settings_daemon"], ++ [SETTINGS_DAEMON_PATH=`pkg-config --variable=binary gnome-settings-daemon` ++ if test x$SETTINGS_DAEMON_PATH = x ; then ++ AC_MSG_ERROR([No path found to gnome-settings-daemon.]) ++ fi ++]) ++AC_MSG_RESULT($SETTINGS_DAEMON_PATH) ++AC_DEFINE_UNQUOTED(SETTINGS_DAEMON_PATH, "$SETTINGS_DAEMON_PATH", ++ [Defines the path to the gnome-settings-daemon binary]) ++ + + GNOME_SESSION_TARBALL=`date +%e` + AC_DEFINE_UNQUOTED(GNOME_SESSION_TARBALL_DAY, $GNOME_SESSION_TARBALL, +Index: gnome-session-2.20.1/gnome-session/gsm-gsd.c +=================================================================== +--- gnome-session-2.20.1.orig/gnome-session/gsm-gsd.c 2007-11-03 01:53:08.896930996 +0100 ++++ gnome-session-2.20.1/gnome-session/gsm-gsd.c 2007-11-03 02:02:34.993190983 +0100 +@@ -6,15 +6,10 @@ + #include + #include + +-#include +- + #include + +-#include +- + typedef struct { +- DBusGProxy *dbus_proxy; +- gboolean activating; ++ GPid pid; + time_t start_time; + guint attempts; + char *last_error; +@@ -79,57 +74,25 @@ gsd_error_dialog (GnomeSettingsData *gsd + } + + static void +-name_owner_changed (DBusGProxy *proxy, +- const char *name, +- const char *prev_owner, +- const char *new_owner, +- GnomeSettingsData *gsd) ++gsd_died_cb (GPid pid, gint status, GnomeSettingsData *gsd) + { +- if (!g_ascii_strcasecmp (name, "org.gnome.SettingsDaemon")) +- { +- /* gsd terminated */ +- if (!g_ascii_strcasecmp ("", new_owner)) +- { +- if (!gsd->activating) +- { +- gsm_verbose ("gnome-settings-daemon terminated\n"); +- g_return_if_fail (gsd != NULL); +- /* Previous attempts failed */ +- if (gsd->dbus_proxy == NULL) +- return; +- +- gsd->dbus_proxy = NULL; +- +- gsm_gsd_start (); +- } +- } +- else +- { +- gsm_verbose ("gnome-settings-daemon started\n"); +- gsd->activating = FALSE; +- } +- } ++ gsd->pid = 0; ++ gsm_gsd_start (); + } + + void + gsm_gsd_start (void) + { +- static GnomeSettingsData gsd = { NULL }; ++ static GnomeSettingsData gsd = { 0 }; + time_t now; +- DBusGConnection *connection; + GError *error = NULL; ++ const gchar *const argv[] = { SETTINGS_DAEMON_PATH, "gnome-settings-daemon", NULL }; + + gsm_verbose ("gsm_gsd_start(): starting\n"); + +- if (gsd.activating) ++ if (gsd.pid) + return; + +- if (gsd.dbus_proxy) +- { +- gsm_warning ("disconnected...\n"); +- gsd.dbus_proxy = NULL; +- } +- + /* stolen from manager.c:client_clean_up() */ + now = time (NULL); + gsm_verbose ("%ld secs since last attempt\n", now - gsd.start_time); +@@ -146,60 +109,16 @@ gsm_gsd_start (void) + return; + } + +- gsd.activating = TRUE; +- +- connection = dbus_g_bus_get (DBUS_BUS_SESSION, &error); +- if (connection == NULL) ++ if (g_spawn_async (NULL, (gchar **) argv, NULL, ++ G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_FILE_AND_ARGV_ZERO, ++ NULL, NULL, &gsd.pid, &error)) + { +- gsd_set_error (&gsd, error->message); +- gsd_error_dialog (&gsd, NULL); +- g_error_free (error); ++ g_child_watch_add (gsd.pid, (GChildWatchFunc) gsd_died_cb, &gsd); + } + else + { +- dbus_connection_set_exit_on_disconnect (dbus_g_connection_get_connection (connection), +- FALSE); +- +- gsd.dbus_proxy = dbus_g_proxy_new_for_name (connection, +- "org.gnome.SettingsDaemon", +- "/org/gnome/SettingsDaemon", +- "org.gnome.SettingsDaemon"); +- +- if (gsd.dbus_proxy == NULL) +- { +- gsd_set_error (&gsd, "Could not obtain DBUS proxy"); +- gsd_error_dialog (&gsd, NULL); +- } +- else +- { +- if (!org_gnome_SettingsDaemon_awake(gsd.dbus_proxy, &error)) +- { +- /* Method failed, the GError is set, let's warn everyone */ +- gsd_set_error (&gsd, error->message); +- gsd_error_dialog (&gsd, NULL); +- g_error_free (error); +- } +- else +- { +- DBusGProxy *dbusService; +- dbusService = dbus_g_proxy_new_for_name (connection, +- DBUS_SERVICE_DBUS, +- DBUS_PATH_DBUS, +- DBUS_INTERFACE_DBUS); +- +- dbus_g_proxy_add_signal (dbusService, +- "NameOwnerChanged", +- G_TYPE_STRING, +- G_TYPE_STRING, +- G_TYPE_STRING, +- G_TYPE_INVALID); +- +- dbus_g_proxy_connect_signal (dbusService, +- "NameOwnerChanged", +- G_CALLBACK (name_owner_changed), +- &gsd, +- NULL); +- } +- } ++ gsd_set_error (&gsd, error->message); ++ gsd_error_dialog (&gsd, NULL); ++ g_error_free (error); + } + } --- gnome-session-2.20.2.orig/debian/patches/series +++ gnome-session-2.20.2/debian/patches/series @@ -0,0 +1,12 @@ +01_ignore-gdm-lang.patch +02_gsd-spawn.patch +03_powermanagement.patch +09_splash_hide.patch +10_update_notifier.patch +90_from_bugzilla_fix_session_sounds.patch +90_autoconf-autoheader.patch +08_ubuntu_use_apport_on_crash.patch +11_session_dialog.patch +19_gnome-wm-tweaking.patch +20_dont_fade_on_ltsp_client.patch +91_from_bugzilla_set_keyring_environment.patch \ No newline at end of file --- gnome-session-2.20.2.orig/debian/patches/01_ignore-gdm-lang.patch +++ gnome-session-2.20.2/debian/patches/01_ignore-gdm-lang.patch @@ -0,0 +1,45 @@ +Index: gnome-session-2.20.1/gnome-session/main.c +=================================================================== +--- gnome-session-2.20.1.orig/gnome-session/main.c 2007-10-15 21:49:11.000000000 +0200 ++++ gnome-session-2.20.1/gnome-session/main.c 2007-11-03 01:50:34.236117378 +0100 +@@ -111,32 +111,6 @@ ignore (int sig) + sigaction (sig, &act, NULL); + } + +-/* Set language environment variables based on what GDM is setting +- */ +-static void +-set_lang (void) +-{ +- const char *gdm_lang; +- char *short_lang; +- char *p; +- +- gdm_lang = g_getenv("GDM_LANG"); +- if (gdm_lang) +- { +- short_lang = g_strdup (gdm_lang); +- p = strchr(short_lang, '_'); +- if (p) +- *p = '\0'; +- +- g_setenv ("LANG", gdm_lang, TRUE); +- +- /* g_setenv ("LANGUAGE", short_lang, TRUE); */ +- /* g_setenv ("LC_ALL", gdm_lang, TRUE); */ +- +- g_free (short_lang); +- } +-} +- + /* Point GTK_RC_FILES at a separate file that we change in + * in gnome-settings-daemon. + */ +@@ -632,7 +606,6 @@ main (int argc, char *argv[]) + } + g_strfreev (versions); + +- set_lang(); + set_gtk1_theme_rcfile (); + + /* Initialize the i18n stuff */ --- gnome-session-2.20.2.orig/debian/patches/19_gnome-wm-tweaking.patch +++ gnome-session-2.20.2/debian/patches/19_gnome-wm-tweaking.patch @@ -0,0 +1,61 @@ +diff -Nur gnome-session-2.19.92/gnome-session/gnome-wm gnome-session-2.19.92.new/gnome-session/gnome-wm +--- gnome-session-2.19.92/gnome-session/gnome-wm 2007-09-04 19:34:35.000000000 +0200 ++++ gnome-session-2.19.92.new/gnome-session/gnome-wm 2007-09-04 23:24:56.000000000 +0200 +@@ -1,7 +1,8 @@ + #!/bin/sh + + # The user can specify his prefered WM by setting the WINDOW_MANAGER +-# environment variable. ++# environment variable or setting the ++# /desktop/gnome/applications/window_manager/default gconf key. + # + # If this is not set, we search a list of known windowmanagers and use + # the first one that is found in the users's PATH +@@ -37,6 +38,17 @@ + esac + done + ++# Get previously set window manager in gconf ++if [ ! "$DEFWM" ]; then ++ DEFWM=`gconftool-2 -g /desktop/gnome/applications/window_manager/default 2>/dev/null` ++fi ++ ++# If not exist, set to compiz. ++if [ ! -x "$DEFWM" ]; then ++ gconftool-2 -s /desktop/gnome/applications/window_manager/default /usr/bin/compiz --type string ++ DEFWM=/usr/bin/compiz ++fi ++ + # WINDOW_MANAGER overrides all + + if [ -z "$WINDOW_MANAGER" ] ; then +@@ -75,7 +87,7 @@ + + if [ -z "$WINDOW_MANAGER" ] ; then + echo "WARNING: No window manager can be found." +- WINDOW_MANAGER=xterm ++ WINDOW_MANAGER=`readlink /etc/alternatives/x-terminal-emulator 2>/dev/null` + fi + + # Now create options OPT1, OPT2 and OPT3 based on the windowmanager used +@@ -117,17 +129,14 @@ + fi + + case `basename $WINDOW_MANAGER` in +- compiz) +- export LIBGL_ALWAYS_INDIRECT=1 +- gtk-window-decorator & +- OPT3=glib +- OPT4=gconf +- ;; + beryl) + emerald & + ;; + esac + ++# Store the selected WM with gconf ++gconftool-2 -t string -s /desktop/gnome/applications/window_manager/current "$WINDOW_MANAGER" ++ + exec $WINDOW_MANAGER $OPT1 $OPT2 $OPT3 $OPT4 + + echo "ERROR: No window manager could run!" --- gnome-session-2.20.2.orig/debian/patches/20_dont_fade_on_ltsp_client.patch +++ gnome-session-2.20.2/debian/patches/20_dont_fade_on_ltsp_client.patch @@ -0,0 +1,39 @@ +diff -Nur gnome-session-2.19.6/gnome-session/logout.c gnome-session-2.19.6.new/gnome-session/logout.c +--- gnome-session-2.19.6/gnome-session/logout.c 2007-08-02 10:17:30.000000000 +0200 ++++ gnome-session-2.19.6.new/gnome-session/logout.c 2007-08-02 10:17:31.000000000 +0200 +@@ -461,7 +461,7 @@ + grab_xserver = !gdk_screen_is_composited (screen); + + /* Only create a managed window if a11y is enabled */ +- if (iris_effect_enabled) ++ if (iris_effect_enabled && !getenv("LTSP_CLIENT")) + { + while (1) + { +@@ -846,7 +846,7 @@ + /* Grabbing the Xserver when accessibility is enabled will cause + * a hang. See #93103 for details. + */ +- if (iris_effect_enabled) ++ if (iris_effect_enabled && !getenv("LTSP_CLIENT")) + { + if (grab_xserver) + { +@@ -857,7 +857,7 @@ + + gtk_widget_show_all (dialog->dialog); + +-if (iris_effect_enabled) ++if (iris_effect_enabled && !getenv("LTSP_CLIENT")) + { + /* Move the grabs to our message box */ + gdk_pointer_grab (dialog->dialog->window, TRUE, 0, +@@ -878,7 +878,7 @@ + gtk_widget_destroy (dialog->dialog); + gtk_widget_destroy (invisible); + +- if (iris_effect_enabled) ++ if (iris_effect_enabled && !getenv("LTSP_CLIENT")) + { + hide_fadeout_windows (); + --- gnome-session-2.20.2.orig/debian/patches/02_no_warning_crash.patch +++ gnome-session-2.20.2/debian/patches/02_no_warning_crash.patch @@ -0,0 +1,20 @@ +diff -Nur -x '*.orig' -x '*~' gnome-session-2.20.1/gnome-session/main.c gnome-session-2.20.1.new/gnome-session/main.c +--- gnome-session-2.20.1/gnome-session/main.c 2007-11-21 15:48:32.000000000 +0100 ++++ gnome-session-2.20.1.new/gnome-session/main.c 2007-11-21 15:49:01.000000000 +0100 +@@ -593,6 +593,7 @@ + gsm_set_verbose (TRUE); + + /* Help eradicate the critical warnings in unstable releases of GNOME */ ++ /* + versions = g_strsplit (VERSION, ".", 3); + if (versions && versions [0] && versions [1]) + { +@@ -605,7 +606,7 @@ + } + } + g_strfreev (versions); +- ++ */ + set_gtk1_theme_rcfile (); + + /* Initialize the i18n stuff */ --- gnome-session-2.20.2.orig/debian/patches/10_update_notifier.patch +++ gnome-session-2.20.2/debian/patches/10_update_notifier.patch @@ -0,0 +1,12 @@ +--- gnome-session-2.20.2.orig/gnome-session/splash-widget.c 2007-11-27 13:28:17.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/splash-widget.c 2007-11-27 13:28:20.000000000 +0100 +@@ -46,7 +46,8 @@ + { N_("Window Manager"), "gnome-wm", "gnome-window-manager" }, + { N_("The Panel"), "gnome-panel", "gnome-panel" }, + { N_("Nautilus"), "nautilus", "gnome-fs-desktop" }, +- { N_("Desktop Settings"), "gnome-settings-daemon", "gnome-settings" } ++ { N_("Desktop Settings"), "gnome-settings-daemon", "gnome-settings" }, ++ { N_("Update Notifier"), "update-notifier", "update-notifier" } + }; + + static const SplashApp * --- gnome-session-2.20.2.orig/debian/patches/91_from_bugzilla_set_keyring_environment.patch +++ gnome-session-2.20.2/debian/patches/91_from_bugzilla_set_keyring_environment.patch @@ -0,0 +1,59 @@ +# Description: set the keyring environment correctly +# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=503278 +# +Index: gnome-session/gsm-keyring.c +=================================================================== +--- gnome-session-2.20.2/gnome-session/gsm-keyring.c (revision 4516) ++++ gnome-session-2.20.2/gnome-session/gsm-keyring.c (working copy) +@@ -53,10 +53,10 @@ + { + GError *err; + char *standard_out; +- char **lines; ++ char **lines, **l; + int status; + long pid; +- char *pid_str, *end; ++ char *t, *end; + const char *old_keyring; + const char *display; + char *argv[2]; +@@ -100,22 +100,26 @@ + WEXITSTATUS (status) == 0 && + standard_out != NULL) + { +- lines = g_strsplit (standard_out, "\n", 3); ++ lines = g_strsplit (standard_out, "\n", 0); ++ for (l = lines; *l; ++l) ++ { ++ /* Split the line into name=value */ ++ t = strchr (*l, '='); ++ if (!t) ++ continue; ++ *(t++) = 0; + +- if (lines[0] != NULL && +- lines[1] != NULL && +- g_str_has_prefix (lines[1], "GNOME_KEYRING_PID=")) +- { +- pid_str = lines[1] + strlen ("GNOME_KEYRING_PID="); +- pid = strtol (pid_str, &end, 10); +- if (end != pid_str) ++ /* Everything that comes out should be an env var */ ++ g_setenv (*l, t, TRUE); ++ ++ /* Track the daemon's PID */ ++ if (g_str_equal (*l, "GNOME_KEYRING_PID")) + { +- gnome_keyring_daemon_pid = pid; +- g_setenv ("GNOME_KEYRING_SOCKET", +- lines[0] + strlen ("GNOME_KEYRING_SOCKET="), TRUE); ++ pid = strtol (t, &end, 10); ++ if (end != t) ++ gnome_keyring_daemon_pid = pid; + } + } +- + g_strfreev (lines); + } + else --- gnome-session-2.20.2.orig/debian/patches/09_splash_hide.patch +++ gnome-session-2.20.2/debian/patches/09_splash_hide.patch @@ -0,0 +1,32 @@ +--- gnome-session-2.20.2.orig/gnome-session/manager.c 2007-11-27 01:03:13.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/manager.c 2007-11-27 13:28:17.000000000 +0100 +@@ -1368,6 +1368,7 @@ + start_client (client); + } + if (pending_list) ++ splash_hide (); + goto out; + } + save_state = MANAGER_IDLE; +--- gnome-session-2.20.2.orig/gnome-session/splash-widget.c 2007-11-27 01:03:13.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/splash-widget.c 2007-11-27 13:28:17.000000000 +0100 +@@ -717,3 +717,10 @@ + } + } + ++void ++splash_hide (void) ++{ ++ if (global_splash) { ++ gtk_widget_hide (GTK_WIDGET (global_splash)); ++ } ++} +--- gnome-session-2.20.2.orig/gnome-session/splash-widget.h 2007-11-27 01:03:13.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/splash-widget.h 2007-11-27 13:28:17.000000000 +0100 +@@ -80,5 +80,6 @@ + void splash_start (void); + void splash_update (const gchar *text); + void splash_stop (void); ++void splash_hide (void); + + #endif /* SPLASH_WIDGET_H */ --- gnome-session-2.20.2.orig/debian/patches/03_powermanagement.patch +++ gnome-session-2.20.2/debian/patches/03_powermanagement.patch @@ -0,0 +1,144 @@ +--- gnome-session-2.20.2.orig/gnome-session/gdm-logout-action.c 2007-11-27 01:03:13.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/gdm-logout-action.c 2007-11-27 13:28:13.000000000 +0100 +@@ -50,11 +50,14 @@ + #define GDM_PROTOCOL_MSG_AUTHENTICATE "AUTH_LOCAL" + #define GDM_PROTOCOL_MSG_QUERY_ACTION "QUERY_LOGOUT_ACTION" + #define GDM_PROTOCOL_MSG_SET_ACTION "SET_LOGOUT_ACTION" ++#define GDM_PROTOCOL_MSG_SET_SUSPEND "SET_SUSPEND" ++#define GDM_PROTOCOL_MSG_SET_HIBERNATE "SET_HIBERNATE" + + #define GDM_ACTION_STR_NONE "NONE" + #define GDM_ACTION_STR_SHUTDOWN "HALT" + #define GDM_ACTION_STR_REBOOT "REBOOT" + #define GDM_ACTION_STR_SUSPEND "SUSPEND" ++#define GDM_ACTION_STR_HIBERNATE "HIBERNATE" + + typedef struct { + int fd; +@@ -312,6 +315,8 @@ + action = GDM_LOGOUT_ACTION_REBOOT; + else if (!strcmp (str, GDM_ACTION_STR_SUSPEND)) + action = GDM_LOGOUT_ACTION_SUSPEND; ++ else if (!strcmp (str, GDM_ACTION_STR_HIBERNATE)) ++ action = GDM_LOGOUT_ACTION_HIBERNATE; + + data->available_actions |= action; + if (selected) +@@ -381,8 +386,17 @@ + action_str = GDM_ACTION_STR_REBOOT; + break; + case GDM_LOGOUT_ACTION_SUSPEND: +- action_str = GDM_ACTION_STR_SUSPEND; +- break; ++ response = gdm_send_protocol_msg (&gdm_protocol_data, GDM_PROTOCOL_MSG_SET_SUSPEND); ++ g_free (response); ++ gdm_protocol_data.last_update = 0; ++ gdm_shutdown_protocol_connection (&gdm_protocol_data); ++ return; ++ case GDM_LOGOUT_ACTION_HIBERNATE: ++ response = gdm_send_protocol_msg (&gdm_protocol_data, GDM_PROTOCOL_MSG_SET_HIBERNATE); ++ g_free (response); ++ gdm_protocol_data.last_update = 0; ++ gdm_shutdown_protocol_connection (&gdm_protocol_data); ++ return; + } + + msg = g_strdup_printf (GDM_PROTOCOL_MSG_SET_ACTION " %s", action_str); +--- gnome-session-2.20.2.orig/gnome-session/gdm-logout-action.h 2007-11-27 01:03:13.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/gdm-logout-action.h 2007-11-27 13:28:13.000000000 +0100 +@@ -38,7 +38,8 @@ + GDM_LOGOUT_ACTION_NONE = 0, + GDM_LOGOUT_ACTION_SHUTDOWN = 1 << 0, + GDM_LOGOUT_ACTION_REBOOT = 1 << 1, +- GDM_LOGOUT_ACTION_SUSPEND = 1 << 2 ++ GDM_LOGOUT_ACTION_SUSPEND = 1 << 2, ++ GDM_LOGOUT_ACTION_HIBERNATE = 1 << 3 + } GdmLogoutAction; + + gboolean gdm_supports_logout_action (GdmLogoutAction action); +--- gnome-session-2.20.2.orig/gnome-session/logout.c 2007-11-27 01:03:13.000000000 +0100 ++++ gnome-session-2.20.2/gnome-session/logout.c 2007-11-27 13:28:13.000000000 +0100 +@@ -310,13 +310,19 @@ + gint response; + GtkWidget *halt = NULL; + GtkWidget *reboot = NULL; ++ GtkWidget *suspend = NULL; ++ GtkWidget *hibernate = NULL; + GtkWidget *invisible; + gboolean halt_supported = FALSE; + gboolean reboot_supported = FALSE; ++ gboolean suspend_supported = FALSE; ++ gboolean hibernate_supported = FALSE; + gboolean retval = FALSE; + gboolean save_active = FALSE; + gboolean halt_active = FALSE; + gboolean reboot_active = FALSE; ++ gboolean suspend_active = FALSE; ++ gboolean hibernate_active = FALSE; + GdmLogoutAction logout_action = GDM_LOGOUT_ACTION_NONE; + gboolean iris_effect_enabled; + gboolean grab_xserver; +@@ -415,8 +421,10 @@ + + halt_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_SHUTDOWN); + reboot_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_REBOOT); ++ suspend_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_SUSPEND); ++ hibernate_supported = gdm_supports_logout_action (GDM_LOGOUT_ACTION_HIBERNATE); + +- if (halt_supported || reboot_supported) ++ if (halt_supported || reboot_supported || suspend_supported || hibernate_supported) + { + GtkWidget *title, *spacer; + GtkWidget *action_vbox, *hbox; +@@ -466,6 +474,21 @@ + gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); + gtk_widget_show (r); + } ++ ++ if (suspend_supported) ++ { ++ r = suspend = gtk_radio_button_new_with_mnemonic_from_widget (GTK_RADIO_BUTTON (r), _("_Suspend the computer")); ++ gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); ++ gtk_widget_show (r); ++ } ++ ++ if (hibernate_supported) ++ { ++ r = hibernate = gtk_radio_button_new_with_mnemonic_from_widget (GTK_RADIO_BUTTON (r), _("_Hibernate the computer")); ++ gtk_box_pack_start (GTK_BOX (action_vbox), r, FALSE, FALSE, 0); ++ gtk_widget_show (r); ++ } ++ + } + + gsm_center_window_on_screen (GTK_WINDOW (box), screen, monitor); +@@ -504,6 +527,12 @@ + if (reboot) + reboot_active = GTK_TOGGLE_BUTTON (reboot)->active; + ++ if (suspend) ++ suspend_active = GTK_TOGGLE_BUTTON (suspend)->active; ++ ++ if (hibernate) ++ hibernate_active = GTK_TOGGLE_BUTTON (hibernate)->active; ++ + if (toggle_button) + save_active = GTK_TOGGLE_BUTTON (toggle_button)->active; + +@@ -542,6 +571,16 @@ + logout_action = GDM_LOGOUT_ACTION_SHUTDOWN; + else if (reboot_active) + logout_action = GDM_LOGOUT_ACTION_REBOOT; ++ else if (suspend_active) { ++ logout_action = GDM_LOGOUT_ACTION_SUSPEND; ++ retval = FALSE; ++ break; ++ } ++ else if (hibernate_active) { ++ logout_action = GDM_LOGOUT_ACTION_HIBERNATE; ++ retval = FALSE; ++ break; ++ } + set_default_option (selected_option); + retval = TRUE; + break; --- gnome-session-2.20.2.orig/debian/patches/90_autoconf-autoheader.patch +++ gnome-session-2.20.2/debian/patches/90_autoconf-autoheader.patch @@ -0,0 +1,4569 @@ +--- gnome-session-2.20.2.orig/configure 2007-11-27 01:05:37.000000000 +0100 ++++ gnome-session-2.20.2/configure 2007-11-28 10:58:16.000000000 +0100 +@@ -1,6 +1,6 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.60 for gnome-session 2.20.2. ++# Generated by GNU Autoconf 2.61 for gnome-session 2.20.2. + # + # Report bugs to . + # +@@ -12,7 +12,8 @@ + ## M4sh Initialization. ## + ## --------------------- ## + +-# Be Bourne compatible ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -21,10 +22,13 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ ++ + + + # PATH needs CR +@@ -217,7 +221,7 @@ + else + as_candidate_shells= + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH ++for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +@@ -235,7 +239,6 @@ + # Try only shells that exist, to save several forks. + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { ("$as_shell") 2> /dev/null <<\_ASEOF +-# Be Bourne compatible + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -244,10 +247,12 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ + + : + _ASEOF +@@ -255,7 +260,6 @@ + CONFIG_SHELL=$as_shell + as_have_required=yes + if { "$as_shell" 2> /dev/null <<\_ASEOF +-# Be Bourne compatible + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -264,10 +268,12 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ + + : + (as_func_return () { +@@ -514,19 +520,28 @@ + as_mkdir_p=false + fi + +-# Find out whether ``test -x'' works. Don't use a zero-byte file, as +-# systems may use methods other than mode bits to determine executability. +-cat >conf$$.file <<_ASEOF +-#! /bin/sh +-exit 0 +-_ASEOF +-chmod +x conf$$.file +-if test -x conf$$.file >/dev/null 2>&1; then +- as_executable_p="test -x" ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' + else +- as_executable_p=: ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' + fi +-rm -f conf$$.file ++as_executable_p=$as_test_x + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -721,36 +736,36 @@ + # Factoring default headers for most tests. + ac_includes_default="\ + #include +-#if HAVE_SYS_TYPES_H ++#ifdef HAVE_SYS_TYPES_H + # include + #endif +-#if HAVE_SYS_STAT_H ++#ifdef HAVE_SYS_STAT_H + # include + #endif +-#if STDC_HEADERS ++#ifdef STDC_HEADERS + # include + # include + #else +-# if HAVE_STDLIB_H ++# ifdef HAVE_STDLIB_H + # include + # endif + #endif +-#if HAVE_STRING_H +-# if !STDC_HEADERS && HAVE_MEMORY_H ++#ifdef HAVE_STRING_H ++# if !defined STDC_HEADERS && defined HAVE_MEMORY_H + # include + # endif + # include + #endif +-#if HAVE_STRINGS_H ++#ifdef HAVE_STRINGS_H + # include + #endif +-#if HAVE_INTTYPES_H ++#ifdef HAVE_INTTYPES_H + # include + #endif +-#if HAVE_STDINT_H ++#ifdef HAVE_STDINT_H + # include + #endif +-#if HAVE_UNISTD_H ++#ifdef HAVE_UNISTD_H + # include + #endif" + +@@ -942,6 +957,7 @@ + CC + CFLAGS + LDFLAGS ++LIBS + CPPFLAGS + CPP + CXX +@@ -1063,10 +1079,10 @@ + -disable-* | --disable-*) + ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=no ;; + + -docdir | --docdir | --docdi | --doc | --do) +@@ -1082,10 +1098,10 @@ + -enable-* | --enable-*) + ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ +@@ -1279,19 +1295,19 @@ + -with-* | --with-*) + ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package| sed 's/-/_/g'` ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=\$ac_optarg ;; + + -without-* | --without-*) + ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/-/_/g'` ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=no ;; + + --x) +@@ -1580,12 +1596,15 @@ + Specify default window manager + --with-rsh-command=COMMAND + Specify the command for executing a remote shell ++ --with-settings-daemon=PATH ++ Specify the path to gnome-settings-daemon + + Some influential environment variables: + CC C compiler command + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory ++ LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor +@@ -1673,7 +1692,7 @@ + if $ac_init_version; then + cat <<\_ACEOF + gnome-session configure 2.20.2 +-generated by GNU Autoconf 2.60 ++generated by GNU Autoconf 2.61 + + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, + 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +@@ -1687,7 +1706,7 @@ + running configure, to aid debugging if configure makes a mistake. + + It was created by gnome-session $as_me 2.20.2, which was +-generated by GNU Autoconf 2.60. Invocation command line was ++generated by GNU Autoconf 2.61. Invocation command line was + + $ $0 $@ + +@@ -2111,7 +2130,7 @@ + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. +@@ -2277,7 +2296,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2412,7 +2431,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2452,7 +2471,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2647,7 +2666,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2687,7 +2706,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2744,7 +2763,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2785,7 +2804,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue +@@ -2843,7 +2862,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2887,7 +2906,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -3028,7 +3047,7 @@ + # in a Makefile. We should not override ac_cv_exeext if it was cached, + # so that the user can short-circuit this test for compilers unknown to + # Autoconf. +-for ac_file in $ac_files ++for ac_file in $ac_files '' + do + test -f "$ac_file" || continue + case $ac_file in +@@ -3056,6 +3075,12 @@ + test "$ac_cv_exeext" = no && ac_cv_exeext= + + else ++ ac_file='' ++fi ++ ++{ echo "$as_me:$LINENO: result: $ac_file" >&5 ++echo "${ECHO_T}$ac_file" >&6; } ++if test -z "$ac_file"; then + echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +@@ -3067,8 +3092,6 @@ + fi + + ac_exeext=$ac_cv_exeext +-{ echo "$as_me:$LINENO: result: $ac_file" >&5 +-echo "${ECHO_T}$ac_file" >&6; } + + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. +@@ -3246,27 +3269,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else + echo "$as_me: failed program was:" >&5 +@@ -3321,27 +3327,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -3376,27 +3365,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -3432,27 +3404,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -3568,27 +3523,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg + else + echo "$as_me: failed program was:" >&5 +@@ -3821,7 +3759,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_XGETTEXT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -3861,7 +3799,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGMERGE="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -3901,7 +3839,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_MSGFMT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -3963,7 +3901,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_INTLTOOL_PERL="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -4043,27 +3981,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + DATADIRNAME=share + else + echo "$as_me: failed program was:" >&5 +@@ -4134,27 +4056,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_bind_textdomain_codeset=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4163,7 +4069,7 @@ + ac_cv_func_bind_textdomain_codeset=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +@@ -4181,7 +4087,7 @@ + esac + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + +@@ -4242,27 +4148,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_strerror=$ac_res + else + echo "$as_me: failed program was:" >&5 +@@ -4271,7 +4161,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_strerror+set}" = set; then + break +@@ -4315,7 +4205,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -4355,7 +4245,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -4412,7 +4302,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -4453,7 +4343,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue +@@ -4511,7 +4401,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -4555,7 +4445,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -4675,27 +4565,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4750,27 +4623,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4805,27 +4661,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -4861,27 +4700,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4997,27 +4819,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg + else + echo "$as_me: failed program was:" >&5 +@@ -5215,17 +5020,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -5259,17 +5057,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + # Broken: success on invalid input. + continue + else +@@ -5334,17 +5125,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -5378,17 +5162,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + # Broken: success on invalid input. + continue + else +@@ -5443,7 +5220,7 @@ + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue ++ { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue + # Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP + case `"$ac_path_GREP" --version 2>&1` in +@@ -5525,7 +5302,7 @@ + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue ++ { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue + # Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP + case `"$ac_path_EGREP" --version 2>&1` in +@@ -5621,27 +5398,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -6408,7 +6168,7 @@ + ;; + *-*-irix6*) + # Find out which ABI we are using. +- echo '#line 6411 "configure"' > conftest.$ac_ext ++ echo '#line 6171 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +@@ -6532,27 +6292,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + lt_cv_cc_needs_belf=yes + else + echo "$as_me: failed program was:" >&5 +@@ -6561,7 +6305,7 @@ + lt_cv_cc_needs_belf=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' +@@ -6645,27 +6389,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -6728,27 +6455,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -6784,17 +6494,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -6886,7 +6589,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -6930,7 +6633,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -7043,27 +6746,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else + echo "$as_me: failed program was:" >&5 +@@ -7118,27 +6804,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cxx_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -7173,27 +6842,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -7229,27 +6881,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cxx_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -7452,17 +7087,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_cxx_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -7496,17 +7124,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_cxx_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then + # Broken: success on invalid input. + continue + else +@@ -7571,17 +7192,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_cxx_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -7615,17 +7229,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_cxx_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_cxx_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ }; then + # Broken: success on invalid input. + continue + else +@@ -7666,7 +7273,7 @@ + ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_f77_compiler_gnu + if test -n "$ac_tool_prefix"; then +- for ac_prog in g77 f77 xlf frt pgf77 cf77 fort77 fl32 af77 f90 xlf90 pgf90 pghpf epcf90 gfortran g95 f95 fort xlf95 ifort ifc efc pgf95 lf95 ftn ++ for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. + set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +@@ -7684,7 +7291,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_F77="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -7710,7 +7317,7 @@ + fi + if test -z "$F77"; then + ac_ct_F77=$F77 +- for ac_prog in g77 f77 xlf frt pgf77 cf77 fort77 fl32 af77 f90 xlf90 pgf90 pghpf epcf90 gfortran g95 f95 fort xlf95 ifort ifc efc pgf95 lf95 ftn ++ for ac_prog in g77 xlf f77 frt pgf77 cf77 fort77 fl32 af77 xlf90 f90 pgf90 pghpf epcf90 gfortran g95 xlf95 f95 fort ifort ifc efc pgf95 lf95 ftn + do + # Extract the first word of "$ac_prog", so it can be a program name with args. + set dummy $ac_prog; ac_word=$2 +@@ -7728,7 +7335,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_F77="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -7835,27 +7442,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_f77_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else + echo "$as_me: failed program was:" >&5 +@@ -7898,27 +7488,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_f77_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_f77_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -8373,7 +7946,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AR="${ac_tool_prefix}ar" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -8413,7 +7986,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_AR="ar" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -8469,7 +8042,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -8509,7 +8082,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_RANLIB="ranlib" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -8565,7 +8138,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -8605,7 +8178,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -8922,11 +8495,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:8925: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:8498: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:8929: \$? = $ac_status" >&5 ++ echo "$as_me:8502: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9190,11 +8763,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9193: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:8766: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:9197: \$? = $ac_status" >&5 ++ echo "$as_me:8770: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -9294,11 +8867,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:9297: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:8870: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:9301: \$? = $ac_status" >&5 ++ echo "$as_me:8874: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -9774,27 +9347,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -9808,7 +9365,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -9849,27 +9406,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -9883,7 +9424,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -10791,7 +10332,7 @@ + libsuff= + case "$host_cpu" in + x86_64*|s390x*|powerpc64*) +- echo '#line 10794 "configure"' > conftest.$ac_ext ++ echo '#line 10335 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +@@ -11152,27 +10693,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dl_dlopen=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11181,7 +10706,7 @@ + ac_cv_lib_dl_dlopen=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -11263,27 +10788,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_shl_load=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11292,7 +10801,7 @@ + ac_cv_func_shl_load=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 +@@ -11342,27 +10851,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dld_shl_load=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11371,7 +10864,7 @@ + ac_cv_lib_dld_shl_load=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -11443,27 +10936,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_dlopen=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11472,7 +10949,7 @@ + ac_cv_func_dlopen=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 +@@ -11522,27 +10999,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dl_dlopen=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11551,7 +11012,7 @@ + ac_cv_lib_dl_dlopen=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -11602,27 +11063,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_svld_dlopen=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11631,7 +11076,7 @@ + ac_cv_lib_svld_dlopen=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -11682,27 +11127,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dld_dld_link=yes + else + echo "$as_me: failed program was:" >&5 +@@ -11711,7 +11140,7 @@ + ac_cv_lib_dld_dld_link=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -11767,7 +11196,7 @@ + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext < conftest.$ac_ext <&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -12988,7 +12401,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -13030,27 +12443,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_cxx_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_cxx_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -13064,7 +12461,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -14235,11 +13632,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14238: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:13635: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:14242: \$? = $ac_status" >&5 ++ echo "$as_me:13639: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -14339,11 +13736,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:14342: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:13739: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:14346: \$? = $ac_status" >&5 ++ echo "$as_me:13743: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -14875,7 +14272,7 @@ + libsuff= + case "$host_cpu" in + x86_64*|s390x*|powerpc64*) +- echo '#line 14878 "configure"' > conftest.$ac_ext ++ echo '#line 14275 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +@@ -15930,11 +15327,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:15933: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:15330: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:15937: \$? = $ac_status" >&5 ++ echo "$as_me:15334: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -16034,11 +15431,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:16037: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:15434: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:16041: \$? = $ac_status" >&5 ++ echo "$as_me:15438: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -16504,27 +15901,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_f77_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -16538,7 +15919,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -16569,27 +15950,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_f77_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_f77_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -16603,7 +15968,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -17511,7 +16876,7 @@ + libsuff= + case "$host_cpu" in + x86_64*|s390x*|powerpc64*) +- echo '#line 17514 "configure"' > conftest.$ac_ext ++ echo '#line 16879 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +@@ -18285,11 +17650,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18288: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:17653: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:18292: \$? = $ac_status" >&5 ++ echo "$as_me:17657: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -18553,11 +17918,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18556: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:17921: $lt_compile\"" >&5) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&5 +- echo "$as_me:18560: \$? = $ac_status" >&5 ++ echo "$as_me:17925: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. +@@ -18657,11 +18022,11 @@ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` +- (eval echo "\"\$as_me:18660: $lt_compile\"" >&5) ++ (eval echo "\"\$as_me:18025: $lt_compile\"" >&5) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&5 +- echo "$as_me:18664: \$? = $ac_status" >&5 ++ echo "$as_me:18029: \$? = $ac_status" >&5 + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized +@@ -19137,27 +18502,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -19171,7 +18520,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -19212,27 +18561,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + + aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } + }'` +@@ -19246,7 +18579,7 @@ + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi + +@@ -20154,7 +19487,7 @@ + libsuff= + case "$host_cpu" in + x86_64*|s390x*|powerpc64*) +- echo '#line 20157 "configure"' > conftest.$ac_ext ++ echo '#line 19490 "configure"' > conftest.$ac_ext + if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? +@@ -21390,7 +20723,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GLIB_GENMARSHAL="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -21480,27 +20813,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + has_option=yes + else + echo "$as_me: failed program was:" >&5 +@@ -21644,7 +20960,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -21687,7 +21003,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -21899,7 +21215,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_ESD_SERVER="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -22155,7 +21471,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GCONFTOOL="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -22265,7 +21581,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GCONF_SANITY_CHECK="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -22315,7 +21631,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GNOME_KEYRING_DAEMON="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -22488,17 +21804,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + # We can compile using X headers with no special include directory. + ac_x_includes= + else +@@ -22521,7 +21830,7 @@ + # See if we find them without any special options. + # Don't add to $LIBS permanently. + ac_save_LIBS=$LIBS +- LIBS="-lXt $LIBS" ++ LIBS="-lX11 $LIBS" + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -22550,27 +21859,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + LIBS=$ac_save_LIBS + # We can link X programs with no special library path. + ac_x_libraries= +@@ -22583,7 +21876,7 @@ + do + # Don't even attempt the hair of trying to link an X program! + for ac_extension in a so sl; do +- if test -r "$ac_dir/libXt.$ac_extension"; then ++ if test -r "$ac_dir/libX11.$ac_extension"; then + ac_x_libraries=$ac_dir + break 2 + fi +@@ -22591,7 +21884,7 @@ + done + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi # $ac_x_libraries = no + +@@ -22646,12 +21939,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 . . . . +- case `(uname -sr) 2>/dev/null` in +- "SunOS 5"*) +- { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 ++ { echo "$as_me:$LINENO: checking whether -R must be followed by a space" >&5 + echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6; } +- ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" +- cat >conftest.$ac_ext <<_ACEOF ++ ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ++ ac_xsave_c_werror_flag=$ac_c_werror_flag ++ ac_c_werror_flag=yes ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext +@@ -22679,44 +21972,20 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_R_nospace=yes ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ { echo "$as_me:$LINENO: result: no" >&5 ++echo "${ECHO_T}no" >&6; } ++ X_LIBS="$X_LIBS -R$x_libraries" + else + echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_R_nospace=no +-fi +- +-rm -f core conftest.err conftest.$ac_objext \ +- conftest$ac_exeext conftest.$ac_ext +- if test $ac_R_nospace = yes; then +- { echo "$as_me:$LINENO: result: no" >&5 +-echo "${ECHO_T}no" >&6; } +- X_LIBS="$X_LIBS -R$x_libraries" +- else + LIBS="$ac_xsave_LIBS -R $x_libraries" +- cat >conftest.$ac_ext <<_ACEOF ++ cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext +@@ -22744,48 +22013,30 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then +- ac_R_space=yes ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then ++ { echo "$as_me:$LINENO: result: yes" >&5 ++echo "${ECHO_T}yes" >&6; } ++ X_LIBS="$X_LIBS -R $x_libraries" + else + echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +- ac_R_space=no ++ { echo "$as_me:$LINENO: result: neither works" >&5 ++echo "${ECHO_T}neither works" >&6; } + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext +- if test $ac_R_space = yes; then +- { echo "$as_me:$LINENO: result: yes" >&5 +-echo "${ECHO_T}yes" >&6; } +- X_LIBS="$X_LIBS -R $x_libraries" +- else +- { echo "$as_me:$LINENO: result: neither works" >&5 +-echo "${ECHO_T}neither works" >&6; } +- fi +- fi +- LIBS=$ac_xsave_LIBS +- esac ++fi ++ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ ++ conftest$ac_exeext conftest.$ac_ext ++ ac_c_werror_flag=$ac_xsave_c_werror_flag ++ LIBS=$ac_xsave_LIBS + fi + + # Check for system-dependent libraries X programs must link with. +@@ -22834,27 +22085,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -22902,27 +22137,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dnet_dnet_ntoa=yes + else + echo "$as_me: failed program was:" >&5 +@@ -22931,7 +22150,7 @@ + ac_cv_lib_dnet_dnet_ntoa=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -22984,27 +22203,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dnet_stub_dnet_ntoa=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23013,7 +22216,7 @@ + ac_cv_lib_dnet_stub_dnet_ntoa=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -23026,7 +22229,7 @@ + fi + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$ac_xsave_LIBS" + +@@ -23101,27 +22304,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_gethostbyname=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23130,7 +22317,7 @@ + ac_cv_func_gethostbyname=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_gethostbyname" >&5 +@@ -23179,27 +22366,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_nsl_gethostbyname=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23208,7 +22379,7 @@ + ac_cv_lib_nsl_gethostbyname=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -23261,27 +22432,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_bsd_gethostbyname=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23290,7 +22445,7 @@ + ac_cv_lib_bsd_gethostbyname=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -23373,27 +22528,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_connect=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23402,7 +22541,7 @@ + ac_cv_func_connect=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5 +@@ -23451,27 +22590,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_socket_connect=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23480,7 +22603,7 @@ + ac_cv_lib_socket_connect=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -23556,27 +22679,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_remove=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23585,7 +22692,7 @@ + ac_cv_func_remove=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_remove" >&5 +@@ -23634,27 +22741,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_posix_remove=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23663,7 +22754,7 @@ + ac_cv_lib_posix_remove=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -23739,27 +22830,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_shmat=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23768,7 +22843,7 @@ + ac_cv_func_shmat=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_shmat" >&5 +@@ -23817,27 +22892,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ipc_shmat=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23846,7 +22905,7 @@ + ac_cv_lib_ipc_shmat=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -23910,27 +22969,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_ICE_IceConnectionNumber=yes + else + echo "$as_me: failed program was:" >&5 +@@ -23939,7 +22982,7 @@ + ac_cv_lib_ICE_IceConnectionNumber=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -24005,27 +23048,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_Xau_XauFileName=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24034,7 +23061,7 @@ + ac_cv_lib_Xau_XauFileName=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -24093,27 +23120,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_Xrandr_XRRUpdateConfiguration=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24122,7 +23133,7 @@ + ac_cv_lib_Xrandr_XRRUpdateConfiguration=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -24157,27 +23168,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_header_X11_extensions_Xrandr_h=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24258,27 +23252,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24314,17 +23291,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24422,27 +23392,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + am_cv_val_LC_MESSAGES=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24451,7 +23405,7 @@ + am_cv_val_LC_MESSAGES=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5 +@@ -24507,27 +23461,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24563,17 +23500,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24669,27 +23599,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + gt_cv_func_ngettext_libc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24698,7 +23612,7 @@ + gt_cv_func_ngettext_libc=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +@@ -24741,27 +23655,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + gt_cv_func_dgettext_libc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24770,7 +23668,7 @@ + gt_cv_func_dgettext_libc=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + + fi +@@ -24846,27 +23744,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -24875,7 +23757,7 @@ + eval "$as_ac_var=no" + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + ac_res=`eval echo '${'$as_ac_var'}'` +@@ -24940,27 +23822,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_bindtextdomain=yes + else + echo "$as_me: failed program was:" >&5 +@@ -24969,7 +23835,7 @@ + ac_cv_lib_intl_bindtextdomain=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -25018,27 +23884,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_ngettext=yes + else + echo "$as_me: failed program was:" >&5 +@@ -25047,7 +23897,7 @@ + ac_cv_lib_intl_ngettext=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -25096,27 +23946,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_dgettext=yes + else + echo "$as_me: failed program was:" >&5 +@@ -25125,7 +23959,7 @@ + ac_cv_lib_intl_dgettext=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -25173,41 +24007,25 @@ + ; + return 0; + } +-_ACEOF +-rm -f conftest.$ac_objext conftest$ac_exeext +-if { (ac_try="$ac_link" +-case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_link") 2>conftest.er1 +- ac_status=$? +- grep -v '^ *+' conftest.er1 >conftest.err +- rm -f conftest.er1 +- cat conftest.err >&5 +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in ++_ACEOF ++rm -f conftest.$ac_objext conftest$ac_exeext ++if { (ac_try="$ac_link" ++case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac + eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 ++ (eval "$ac_link") 2>conftest.er1 + ac_status=$? ++ grep -v '^ *+' conftest.er1 >conftest.err ++ rm -f conftest.er1 ++ cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_ngettext=yes + else + echo "$as_me: failed program was:" >&5 +@@ -25216,7 +24034,7 @@ + ac_cv_lib_intl_ngettext=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -25265,27 +24083,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_intl_dcgettext=yes + else + echo "$as_me: failed program was:" >&5 +@@ -25294,7 +24096,7 @@ + ac_cv_lib_intl_dcgettext=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -25389,27 +24191,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -25418,7 +24204,7 @@ + eval "$as_ac_var=no" + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + ac_res=`eval echo '${'$as_ac_var'}'` +@@ -25565,27 +24351,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -25594,7 +24364,7 @@ + eval "$as_ac_var=no" + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + ac_res=`eval echo '${'$as_ac_var'}'` +@@ -25655,7 +24425,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -25743,27 +24513,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + CATOBJEXT=.gmo + DATADIRNAME=share + else +@@ -25835,27 +24589,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_bind_textdomain_codeset=yes + else + echo "$as_me: failed program was:" >&5 +@@ -25864,7 +24602,7 @@ + ac_cv_func_bind_textdomain_codeset=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5 +@@ -25885,7 +24623,7 @@ + esac + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$glib_save_LIBS" + INSTOBJEXT=.mo +@@ -26038,27 +24776,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -26233,27 +24954,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -26289,17 +24993,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -26492,27 +25189,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -26552,27 +25233,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + LIBWRAP_NSL="-lnsl" + else + echo "$as_me: failed program was:" >&5 +@@ -26581,13 +25246,13 @@ + LIBWRAP_PATH="" + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$OLD_LIBS" + + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS="$ORIG_LIBS" + if test -n "$LIB_NSL"; then +@@ -26694,27 +25359,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -26723,7 +25372,7 @@ + eval "$as_ac_var=no" + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + ac_res=`eval echo '${'$as_ac_var'}'` +@@ -26782,27 +25431,10 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + have_ipv6=yes + else + echo "$as_me: failed program was:" >&5 +@@ -26881,27 +25513,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_func_getaddrinfo=yes + else + echo "$as_me: failed program was:" >&5 +@@ -26910,7 +25526,7 @@ + ac_cv_func_getaddrinfo=no + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_func_getaddrinfo" >&5 +@@ -26965,27 +25581,11 @@ + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (case "(($ac_try" in +- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; +- *) ac_try_echo=$ac_try;; +-esac +-eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +- (eval "$ac_try") 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_Lib=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -26994,7 +25594,7 @@ + eval "$as_ac_Lib=no" + fi + +-rm -f core conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -27037,7 +25637,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_AWK="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -27082,7 +25682,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -27147,7 +25747,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_RSH_COMMAND="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -27178,6 +25778,30 @@ + + + ++{ echo "$as_me:$LINENO: checking for gnome-settings-daemon" >&5 ++echo $ECHO_N "checking for gnome-settings-daemon... $ECHO_C" >&6; } ++ ++# Check whether --with-settings-daemon was given. ++if test "${with_settings_daemon+set}" = set; then ++ withval=$with_settings_daemon; SETTINGS_DAEMON_PATH="$with_settings_daemon" ++else ++ SETTINGS_DAEMON_PATH=`pkg-config --variable=binary gnome-settings-daemon` ++ if test x$SETTINGS_DAEMON_PATH = x ; then ++ { { echo "$as_me:$LINENO: error: No path found to gnome-settings-daemon." >&5 ++echo "$as_me: error: No path found to gnome-settings-daemon." >&2;} ++ { (exit 1); exit 1; }; } ++ fi ++ ++fi ++ ++{ echo "$as_me:$LINENO: result: $SETTINGS_DAEMON_PATH" >&5 ++echo "${ECHO_T}$SETTINGS_DAEMON_PATH" >&6; } ++ ++cat >>confdefs.h <<_ACEOF ++#define SETTINGS_DAEMON_PATH "$SETTINGS_DAEMON_PATH" ++_ACEOF ++ ++ + + GNOME_SESSION_TARBALL=`date +%e` + +@@ -27376,7 +26000,8 @@ + ## M4sh Initialization. ## + ## --------------------- ## + +-# Be Bourne compatible ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -27385,10 +26010,13 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ ++ + + + # PATH needs CR +@@ -27612,19 +26240,28 @@ + as_mkdir_p=false + fi + +-# Find out whether ``test -x'' works. Don't use a zero-byte file, as +-# systems may use methods other than mode bits to determine executability. +-cat >conf$$.file <<_ASEOF +-#! /bin/sh +-exit 0 +-_ASEOF +-chmod +x conf$$.file +-if test -x conf$$.file >/dev/null 2>&1; then +- as_executable_p="test -x" ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' + else +- as_executable_p=: ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' + fi +-rm -f conf$$.file ++as_executable_p=$as_test_x + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -27640,7 +26277,7 @@ + # values after options handling. + ac_log=" + This file was extended by gnome-session $as_me 2.20.2, which was +-generated by GNU Autoconf 2.60. Invocation command line was ++generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -27669,7 +26306,7 @@ + Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit +- -V, --version print version number, then exit ++ -V, --version print version number and configuration settings, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions +@@ -27693,7 +26330,7 @@ + cat >>$CONFIG_STATUS <<_ACEOF + ac_cs_version="\\ + gnome-session config.status 2.20.2 +-configured by $0, generated by GNU Autoconf 2.60, ++configured by $0, generated by GNU Autoconf 2.61, + with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + + Copyright (C) 2006 Free Software Foundation, Inc. +--- gnome-session-2.20.2.orig/config.h.in 2007-11-28 10:58:23.000000000 +0100 ++++ gnome-session-2.20.2/config.h.in 2007-11-28 10:58:32.000000000 +0100 +@@ -108,6 +108,9 @@ + /* Define to the version of this package. */ + #undef PACKAGE_VERSION + ++/* Defines the path to the gnome-settings-daemon binary */ ++#undef SETTINGS_DAEMON_PATH ++ + /* Define to 1 if you have the ANSI C header files. */ + #undef STDC_HEADERS + --- gnome-session-2.20.2.orig/debian/patches/08_ubuntu_use_apport_on_crash.patch +++ gnome-session-2.20.2/debian/patches/08_ubuntu_use_apport_on_crash.patch @@ -0,0 +1,41 @@ +diff -Nur gnome-session-2.19.6/data/gnome-session.schemas.in gnome-session-2.19.6.new/data/gnome-session.schemas.in +--- gnome-session-2.19.6/data/gnome-session.schemas.in 2007-07-30 22:07:16.000000000 +0200 ++++ gnome-session-2.19.6.new/data/gnome-session.schemas.in 2007-08-02 10:57:10.000000000 +0200 +@@ -67,5 +67,16 @@ + This is the option that will be selected in the logout dialog, valid values are "logout" for logging out, "shutdown" for halting the system and "restart" for restarting the system. + + ++ ++ /schemas/apps/bug-buddy/run_on_crash ++ /apps/bug-buddy/run_on_crash ++ gnome ++ bool ++ false ++ ++ Run bug-buddy on crash ++ Whether to run bug-buddy on crash or let apport-gtk been used ++ ++ + + +diff -Nur gnome-session-2.19.6/gnome-session/main.c gnome-session-2.19.6.new/gnome-session/main.c +--- gnome-session-2.19.6/gnome-session/main.c 2007-08-02 10:57:09.000000000 +0200 ++++ gnome-session-2.19.6.new/gnome-session/main.c 2007-08-02 10:57:23.000000000 +0200 +@@ -190,12 +190,17 @@ + gchar *path; + const gchar *old_env; + gchar *new_env; ++ GConfClient *gconf_client; + + path = g_find_program_in_path ("bug-buddy"); + if (!path) + return; + + g_free (path); ++ ++ gconf_client = gsm_get_conf_client (); ++ if (!gconf_client_get_bool (gconf_client, "/apps/bug-buddy/run_on_crash", NULL)) ++ return; + + old_env = g_getenv ("GTK_MODULES"); + if (old_env) --- gnome-session-2.20.2.orig/debian/patches/90_from_bugzilla_fix_session_sounds.patch +++ gnome-session-2.20.2/debian/patches/90_from_bugzilla_fix_session_sounds.patch @@ -0,0 +1,156 @@ +--- gnome-session-2.20.0/gnome-session/gsm-sound.c.esd 2007-09-17 20:36:00.000000000 +0200 ++++ gnome-session-2.20.0/gnome-session/gsm-sound.c 2007-09-21 11:43:24.000000000 +0200 +@@ -11,6 +11,9 @@ + + #include + #include ++#include ++#include ++#include + + #define ENABLE_SOUND_KEY "/desktop/gnome/sound/enable_esd" + #define ENABLE_EVENT_SOUNDS_KEY "/desktop/gnome/sound/event_sounds" +@@ -56,33 +59,20 @@ sound_events_enabled (void) + } + + #ifdef HAVE_ESD +-static GPid esd_pid = 0; +- +-static void +-reset_esd_pid (GPid pid, +- gint status, +- gpointer ignore) +-{ +- if (pid == esd_pid) +- esd_pid = 0; +-} +- + static void + start_esd (void) + { +- gchar *argv[] = {ESD_SERVER, "-nobeeps", NULL}; ++ const char args[] = ESD_SERVER " -terminate -nobeeps"; + GError *err = NULL; + time_t starttime; + +- if (!gsm_exec_async (NULL, argv, NULL, &esd_pid, &err)) ++ if (gnome_execute_shell (NULL, args) == -1) + { + g_warning ("Could not start esd: %s\n", err->message); + g_error_free (err); + return; + } + +- g_child_watch_add (esd_pid, reset_esd_pid, NULL); +- + starttime = time (NULL); + gnome_sound_init (NULL); + +@@ -94,19 +84,80 @@ start_esd (void) + } + } + +-static void +-stop_esd (void) ++ ++static gboolean ++load_login_sample_from (const char *file, ++ gboolean *isset) + { +- gnome_sound_shutdown (); ++ char *key; ++ char *sample_file; ++ int sample_id; + +- if (esd_pid) +- { +- if (kill (esd_pid, SIGTERM) == -1) +- g_printerr ("Failed to kill esd (pid %d)\n", esd_pid); +- else +- esd_pid = 0; +- } ++ if (!file) ++ return FALSE; ++ ++ key = g_strconcat ("=", file, "=login/file", NULL); ++ sample_file = gnome_config_get_string (key); ++ g_free (key); ++ ++ if (sample_file && isset) ++ *isset = TRUE; ++ else if (isset) ++ *isset = FALSE; ++ ++ if (sample_file && *sample_file && *sample_file != '/') ++ { ++ char *tmp_sample_file; ++ tmp_sample_file = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_SOUND, sample_file, TRUE, NULL); ++ g_free (sample_file); ++ sample_file = tmp_sample_file; ++ } ++ ++ if (!(sample_file && *sample_file)) ++ { ++ g_free (sample_file); ++ return FALSE; ++ } ++ ++ sample_id = esd_sample_getid (gnome_sound_connection_get (), "gnome-2/login"); ++ if (sample_id >= 0) ++ esd_sample_free (gnome_sound_connection_get (), sample_id); ++ ++ sample_id = gnome_sound_sample_load ("gnome-2/login", sample_file); ++ ++ if (sample_id < 0) ++ { ++ g_warning ("Couldn't load sound file %s\n", sample_file); ++ return FALSE; ++ } ++ ++ g_free (sample_file); ++ ++ return TRUE; + } ++ ++#define SOUND_EVENT_FILE "sound/events/gnome-2.soundlist" ++ static gboolean ++load_login_sample (void) ++{ ++ char *s; ++ gboolean loaded; ++ gboolean isset; ++ ++ s = gnome_util_home_file (SOUND_EVENT_FILE); ++ loaded = load_login_sample_from (s, &isset); ++ g_free (s); ++ ++ if (isset) ++ return loaded; ++ ++ s = gnome_program_locate_file (NULL, GNOME_FILE_DOMAIN_CONFIG, SOUND_EVENT_FILE, TRUE, NULL); ++ loaded = load_login_sample_from (s, NULL); ++ g_free (s); ++ ++ return loaded; ++} ++ + #endif /* HAVE_ESD */ + + static gboolean +@@ -127,14 +178,14 @@ sound_init (void) + return FALSE; + } + +- return TRUE; ++ return load_login_sample(); + } + + static void + sound_shutdown (void) + { + #ifdef HAVE_ESD +- stop_esd (); ++ gnome_sound_shutdown (); + #endif + } + --- gnome-session-2.20.2.orig/debian/copyright +++ gnome-session-2.20.2/debian/copyright @@ -0,0 +1,31 @@ +This package was debianized by Jim Pick jim@jimpick.com on Sat, 14 Mar +1998 20:12:23 -0800. Taken over by Raphael Hertzog + on Wed, 22 Sep 1999 13:24:34 +0200, and taken +over again by James LewisMoss on October 26, 1999. + +It was downloaded from . + +Upstream Authors and Copyright Holders: + Tom Tromey + Felix Bellaby + Ralph Mor, X Consortium + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + --- gnome-session-2.20.2.orig/debian/postinst +++ gnome-session-2.20.2/debian/postinst @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + +if [ "$1" = configure ]; then + update-alternatives --install /usr/bin/x-session-manager \ + x-session-manager /usr/bin/gnome-session 50 \ + --slave /usr/share/man/man1/x-session-manager.1.gz \ + x-session-manager.1.gz /usr/share/man/man1/gnome-session.1.gz + update-alternatives --install /usr/share/images/desktop-base/desktop-splash \ + desktop-splash /usr/share/pixmaps/splash/gnome-splash.png 10 + update-alternatives --install /usr/share/images/desktop-base/desktop-splash \ + desktop-splash /usr/share/pixmaps/splash/gnome-debian-splash.png 10 +fi + +#DEBHELPER# --- gnome-session-2.20.2.orig/debian/watch +++ gnome-session-2.20.2/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://ftp.gnome.org/pub/gnome/sources/gnome-session/([\d\.]+)[02468]/gnome-session-([\d\.]+)\.tar\.gz --- gnome-session-2.20.2.orig/debian/gnome.desktop +++ gnome-session-2.20.2/debian/gnome.desktop @@ -0,0 +1,88 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=GNOME +Name[az]=GNOME +Name[be]=GNOME +Name[ca]=GNOME +Name[cs]=GNOME +Name[cy]=GNOME +Name[da]=Gnome +Name[de]=GNOME +Name[el]=GNOME +Name[es]=GNOME +Name[et]=GNOME +Name[fi]=Gnome +Name[fr]=GNOME +Name[he]=GNOME +Name[hi]=गनोम +Name[hu]=GNOME +Name[it]=GNOME +Name[ja]=GNOME +Name[ko]=그놈 +Name[lt]=GNOME +Name[mn]=ГНОМЕ +Name[ms]=GNOME +Name[nl]=GNOME +Name[nn]=GNOME +Name[no]=GNOME +Name[pl]=GNOME +Name[pt]=GNOME +Name[pt_BR]=GNOME +Name[ro]=GNOME +Name[ru]=GNOME +Name[sk]=GNOME +Name[sl]=GNOME +Name[sq]=GNOME +Name[sr]=Гном +Name[sr@Latn]=Gnom +Name[sv]=GNOME +Name[tr]=GNOME +Name[uk]=GNOME +Name[vi]=GNOME +Name[wa]=GNOME +Name[zh_CN]=GNOME +Name[zh_TW]=GNOME +Comment=This session logs you into GNOME +Comment[az]=Bu iclas sizi GNOME'a daxil edəcək +Comment[be]=Гэтая сэсыя завядзе вас у GNOME +Comment[ca]=Aquesta sessió entra en GNOME +Comment[cs]=Toto sezení vás přihlásí do GNOME +Comment[cy]=Mae'r sesiwn hwn yn eich mewngofnodi i GNOME +Comment[da]=Denne session logger dig på Gnome +Comment[de]=Diese Sitzung meldet Sie an GNOME an +Comment[el]=Αυτή η συνεδρία σας εισάγει στο GNOME +Comment[es]=Con esta sesión accede a GNOME +Comment[fi]=Tämä istunto kirjaa sisään Gnomeen +Comment[fr]=Cette session vous connectera dans GNOME +Comment[he]=תצורת הפעלה זו מחברת אותך ל GNOME +Comment[hi]=यह सत्र गनोम में लॉगिन होगा +Comment[hu]=Ez a környezet a GNOME-ba jelentkeztet be +Comment[it]=Sessione di lavoro con GNOME +Comment[ja]=GNOME セッションにログインします +Comment[ko]=GNOME세션으로 로그인합니다 +Comment[lt]=Ši sesija prijungia Jus į GNOME +Comment[mn]=Энэ суултаар та ГНОМЕ руу нэвтрэнэ. +Comment[ms]=Sesi ini akan log anda ke GNOME +Comment[nl]=Deze sessie meldt u aan bij GNOME +Comment[nn]=Denne økta loggar på GNOME +Comment[no]=Denne sesjonen logger deg inn til GNOME +Comment[pl]=Sesja logowania do GNOME +Comment[pt]=Esta sessão inicia-o no GNOME +Comment[pt_BR]=Logar no ambiente GNOME +Comment[ro]=Această sesiune vă va loga în GNOME +Comment[ru]=Начать сеанс GNOME +Comment[sk]=Toto sedenie vás prihlási do prostredia GNOME +Comment[sl]=Ta seja vas prijavi v GNOMe +Comment[sq]=Kjo seancë do t'ju fusë në GNOME +Comment[sr]=Ова сесија вас пријављује на Гнома +Comment[sr@Latn]=Ova sesija vas prijavljuje na Gnoma +Comment[sv]=Denna session loggar in dig i GNOME +Comment[tr]=Bu oturum ile GNOME'a giriş yaparsınız +Comment[uk]=Сеанс роботи в середовищі GNOME +Comment[vi]=Session này cho bạn đăng nhập vào GNOME +Comment[zh_CN]=此会话使您登录到 GNOME +Comment[zh_TW]=選取這個作業階段後會進入 GNOME 環境 +Exec=/usr/bin/gnome-session +# no icon yet, only the top three are currently used +Icon= +Type=Application --- gnome-session-2.20.2.orig/debian/gnome-session.install +++ gnome-session-2.20.2/debian/gnome-session.install @@ -0,0 +1,5 @@ +#debian/gnome-wm usr/bin +debian/default.session usr/share/gnome +debian/gnome.desktop usr/share/xsessions +debian/55gnome-session_gnomerc etc/X11/Xsession.d +debian/gnome-debian-splash.png usr/share/pixmaps/splash --- gnome-session-2.20.2.orig/debian/gnome-session-remove.1 +++ gnome-session-2.20.2/debian/gnome-session-remove.1 @@ -0,0 +1,45 @@ +.\" Copyright (C) 2006 Sven Arvidsson +.\" +.\" This is free software; you may redistribute it and/or modify +.\" it under the terms of the GNU General Public License as +.\" published by the Free Software Foundation; either version 2, +.\" or (at your option) any later version. +.\" +.\" This is distributed in the hope that it will be useful, but +.\" WITHOUT ANY WARRANTY; without even the implied warranty of +.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +.\" 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. +.TH gnome-session-remove 1 "2007\-05\-05" "GNOME" +.SH NAME +gnome-session-remove \- Remove or list applications in the current +GNOME session +.SH SYNOPSIS +.B gnome-session-remove +.RI [ OPTION... ] +.RI PROGRAM... +.SH DESCRIPTION +.B gnome-session-remove +can be used to list registered applications in a GNOME session or remove them. +.SH OPTIONS +.TP +.B \-\-list +List registered clients, then exit +.TP +.B \-\-display=DISPLAY +X display to use +.P +.B gnome-session-remove +also accepts the standard GNOME and GTK options. +.SH AUTHORS +.B gnome-session-remove +was written by Tom Tromey Mark McLoughlin and others. +.P +This manual page was written by Sven Arvidsson , +for the Debian project (but may be used by others). +.SH SEE ALSO +.BR "gtk-options" (7), +.BR "gnome-options" (7) --- gnome-session-2.20.2.orig/debian/control +++ gnome-session-2.20.2/debian/control @@ -0,0 +1,56 @@ +Source: gnome-session +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Josselin Mouette +Uploaders: Debian GNOME Maintainers , Josselin Mouette , Loic Minier , Sebastian Dröge +Standards-Version: 3.7.2 +Build-Depends: cdbs (>= 0.4.41), + quilt, + liborbit2-dev (>= 2.10.2-1.1), + intltool (>= 0.35.0), + libgnomeui-dev (>= 2.10), + libgconf2-dev (>= 2.10.1-6), + esound, + libgnomecanvas2-dev (>= 2.10), + libesd0-dev (>= 0.2.26), + libgnomevfs2-dev (>= 2.10), + gnome-pkg-tools (>= 0.10), + debhelper (>= 5.0.13), + libx11-dev, + libxt-dev, + libice-dev, + libsm-dev, + libxrender-dev, + libxrandr-dev, + libxmu-dev, + libxau-dev, + libwrap0-dev, + libnotify-dev (>= 0.2.1), + libgnome-desktop-dev, + sharutils, + libdbus-glib-1-dev (>= 0.35), + libgnome-keyring-dev (>= 0.5.1), + libgnome-settings-daemon-dev (>= 1:2.21.2-0ubuntu2), + libglib2.0-dev (>= 2.13.0), + libgtk2.0-dev (>= 2.11.1) + +Package: gnome-session +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-control-center (>= 1:${gnome:Version}), + gnome-power-manager +Recommends: gnome-panel, + nautilus, + metacity | sawfish, + dbus, +Conflicts: bug-buddy (<< 2.20) +Provides: x-session-manager +Suggests: gnome-user-guide | gnome2-user-guide, + desktop-base +Description: The GNOME 2 Session Manager + This package contains an X11-compliant "session manager" (similar to xsm) + with GNOME extensions. When you log out, the session manager will save the + state of all your GNOME 2 apps. When you log back in, the session manager + will restore your session. --- gnome-session-2.20.2.orig/debian/rules +++ gnome-session-2.20.2/debian/rules @@ -0,0 +1,46 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +include /usr/share/gnome-pkg-tools/1/rules/gnome-version.mk +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +DEB_CONFIGURE_EXTRA_FLAGS += --localstatedir=/var/lib \ + --with-window-manager=metacity \ + --enable-ipv6 \ + --with-at-spi-registryd-directory=/usr/lib/at-spi + +LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed + +%: %.uue + uudecode -o '$@' '$<' + +SPLASH := debian/gnome-debian-splash.png + +common-build-arch:: $(SPLASH) + +clean:: + rm -vf $(SPLASH) + +clean:: + rm -vf \ + gnome-session/default.session \ + gnome-session/default.wm \ + gnome-session/session-properties.desktop \ + gnome-session/gnome-session.schemas + +binary-post-install/gnome-session:: + # fix bogus ${prefix} in manpages + cd debian/gnome-session/usr/share/man/ && \ + sed \ + -i \ + 's#\$${prefix}#/usr#g' \ + man5/default.session.5 \ + man1/gnome-session.1 + + mkdir -p debian/gnome-session/usr/share/icons/gnome/48x48/apps + for f in debian/pixmaps/*.uue; do \ + uudecode $$f -o debian/gnome-session/usr/share/icons/gnome/48x48/apps/`basename $$f .uue`; \ + done --- gnome-session-2.20.2.orig/debian/gnome-debian-splash.png.uue +++ gnome-session-2.20.2/debian/gnome-debian-splash.png.uue @@ -0,0 +1,1034 @@ +begin 644 debian/gnome-debian-splash.png +MB5!.1PT*&@H````-24A$4@```:0```$E"`8```"KH)9(````!F)+1T0`_P#_ +M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U@D%%"XP!(SU +M_0``(`!)1$%4>)SLO5>7)$EVY_>_YJ%3Z])=JG7W]$B,P`(#S,XL=X8'Y^PY +MNR`_`%_Y/7CXQ'<>OO"!+^0A(79`2&*P,\`"F)Z>UKI4EZ[4(C(RI%\^F%TS +M0=.Q;AT5E\&(J/7/>04P<&4&XVL5C='ZW^V*7%T=N?ZPE9)O=;H6&4#]015?+2P,W9FG!:.N3XX*1@F%T]?O+LF]/QJE +M*ZD+'09&/'H#&8Q.D+QVO@(`&*CJ[!9+^&)Y1?O)D^+I#5,A@-)QD,,IDW-(% +MI+92^')Y&:!TYIS3(AF,>G]P:W$1C5QN4+'4)ST*&(E(DV4P&DXR +M&&5R%!(!TGZA@%N+2T^K+T +M(;E"!J/A)(-1)DS,X]S;X>VM_'2VBKNS3T;6E(&H^&: +M\8O=7%Q"2PV`TE.$$0"HD#%]<)"N<$+;&8R&DPQ&F1R'*`!8V=O#9+.!W6() +M]6%--B=0,A@-UTQ2L9M+2PA[!;8\91B)G-O9Z=6!OB<;!D84>_5K=X@N=+7; +MU39WO\U@-&P+HQ7*8/3T1`'`_;DY?+&\\DRL..^HNJ>U>IW%@Z'X:;$JPE/()0LEPB;^XBS[1,T9@Q=%3'/8;D<$H?:$, +M1D]'ILL!_M./7AVP*O*420:C],VD/=-G/I1.&(P`H-#I(`C#5"=+TE#\SQ@, +MGS`.&3ZF6`,C3&1+XHNE+7:O)"W,=:@;5'VUM,0KC!W)8#2P4`:CIR?G9@LH +M%H+!J8-.BV0P2M_,4&V"G#/+`DX:3`"]""^6*UVM6W-9?944>U'ZI(M[)4TP+%F.O;: +M30)+PHL3C*+==0VT6`!F6HR!2I>D+D#);TD]BOZ27C(897*<D@Y;0I!RBY!HKT)'*Z(>69A%'W +MO"!]W4R.7*ZOE/%XIP7F%-F^3[)D,$K?S&%@)+_>FYL?J=6CAI'(F=T]H\%1 +M9&1VYC<9ZKOAXX.'"+#^)'/`FMSDU<>CT_OR7'V2ESB96.MR;.''(`]24M\" +MRMCWHG"R>(MHB&FDSYB=ZN).-(Q&K9O)D8LBX/)B"8^V=/:54PND#$;IFQD' +MC$0^.W,F=:N)@]P1C@+S!P=N`!X`(4((>(._!0\1V$+'?"::E_#$P"+Z5YCV`4B/MDKFZL:?\+DB`D``KUI^1I +M/7#?*VMT([8!"?`UF0AQE'EY(.OQ.7S0A;HMVWX<;+X1+@8H$E\7L3DNO3;U +M/+->M[\I*AF,,GF:XT('1I3,D:%(%! +M[+<#`S+E8"6@LNU[VI2^^`B@6#1!`R9?<_)->A0#4P:C3)ZFY`/"I84B;CXY +MI4#*8)2^F:."DVMV(0$L"P-Z8SE/APB,`D +M\&$00@,-@0V\&9\^P+3J-BLM?8I4$101$! +MH0.8=[?,#W:_ZCN",%JBMV0PRN2(Y/)2"=NU-K9K'7OLU``I@U'Z9HX:1B*? +MK:P,*#%J9[JE"T3<#2)`'Y]N-"*F.*TDA6;`]K0D`R#M(_*BZ>*0`46NPS\G +MNZ:@$EYQ=U2TKX!%A(&<6T4+#U*AZYOI'T'9]Y%[(7ZG")R<65`N)4ECZI(, +M1ID'&DWKDV*D`4@:C],T<%XP``$38F)CH76)(G\MIWKA^*M!_I&@]^^;4$EF3,@0(N=S&F3^R!D"BB +M15FK8FBT-4^+(]&:#-PHXE!R8')'7/!#M`_=DL$HDW%(*:]P=K:(6ZO1!,DG +M'DBG&T8R(@U5?>0.'2N,C*Q-324G81W'*)`$(O&FF.]%'$12X4RU:LUQ#D)F +M(-=#.+HT'WD)C"!CMYC]D.(E!/..2?O>,>TV(I"*` +M9B=P8K+GD/MEP02&'W'H:TSN7IOKSF"4R1'+M>42GNPTL=^(IOTZT4`Z_3`: +MNOJ0'PQ5I&>EWM@'S[62YL(Q%" +M\$UM$B!@QND;^*Z91Q:GDM4/V"Q/3QI0&B)Q+`!71<\24*'"" +M@Y/U<7E@$E\4FPME-@N"&7#!#QX\8KT>[=NNS$PFD#$;IFWK: +M,!+Y:F'A4*.`A4Y/\UP?$"D/1&:L540Q@+CV(UH0=\/'M[[%K]D'D3*:2^(+ +M2<$-KG$+%;#U(RF!A/*U(W>SI;H%JL#2@U-$:V+W5FMR":8\N48V6E?,C"=! +M]/VXVWV7O-\R&&42DVLK)=S;:*#1[GY2)PY(&8S2-W528"0'[_<(!1\HW@`H +MYC7=)%L?4:*60\;L%89FX*6N9I?V]JPF9*U_\F'D]5P?'.>IS&1,MHG"9@8 +MLA&-->,I-J8_?=3I;/TD@U$F@^5Z;#&L+R<*2!F,TCZ*8:6ZG7';`DA0_9J`^*!0P?U"#=960:Y@\S +MC]Q@[J\=LI]Y21=L+CF;$LA9P1Q^I&FYM_IE-2?EF?#D3I"#E%5@V"A.Y/KI +MVHW"2<#$$7.>LK#S?4P@@$-SC\6_9&^UKRUQQ(27+!F,,ADL"Y,Y3!0#?+7> +M;:X#3A"0,ABE;^IH8#3B>6,';RTNIFK+#T807Y'\[MY3]'LAQ!#3'!'6)J=P +M>WY!^TU$8S`C]MWY>70"9;0L`9QORA(-R`.0!QX+'3@SG/BT(FF'G(H3>>^G +M$HJ&C2>%.D1-=^QI4^1%SP%.>S+VNZA93WGYZV(:DYCR9"&NCIF,$H^6!' +M*3"1<K'G(][)V=HI:XV"C,1='(8^OO1QCK39#TX63`*?)#`92@QZ[36IX:D(X,1H>I/Z!B!J/TG;FYX'Q)?LBU +MU9!\T'@V*"*8P=-H1YSX-=^)<_,";+FP&$E@]'S(Y.E`"\L%O'1O5K?/#Q\-'G%'1Z7N3(2NYP%"4G,@==G +M#V(]X!31FES-")B@C,8G[SUZN,`'";@(W7WQ[KTUL\IS"@%6[D%QM-E4WY%1 +M"V0P.GWRYH4)W%EOH-KH]"UW[$#*8)2^J=,*(S/&X>[<0A>,(K\3P"%;$YV\ +M!XD/PVE%,B2*R`#MM\>L(^MDD"VWVQ%M*`E"=N#V``0BD#+;40B`2&L51-K( +M%5.F!K\,3)+,=[YYS<''79^N+[O6>EXI#TXV(X4')FNFE-MF@"=*C^0C4LH$ +M+GB%?!.>/+9(VCTBH`,=["!;:2`=E#(8/5]2R!%>.EO&AW>K`\L>*Y`R&*5O +MZK3#B$#H!&Z+!-]G)#`"(P:CT)KHV)CKM%:DU]&\L+7IF:A,N^1\*&34@/UB +M"?#V-[+NF!B$1`L22`F`K-\')A0;XE-B+ZV/?B7O$IOPD@['U!.K^?BMRGN* +M`DI:<(N=1"M+!I.&D02"B!8I3\?K$KP)@)#%FO`8,%%X+##SOQ0AAH)2!J/G +M3UX[7\':;@OKU?;`LL<")&;.8#1$4Z<51O*3+):`K^;G>\)(_$6$[HP,=F9/ +M;L%FN=VQ[6KSEH&1S3*@S_UH9@8$1K58C&A#21#B&(0$0"0=C)CIG-DL<9=8 +M63AK%]#*9R'TAH#N!;]/$>`D0$K`:P'EKE=N!H&ZP<1D-2M`@XF]RI%DLHKL +MN:(F/-DR70<[A*)E,MGL#FFAE,'H^1-%.ICAPWO[ZVH+7E$5Z5LQ@ +ME+XSGK$G`B,0<%`HFC)>E!8C`@B[Z3@Y=)F1VKX7TUVIU02!,%,[@`*#8Z8L +M/0XKM'-ZB9TR`ZZ`2.!BC[OQ.$%3\G9R]&P`!`H:8;F4!%->:/#!!;J&NZ1;;>NUY&2:LNNJ;\&S]T#Q5;=(4 +M3:D7E)RG;(BO4@:C9U*NKY31:(6XM]D[U-N7(P52!J,T'PQ5I&>EDP"CB"E' +MCY(@`!L3%=](U`6CN+^(2$Q]GB9A/K^\N85<)\29ZBZNKZ["[9**B&GNP=P< +MIAMU2#HA!QK77F1-D:_]P`W4%CHRM/O:DOG/C[2+OMC+7.=`9H'`#E;PLT10 +M%%`N))XL.,G\(V!R[;,M9S4QL[I6`&2UV)BVY)Z;RW&GBTEH.,#&3!B'D@0Z +M0!D-UH-2!J/G5[YV*;UV!!PAD#(8I?E@J"(]*YT8&/D#G-65&!L3D[:.#R,F +MDZXFYB^2/7M\;4O6Q(`(US;6[+')1L,"Q,*+@%80:#\0L]%BG(9C533R(&2T +M%44F&@]&2S(K9,GON]]>PLLNSO7-;-Y+PL8C6I=H:J`HH*QY$+8@]0&3O<<` +MQ*/$\$VILOF?:)1LS9YD*0/8[3;,WP2Q@M64$J"DS9<^E/3SZY$AIOM+--Q' +MF9P"N3A?1"&G<"-AWZ->S\S:=@5"\L#%5\("`)G9QT`!P&2-(*]? +MR3?++FI-NE\LU)('2.9K(OB&NT;3MY`=,!E>QYR5S94W#;"Y1C;G)`JMJ9!# +MK2WI6T`.8.1N+9MG%+U$@H:27K2LP-JG1`![6[^+N<]N$Q)O)GY3AOLHDU,B +M;UZ4,Q@&H`1DN>T)XV5W4H%*WN[]GPRY1>HD#(@,J?S37F^1B%A%:*D``![ +M^WQW;_D=I9$`SH'&_S5FXK*`@H63^'_DNA@RX),#$X`07AH@J6S!1/86RK-A +M8B@6'YY^#S89&.1<[$T@6!#LH$3$)F.X"W@@(H0>E&T>O:0O48)D,#K]LC"9 +MP])T'G_WT=90]<8*I-,&HV*KA>6]/92;S=%;2E%ELMG`BVNK`("#?!Z/IZ;1 +MR.=/-8SD=VM6,S]DL)1!7J\S(@VD:A4,;4AR,((U.?DPB$/F%F[&_T8G2"'8J>#9A!XVHW3ADCIJU`05`D:8,M+&C=S6@FA +MSW<28.1FO%ZG/'C`F&[L-@D,=(B0`[HTHRB,?&V"['LVHZG37J0L8;+91*-8 +MM.>6E#=$P..9*2S4]O%X>AH6='"F.!=Y9B!D&E=&:0L%7!X9E!UU?9IX482> +MA+`CM*=):8U%?#Y6__(N+(0&A6U5UEI!PR4T#BT!D\":33NB5(80B#@BZ.LQ +M)CRE@:8H-&8WT]%0,G]W0TFW83!&ROB@V&J_.NNXJ6^SA)NKYMY?MPQ&SX9, +M%@-<7BSB__S7M:'KC@5(IP)&S+B\N8EBNV4K'S>,XE7G:S7,UVJH%HIZMU7J +M'M#BE4X4C")F*&\X-LYM[3S7F3J9@(V)22Q7]P;`R&E-TI28JF2T)G=*`,!L +MXP";TU.>M@4;;58O%#"YLVN!XH,(<)%G@(.0K$UB&/B0.Z\=V+UGY7\:OU^* +M_;4_3H50YJ#57N"B#4,PE,61^4S>^6`*39B!(A"[G:3@;J\W.8`N8^HR*VC# +MFM82M99E`APL>/I`"0"Q0$D'?X1V,@*K'9N;"(0>&!,D@]&S(V]@/[ +MC8$A+5UR:""=!AA=V-["1*,1J?BT8>3+9+.!5U:?]-:83B",DOQ&UI1E%Q8I +M;_`"-B7ZH`<]K2\%9B,@MXVWT79,P7HA[P4G>%J2 +M]Q((Z;YJZ"BO4)?V8R'5_4=GT$^4\)DL!*L4<:HTV=FMM[-1:>+)=QYWUFIDCD#/AH=NO9*/E +M##@DV[I`26"L-2]SOUF99\_NN#7WR>,SNK0Y61Q+&8R>'2D$A)?/5O#S=S=& +MJG\H()UT&,WO[V.INM=5<5PP:N9RV"\4T%;*O`(0&$$8(@@9^4X'$\TF"IUV +MJK.)QG1O=@[[Q6*//O?H3+HN#ULUL5AOOY$;Z65\$R>Y!8H?V@V7+ZW+3-<7 +M1J:\.:<8MEQ&`3]8@;$Z,X/%:A4;D]/6)J?LN4WF-X$0N0':78_S*^GK]L#E +M@RK*COA'W@%][6QO%ADMTH_N3,A@]6_+*.9TF:"-%FJ`D&1E()QI&S'AY]4EBQ>%A1&@KA=6I +M*>R62B-WRB]2:39Q?GL;BL/XO!L`<'%["R$1OEC4.Z2>%!C9F6UD%F]=__I? +ML^['PB@2*LUHY@LHM%L8"48Q,Y[]7"DH#LV`#J^,ADI'*U9VUS$ +MHZ\)V?Y8"+$U2;G/$TQ//HS@_^(7%97);*L.!W=S]^R]TO$<^ET(QL)$`7_X +MQC*^]L)L*@CYLCA=Q$^_>19?>V$&_^O?W<+>00<4NMXR,51(")4V`T:A))J- +MP;X)J``S%"D-*',39>&L'WG'$D$!F#;EYG`&HV=,%`%O7)S`+S_;&;F-D8!T +MDF'4I15Y%=/"J*,4-BH3V)J8&%QC2!@!0*U0P)?>KJJSM1H6]ZO(A<[\HT+& +M*ZM/\-7L'&JB+0USTEZE#J$9)9GJ]'&VQVV*&IGQ&W.>1+4]F9K"Q>T-3V-@ +M&7WUD2%@1&14FI`Q4S_`3F72:D6NGO[9"0+GTS*G%:,A2#FSG6>6TIJ86QL% +MVTV.`#3B8TI6*>V@+.N#'-W=OJO6'"?:(PA!0/AW7S^+[UR;&QI$<3F_4,'_ +M^-,7\3__R2<(O0S?^MH9BGM!B<`4&C\5K%;$(;MH2`;8;-IGPQ+E7BA=QJY/ +M0BSJ+I-G0JZME%%OA;B?,DU0D@P-I),,HZOKZ\AW8JKB$#!Z,C7M%K2F.?<( +M,$J2[4H%VY4*P(SI>AWG=O0,@QFXM+6%6J&`N_/S0[0X?ABYP2/!5.?M6,IF +MP#?,TL.M(NL,/\A+^+4;=",!#'+A/6`DYBM_MUA2A)EF`SL3DYZIS0R*I,?# +MN_,+J#2;J!6+4%8Y<&8]P)FEK`9$@"P@%=6*#'0O+)7QPE(%DR4=OK]9;>#3 +M^[O8.^AAJG!-@F7?5H);L^6-SI(S;GZJ@#_^_D6LS/;0S$>0I>DBOGEE'F_? +MVM3!$*%,"-B9U534?(=0C)QL'JIH/&2B\>1Y*W,]$G"A[VG($FCB3(^9CO3L +MR9L7ATL3E"1#`>G$PH@9+Z^N=I=,!2/"ETM+"!,6K?8]]YA@%.T*8;=4QFZI +M###CI=4G(-8FOE<>/\9G9U92-7-D,)+9L)BQ`,A4UV;K-@.6OX^0]8\`8`KL +M6'9\[R'@)&(-L7((&ZBZ@`;&6?]05XXMVY4(NKT"$2D4RP%%@1F*/9R +M"Z6%4;58Q,;D)"YO;NC<;@RPR69J^V&CV(`@#"TTR>@A`DJGJ$4A)+`$`7_T +M[?-X_>),SWNDB/#CMU;0[H1X_\ZVN6_RC[X0$Q`(@:08Z62]$H%P>7D2?_S] +M"\@%1Y-JI0:8*2)-4W_EF"45L%N+&TC-L+BR<71IYT +ME,*-I27<6EP$`+RTN@H5)L?W'P6,K'&-NN^FM;#9$=TI4)'T0=KF8P?\@T+! +MM^E%%KVFUXP(4ZT6VKD`>^4R`$*QTP*1V>_(^(44W'JHCV*+=P-MM-*`&5(B@#X\E2#O_Q +M^Q>0/P(SG2\'S8[3+S*Y)1)/B!\Z\HD_O7&[J&U(V``D$XJC,",ZR8W7+RBM8AX+6U6)O#YRIF^ +MIJZ!YWZ*,/+ER?0T/EM9P8MK:\AU.KWKCL5,YVM'HLW``L*:[*!<5!H,:"!! +M`N)=,*8=)M2*)<@5F^VH```@`$E$050`*#XF`'9?'ZM-231=!$82R:?;+[;: +M(`(>S,YALMGT3'0,L`0IV#`"S-8/C`;D-"(!$8@-A,B"))=3^.'K+B(RK9R; +M*T,1(2!W#AF;G5:F+U8`]>^_<1:5XI$DX(_(X^UZ)(C"AQ*#NZ`D*>O(9'.P +M]CS)D.XYRNQ&A69QDBR89:^./B79+UBF)9U>^?H+D]C>;^/NQNB1=2)3E4)O +M()U8&`'=:XQ,18X?`.'+I66L34VE:/7DP\@*$3Y?6<'9W9WDYS0FS0A(T([@ +MQA592^,BM,Q=5QZ(O(%78-$H!*8#GI8$9^:S-BT;'.'#R(NR`^%L=1<$1J-0 +MP+8)TU=@`,IH.B8_@=)@:.4"$"L#!DX`D=;81(.YNC*!0GYXC>7L7,FVI\SU +MN'8=]`10KUVBP$!)AYBP?>;R.P&>IN-%)UK3G;D0 +M.&"Q>4;^@E\!'8!,2SKE,ED,\/J%"O[EQN[@P@-DHJCP[=?.4>)?VDF&T=4> +M9KHXC-I!@,]75E)I17W/?=)@Y,G=N7G,UV)AEF,ST\6THU"&&LFIYLQG;LV. +M'WDGVI(SU=E11U/+!+?%@QAT`9+W-G6"890'(Q"0[W3LN3MB4F0$A\13!BW`Y&OO2@"7CD_1/);3Y:FB_8^`LX_1L1>'\D"Z@=#F`0/ +M(R$SWKFUY3;I(V_+:B^SPZ@;A +M7*!P=<7M=CN,=$*&4H:[1DL*R#LG'*"N+$]@?BJ^^/EHY+/[N]C<:VB-R&JO +MRFUWSH`UIQHM,\ET9Y^Q)Q+J+QJ3V^X=J;6D3$Z'+$_G<7&AB-_(`H +MTMK6_2=['#%8GV08@1DK>S'5,`%&=^?F=1172CG-,!)IY7)CAY$&CTGU8I44 +MEYW!:4>>-B0/A&0&;$3">V7'5R;SWIL7B\G'PD[,>6;&#=A9O:.D[L?YG6W< +M65J*P$@#E'%IL8*7SDUC:::`9BO$9P]V\?#V.JK%D@60F"-MN#+IB+.)DAIY +M'5"]%3H$*[FG9&^N'=*9\C#KD,*`>,G +MDI!PJ\Z81R-8TA,/2,R/YG'02M$O=EVZY!.-(P`N\&=7S$.H\^75^Q@F$:>!1@-TYGTFI$9 +MF`R,""ZIIG;MZ'QU,`LF=?+,T&9DZ#H3NV`'T;1\4Y#,I.6A1OU&%'VD!D9* +M0O/@UAB%2ED8%0+@)V^=Q3=B@_TK%Z9QX\(T_ORWCQ"&PD`9:"7T60^@AUF4 +M6F^%NH_V%LAZ*P#'>HLI3W\EW&)9>/<`UK3G!\!DXE0>NS5MY3$+!DXVC(C9;8IF*L9A='-QZ?`PXEX?I*B;LM))AY&4E9U! +M`;.;1)&E$[5"3S2L>3>3DRJ!THM@W[ZUA\[AE2/D`\)T*7;MB +M#K7@X3A@!`#7UM,PNK6PB'80I&[ON`;V>*73`".I(,$,;`"B)[%F@-&C +MC#;%V,]D()&!Q>5&(QF8X#0?9ZISH[9=-.GM%R0!"S*;CRA+!,C"E@",B48# +M`3'^^`<7L3#`)_/-JW,H%5S`@[(#M#Z#4D#Q$$#:.VA!!;I[?K"$,@$5B@C% +MG,(K%T8+FAA6-JM-?')WU]U/@GU.<(_`9E00+8DD.B$D6PZ`>YY*PEP"F'7)O1J#K)I!`%EPMB`*"S@GN:!@"[AZR_,8+J2'WB=A9S"MZ_/&Q`Y +M+4\'(>@_C`Z//C@^W#JP4716.Q)=Q(S7B].%(\E5%Y,P6IN<0BO3C(:KFZ(" +MD]L2P9EBC)8CF^"9K`P^>"0;M-MZS@Q4L@>.!S"[4-(`SPY#H?%+=9GJ8K-I +MZ(&3[`!)6)^9Q@]>3;^(]8U+LC^2F*MD:%901-C>;PYJ(E&:[1#K>TV[(%:1 +MO]C606IN(GWPS6'D'SY>P]V-`Q?$`4`TV+CISN+*4W)(RGK:$^!@9+5E;XIA +MS;APVK+[5I&;8$3,=K#?P4Q/.GGR[2N3>+#5P..=UEC:FZGHL7N[YB*GAP;2 +M<9GI7EKSUALEP*A6*VZ]HD&0P2E>![:]L_3T"';M\D4(S0,%,=3W0R(GM +MX.+-MGWMB%TA:XPCP$_V%C756>JYP1).JP(!A84IS$P,UHY$*L4<)DLY'9X- +M";A0%H+M,,1^??@U%H^W#LRE:*W(+I!5Y@6]0'9V\NB!=&=U'[_Z9!4*-NVV +M#2)Q48:BSJM&0&$>W/S7?6&.G<&HQX5 +M)%BAVUSGG._^@.:&*#'MV.%)%D"2/P,WPYDW*+)WPW1MK?FPF''2 +MKC,1ROGTVK+(LMEKB$AK14JQ,]L186L$+>G1UH'3C)3NL^FQA1$=@X94:[3Q +M)[]^``MU9GO_(<,^:XW0/35E-4Y/&;5:$DNT7,QDYS1C]W+UR9KM6+3:S&QW +MJN2[UZ;P\8,:=@\Z@PNGD%)>8:H48&TWJFVE!M)QP6BJ7D<@B4,3801\OIS. +M+.-F^Z-UZ'F#D:?+>.\]CJ=$+<6:M%_$:* +M"!00`B4*H&Y[=@AM;A3YS[]YB.I!VX*G'23HB61=P)GMO.#&[K,=B*9V>Y$R87Y(I:F\GCOSGC"O`'@[&P!J[O- +MKH2LZ;:?&/G#X0?(R8<.Q"9]I*T([?G3L169P98_3:'SDA9LB=+>0U8 +M3RO200W:O';CT7!_A%\^KJ+9"J-9("`YZWSS'3!=/CH@_?K+#=QX6`5!Y^G3 +MCXRA<_O!;AGB(B!=4E2G(47-1A9:G`]OI3-QL!_0WVT7`ELG3%@+P +MO>M3>.=.%/360.FU1X^WNZT/@[>?&/G#X0?(2YN;MF(2C`!*Y3?*8#1< +M!;]NLKE.'-9NUBN?"S*+)VY,V%#40FP,++>"\FQ1\#>01M/MM.U&S+CTWN[7I"$-@,&2O8^@J3P`Q&A +MT1[#0HX$>>_V%O[N@R'W^M(9&6F@-V#-AKM[B?K/DLV`TS44>Y%UIA(BVI%-O&:"#\3\!->)W5H;M<:000CD8*1,N]ID9_JK +M@"\?I7/DWEG=1[T5(E#DO;[2(>HL1H.XY\?S)Y.C)9 +M"O"=JU/XKU_L'B9W0D1RBG!^KHA[/;:KZ+W]1+]6CP!&2]6]OC!JY'(#%[\^ +M4S`:[O0C51A`'S0X^_&K'@8RDOVQ-=SK< +MV\%I]V"\0'KGUB;^]H,G]KZ1,N94N4=B)O.U)+D/HJEZU@B6XV#O#LND@^PS +M3C;;N;:2HNWE%)D]+?OC*#+Y\?("'"::U4>7B0A&;U5;/''C) +MVT_T:_$(8`0`\]7]GC`"@#L+_;6C#$;#54BJ:^W_#(!#:SUQN]7HP212EPCB +MW';#D3/729&XN8Y,_A@QU[$=``&Q&]J9N.?(X+AV9$Y#``IA![<>Q[;C&"#M +MCBS*U>\E1Y_XD@+H'&^__&0-K1ZY4CHAXY\^6T>CU3%^*#81=@2EE`,1Y+B^ +MIKV#PZ?M%WGGYB9^\>&:-9WI7'F>EF0VRI-<@U9+\L`NSXQ,0>W+T\^BRVP' +MX4:RV2[^#8N;[<2/Y#W";A]D)D]-WKA0P40QP+_>'-\BV%)>87$JWW_]0*6S\V@T6CCQL^_O-`U/^8E`F`EB9@5W?VVI]/!K2VSV'T;P$C*[%3(Y1 +M9LH!OG5E"G_Y_N98\M6)7%[4ZXY:?8(CHMM/]&OMB&`$!BYM;?9MZ=YL[_3\ +M&8R&JS"XKANE[-`C9C>38TXT&O[V%[[T\ +MV-\(`)O[3:C8OC\1&)<@'NKA]@N_88+Y^;PL7%"JKU%CZYMXLGVPV0"LRM +M\N^PLEH(,1O@D]Z"@0A/MNMHML.1TP?5&FW\XJ-5?/FP:O/1AJ*9DAY).#1: +M$BN$;I=%2`2EX%R[D,PQ9DF%"H&NDU!$8NV(#-'HG&V.H_=YN8#E$HQ<17D-Q":KCO!NE]J-A?CY19[YZ*O/7" +M!`HY&LO&>[Y<7BSAWD:C:]U17&2)0F\Y8AA-'QRX`PGR8&9VN/-F,$JLD$XS +MZO.)OSY)-LXQYK)(=H;X2-+UUOF/0C.26JV"@4(AAQ__A[=0+/5>HW/^A06\ +M_JU+$=^2U;PX1.N@@=_\^L[`*WZR74'];OIR%G#Z3N.;IHN[CNY\H:G<=\/;K]2!(VWOO[U?6= +M$1$BE6,V>K.+.J'PV_4F/KJ[T[>-#[_:M>`A`,KT0;=`$1AI+4AI`!$L9!3I +MX30`D".WWBB0W\UG`BKKIU*Z[YV0\:M/UP9&\37;(3[\:AO_US_=P_VUFMVA +M0^8)`)L]IV3[=X;-P,#H#@%G08Q^(K)=%46>B2<6;/``GA85R>N1>@4V1"(P +M,SD6403\P:NS^/#N/M;WQF>J4P1<6BCBSGJZZ-?>-HUC@!$`$/?VFCV8F4E_ +MW@Q&B172PBCI[Y_MO\Y9$W=J]PIHB#SCB-'&;]\,;+9-PMD+Z7(4%DMYO'!U +M$7>^7(40CPE0%``(T[%U-O[3=Q=WS=YY51DP%36G^5@ +M!&BM2'GV2(+;5MT.UM$+!X?ZM@2B7"J"8KV5-Y0"PA"-5HB_>>\QKJQ,X/+2 +M!*8K>>0#A6J]C=U:"[=7J[CY>!^M#EM_C/7=A':8AWP8?Y9B)`MCST">E`M` +M@,G4@6X_$J(&U[@?23]+[]D;;2G+2G,E`.B88+5;[AQ36BM%-UC(8#5?AL&8Z,=I$#@PAVI$OIB]RLVP[^'EE +MS<_%E:G4[;_X^CD#)+_?H8G*)(0,_/G;#_&=%Q?P.]?=SJP[M98.D?:T(P)L +MY!Z#S7HAL0@J*`,CO4T[.Q#9J#R.^H\`@!FAV=9=-$[%0&B")C242&^Y`<+- +MQ_OX\J$.6^^$(=B`*V08C8@CR[WT%NS>A((I\I@DFL]M`Q']V2]@@`U=!72^ +M'RE)DJ<<_3^UK7$6:?0C@E& +M`&-AOW +MGS*W.(E2I8!&HVTU'(+"QL24'W,3-QWM8GBYBLIS#9P]VT>G`^GHL +M2%C\/\[$I#4B+QDI,Y0)QK#)(XQFI&(7'D*;[1BDX0&]69Z&DFX[M.N]9#V4 +M&?P%/*Q-B:'NGJ[+!)O\E#4@(5J7/Z@3+`S%;&?OM'W6T4Z3*>SCJZ_$P_R- +M%;`[TL[*/09Y%ST1X6W.2Y#R3@@13ST2!*<]< +M*\UL;]5P*4T?C"RN3./!5V;9@#)S>#_JS$+Q +M:0$*2K0?LJ5U.X&G+9$$`)CK82`@N[4=H(`P)&.E8ZB0$9+Q5I&!E/3#W`S9 +M`E[&B\2IXXG2K]MTR'?CMS7";/AGS[RA2:;<8'=X=; +M4#Y(*@6%AA5]UB +MNX57'S\"^OCL#M/GH<2,:BH,$8_=VMD8SH:]L#1I@0@&-B3Y+IEH/B87`."9 +MN_S."'S(0D76(I$%C3(PTGXJ:.@9;09^8`/9FYH0.3F"'*:%C']' +M(V=F\GCE7`7_Y=/ML=YC`G!MI8P'FXV^BV")M+EP]Z!MR_5?J&%DW#`"L[?V +M*$GT7UL&H^$J]*M[=5VOY,^%86).0']UOFTLY2C2J^B@ZBITZV$D!NSNS34T +MZJV^8=^^S"UI9ZRH$?O%8I?I+-(GL;%!S&UD_2\6!N2&8!UYI[^+@8&6^,)L +MAG#C7U(!(:],\(,`RIRHU0G1;'70Z#":S8XVRQDHP&A6Q.+7$=^/Z80\6&>I +MB]Y'8G3,546"'#R)I31-+6GT*&?03=EFZK5(GA:8R5@EIPB__\HLWKF]AYTQ +M;;HGJNE_C5SW6,9V10[O#V*M' +M8=@72$ +MQCX/(_5S&HW=F9PR.3=7P(MGROB_WUX?:[OY@'!]I8P;3P[ZFNJFRP$"`M83 +M@BAZ`NDH8`0`I?:`15<,'"0E4SW!,$HL<4)@!'#D?H;*G]DFM#V$F2ZU)/2Y +MWVD.]AMX^U4MG*ZF2,*;YO)RBG!NH8P+"Q,X,UM$+A@MU]RP +M4LP'>.G<%%XZ-X6=_1:^>+2'SQ^DR+9\7)I1)J=>BCG"#U^9P;_>V$6U/EY3 +MW?65,M;W6MCNL^9HHJA0RBNL]L2ZF^*=>*J@#$:)A8?MW;Y99!PJ=6C3XJA#=;^ZT<_TNW_YAR\P/5O! +MPG+OQ;+KFX/#53F$V48")D!!8L@8I7R`5\]/X^7S4X+^/!>?$\[)_F` +M,#^1Q]INJ^_BV_3;3_23E#`"NGT8\>(=-=QT.H-1^M8?3<^@W0?XLCW"<*WV +MZ,V09KHD:;P\__&]>Q[E+R2F%;M:>>'8BCS=?F,'5 +ME/_VELD1V#MJSL06')VP/CLS3+8BDQS*;AG!D#5H +MV1+8DR%7ETMXY6P%?_K.>E__SK`2*."E,Q7<6:NCWDJ.G"X$A(6I/#:J+;0' +MI()(M_U$/QD"1KWJ^]((`>?W]_%!1#:*H#+&J#/G'3^ +MR5(.WWMY`9>7*D,D!ST9\IUK<]BK-7$CMBMNZ`W];KGL'??[R-W3&'>%]=*J-:[V"M +M1T+68EYK1AM[+313@#`'C`M&([224*5:*F8PZE'X,#!*8Z9+V/7(%DT]I*74 +MC.;V:S)*`3W*2`,<,G[[3S?QZ;MW\?*;%U&9**#5[N#CW]Y%>WH.#Z=GL%2K +MQJO963L1(5"$;UR9PS>NS!Y;D,*XA8CPP]>7<7?]+AK-MM90NA:0N4?@-H'0 +MJHQD6F`OI)S9)84*#;]DV_)Q2H:4IR/%/.$G;\SAO:^JN+3%[.6"PDPYA[7=P9J12*J%L8ER!#`"@/U\,?F#P55351IBR$Y7XAF! +M$9`\!`TZKY\JIVL=H\F!$_?=`(R9^@%VRF7,U!M(PI:TX1^M'[3PP=MW;)@V +MD0(SHYG+&8W+[,C*)@>=X<[EI0K^S:M+F*ZD6VQ[DB47*%P[,X%/_*TU1.N0 +ME!2A,9GQ(,->;W'[&3GSG-S?XX9+%HT^FA`!__:U.:SNM@:N"QI62GF%RTLE +M?/)@/]$G-%%4F"H%6-MK#K4-^FA3Q1%A9,TT?:IT^3BZ3SV\9#!*U1@#$9,* +MP_W#)DD=`=Y,>_0^!\Q8+U<0_289.Q],_K8^&\,!T?V46D$`!J-C>\8(%.$G +M7UO!S[YU[IF`D]E.F`>''FF/=&$.(1S!D6EUWV/6#IM +M*G,Y'YSV)?J9^R)E/D=V(+'K84ZM,P&XR0I#%R"56)T#W2 +M7?]EYC-^X^'S(==72GAQI8P_?6N1*&8R&Z$B_,84U#BL``"``241!5,M+56,3<'H^ +M#)WM0&-,AAT'-2?E9A.;$Q,H=EIZ+R#R9M8L^"&$"+U$GPEF/=(I=0B$MLJ! +M.@P*""\L5_"S;YY%J7#RPKC')8K(Y,EE.W`[0UOT9]?(8"@C3TI_:MX9",6_ +M!1S[&9T@F)^9$G0B9'$RA]]]:09_^]%65VJ>P\K5Y1)R`>'3!]TIA^8G2(>$D9[(CO:-S6`T7.LCPPAZGQZ[_8(QGT6W0>UNNF\LE,<2B7O+ +ML?XC";A[T(OH01)EQ0PHUSZ1F*;T8!R2;``(?.O:+'[_M:53%T$WK)")2+/? +MX6XXO0)A8S#[>;KNG_R,(GR93#V"OI7(43]8;]4KA9NCN1 +M-A41NC*_LRM#H0RVC*]=F<4/7U]^YF$$``AU\(9\FUTV;W+O&2[0(>(_XJC_ +MR!-FIU_99VH#1KPRGJ]1$L%&0!,QL_:7B,G1]BUU]4R,*`+^[>NS>+S=Q(?W +MQAO$<':V@(6I/#YY4(OXA10!2]-YM#H\E@W^!@-I3#!*79L9"]7JB&=SE7K# +M*'43HU1-B;O>[3Y5&,'WUI@ILPQF;%X)[=JYKQO'/#^YYW2W)CTMLP<'"/V% +MTJ*1>:)W5)7125[:"!C"F/L(>/'L)'[RM?YIAIX5"4-&LV-,,3*`0P9S?VI@ +M-,@0<"H2V\?J9@.ZG/4?B?;$"3O*]@IHZ"GF3++EA`6._V7I'[F7:5#IY'O7 +MIU'($7[Y^7B#&):F\C@_5\`G#_8CBVJ+.<+*3`'[C<[8MK`8&-(V+A@!Z!NP +M(#)?JV%IOWIJ8324'!6,AJ1B?-+0%2HL8/%V)I4Q16LQCE7=0HDS:S"`D,U. +MI&P\YAP9L,31+67!85<;S(SS\V7\T;?//1^:$8`'FP>HMT*GQ["`GCPM-QI= +M9W17/2DP$X.H_PC:1,K1U$KZ`U?6E7?W6MC2-\(NS=HFLV9,?\$(T1V',^DG +M+YTIX^IR"7_[X?;0D6W]9&XBA\M+)7SZL(9&RXT+4Z4` +M/J1QPRAE*\O5O0Q&0YZA"T:C=\,>9#/"1"+MO#%%FX+(\^=XRE0DL,&5M]N; +M`W;7TWA?7`"#@%'OQBKOK2/>^+IFIDOX3]^_>&H7NXXB-QZ;"1NS]1TQAT:C +M$3.;IZ5Z\-9OY4,=11*:9^AG4(A^IYS_*![W9LMW?9\Y4L*)@TS_"+L1;\YS +M*$O3>7S_Q6G\S8=;J#;&%\0P50IP?:6,SQ_5+'2(3/`"@">[S;$'LB3_%1\! +MC/3QP?.=#$;#G6'L,)+CUD\$.W#)3-<-7*Z\,\_%_4C.NP'`FNW*S9:=.',8 +M?X#.-$B(FNV8&?OY/`!&KMW&3[]U[IF.IHL+,^/6XZH&B3&SA7"*9$0[,@C7 +MGSE?G`M7@)E!]#+71?U';A%T?_]15%SHN#Q0)C/%Z:O)Q[XWF21*N:#PDS?F +M\)M;>XEAV*-*I:#PRKD*;CPYL.F&\@%AQ?B+UJOM(XFJ[-:0C@A&T78'UZ4P +M!`]8).M7>C9A-,2G"47[W<-^+2=.&SR['!O;#(GM3MKTW$[^.4@&(`"A,<6= +MW=YVFI6?OXY"X/'+ZO0(,S`#8<&\'+#8:##R@>"+^(T\[=L\_ZA,2LVPT +MAYVO]9+3W&PE]/^29H)``3]Y8P[W-QOX."$,>U0IY@FOGJ_@J_6Z#52H%!1F +M*CEL[K38]MO5C_\GG5CF6 +M%EQ[OGD0\EX^\;3JN-_)TDP"&A+\1U(JDVY1I&'4[C#^<8Q!#/F`\-JY"3S: +M;F+5;*(W6\EALA1@=;=YI#`"?"`=,8R&K9M+VJ8BH5(&(_=K?&N/)$TG;;\9 +MWBP;B)KI_,`"0)N"(H.('MY\GU$(MFMCINIU_1<%#8:\LUV`JBP*_P[-)!A,T`M[>YZ0--: +M$BG9(, +MZ(1OJC=.N?VDBK]]_W$7C.2VA!3J``>CSMA`!A.,PE9;"NVS\GU'2=J1.>#" +M(R):LBU]77LELOV +M/3'C_NQLRI9[GX@!$\EEWHLF))%9$;.='@`YE.@N/?,F<8J'NO[*WIYM*SX( +M27"#B^2+^I(:^0)",-ZX-#W,%9UJ>;!1P\_?>81V)ZX9Z9^A[S>"-M5%[Z'Q +MOP%@26>K:66?D5_"UXY"CJ\]`D!L`E"ZH^OLQGJF?-1<1^AIKLO6'Z62;UV> +MQ.6E(O[?]S9Q,"903!8#O'&A@D=;3:SMM;`R4T"CQ5@[)A-=7$9>O#$*C`"@ +MGLMG,!JR]7XP>FGU"6XL+D6.7=Y81SU?2-'R@&X8+4;,=O#-=I(1E0A$;H04 +M+\>7$"KYZOX"_?WQS;6J/92@ZOGJ_@SGH=K4YHM:)Q +MKF4:5D;:H&]4&`'`3JF$Z7H/4,>-)`\["`P`(B7%E<\-\H-Q9&)98-H"!Y7QD]`*% +MNW/S`("7ST\-!ID"BX*+AJ^8,4`2N][Y)ZQ^*:X75V/4H8"TF%A +M-*S(.IK3"*/!=0\'H\EZ'6N3DYY6`91:36R5*^.#D3E"8NQGP,9R"SQ,1@?V +M/[8#BWZOD0(HZX\2+4E9'Y+CDD1R"=<(;:705@J*&0M3S]Z&>R(;>PW\Y[4)'[S92>;Q@!P+F='7RQXK); +MO[BZBES8P2=GS@X\>Z^VDTYEY[[6%Z0'&8+29CM(#C78O'9V-F[V,"(FG-O> +MUMJ51-9UG9'LS-R&DIO!]^[<+(@)I8)"^1E-$_3I_5W\[0>/T6J[0=KN5V3O +MJ:3ST0>3-2/G([(PXFA&!KVG8FCJB*XD1E;Q_T2U([L[>EP[LC-K-PD)?2J1 +MVYO)YJ[S%\/*7WGH)CV9=@2?[>#^9F-PA0%"!+Q\IHRYR1QN +MK]:QMO=T@A8&22H@C5LSJA:*F&[4!U9B!F9K-6Q7*L.=M%>I9P1&`+!7*B+? +M:6-E=P]3YE[>7%@<>/9>;??KE4ND"F>[46)B(0,FV,&$C+D-K)/E+NQ7K6;E +MYB'B'PIM##(I>&8A7;@3*'1(`QZ/N-)$>XB:4S_PN,8/D46O`10$:E\G)#]?8=B0(= +MUXY41#NR&K:MH-O+S'7`XE0>_^[-.?S+C5W<7NLS3J:40`%O79I`*1_@PWM5 +M[-5/((F,#`32N&$$``]G9S']Y''?2O+E7JI6/2!E,!)Y-#,+%89HF8"&9A"@ +MD4^1N2"AW=1W548LDMQS9+:D"*V91R*KEG9W,%^K@:R6!+BA2H(:)$S+#:(` +M1TQWM^?G`1/@4"D\6QF]UW<;^,MW'^')=AWZ?I#-OB!AV5U:D2&^TWP,%$*D +M@I%37BBB.4FV<*LL6=A(J]05@!"/JHL>CVM',/8Z%\P`Z:=I(N*??$YEMA+@ +MIU^;P[M?5?'YHW3!7_UDHJCPS;NR=2*_*E+Y".`D9I*OG6/+V( +MDE,;EI\'&(F$2N')]#3VBD7L%PJ#*XP,(]B!@VP\@O$EL`X9!I']K-QH8.'@ +MP$;D$5@/9G"38=V8\3>9M,]BSK-.=06$%&C?$Q$ZX\J1\I2EW0GQSU]LX.TO +M-]%A@0X,\WT0P:TI@F@R;.'!MKQ4]GQ&/6$D((!K'UY4G0&#"V3P\M[!F?)D +MK5!HURV17`"Z?4>>=F3-NN9\"MI +M/%O&5VMUW%H[O-GO.*0GD(X:1FVEHOGJ$F`D,G>PCZW*X*S.SQ.,_.*I(A.OWWN"K?V6'7[)1,YI_YP'"C,1CPZ2720;.#7WRTB@_O[H!",\";JQ=@ +M)(/(#?*B%,X&`DVI8Y[H(1Q)\46C"Q#Q`3R"#]MN6M +MN4VB`P67E*@=Z8D*6^THBKCG2R:+`7[ZUAP>[S3QSS=V1VZGE%=8F,QA9:8` +M9L8[MZMCR^AP7-(%I..`$0";26`0C$3L(MFTY\U@U+/@*#"R1\3,)D!A+XT, +M,\[L;+NRGIF'9>`D/;`J(*#9DS:F.FB`1$UUNGFWYU$(EQK[4^MBS@QRD1(!T7C$3V"D5,-1H#800`5S8V +M\.7R(_#$&2RC\NL7GQ&.M#!:$:2 +M00!BUM..]+UR&6R/:UUB:Z^-9CM$(7(Q$0G6@P#728Z@Q*R9CE'_"X8&8I9I8@=?)S?R'1:_$:(ZS&N;Y'"WKE] +M[(Y#YC@`L3>7Q[[\VAT\?UO";V\.;Z10!T^4<2GF%4IZP-%W`G;7ZJ3+1 +MQ<4"Z;AA!`8>3<]@&D?PBLUS!2@B=SPY`FQ1R +MW+8P`N"FOZ9NR,;J1U[4G1TP%=J!,K^91)R07`.$M9TZSB_XRP!.GC`SWKFY +MA5]\M(I6QVDR$E'H\R@.(0V:*(A$VR%3R6J;YJF(OT@6O6K=Q01XV\2KO6$4 +M#6(PD7Q,%I:(]->BQOJ4NL*\"0#K\$HVZXXBWYL$[>AYDW-S!?SDC3F\K.#F7*`4D'AH_O[I\Y$%Y<<\'1@!``=91971E2DWBU> +MV=C`C:6EWJ4R&/4L.#88F9\2R^`6N^K!;[]81*G5U)@A%:DGY8C9!BH0`:L3 +M$RBW.YAJU$$(L5F9`C/0(88R,_;00.G)3N-$`VFSVL3/?_,0]]9K"9J_F+(T +M"<0D%X&0KS7!#?@"(NLK\@,7`-.&W&H!G(.1VY,*?6&D`1'U&\GOSF_DH-IM +MJF.C%9DK%,P,WYF!F__G(3O_AH#>V.!QQ7`L[9 +MX\,C"B$+%D<,#T2P))'`!9<*R-];R/W"WOLT,))^"SQZ^XU\)GVW#86SY>\ER@%:'L;[7PN)4#M<7 +M)G!GO8ZUW=-KHHM+,I"."48`T,SET'VTMUQ=7\/GL82B)P%&Q"'.[6RCT.F@ +MK11:*D`["-"AZ)]'E]%:$9T&2)D@^E3Q^,'H5T5+*QU\"? +M__HA[FTD+V2TX`$<'>+F,#AMB`U%M,84`Y%GGK,I>`PN=$-N;R3)AV?[,"*, +M_#"')!!%H^JBICJ6:PW]ZL]G(,-;ER;PUJ5)_-4'FWB2,C==*:\P4PG0Z3`V +MJFV$S+BV7$:E^&R8Z.+2#:1C@M'RWAY6IW3FYML+\[BRL9&J"6*@W&SBH!"- +MTDMY^O0RI&;$1%`AH]2*?M&2`S:D%N$S+Q_=@&X,ZL+H=4>`D7_8FNX`Y#L= +ML"6/>(+D0>OX7H8.8[J*1=!1)]2,O.:;Y98(:&/`\3@!< +MGCL;Z"T+8_O!B$VYZ)-.]!O!FF(I8JHC>YU&.WJ.P[R_>VT*UU;*^/F[&]C< +M'YRUNY@GS)1S8`:V]MMHMG6FDI?/3F"WWL8'=Y\-$UUVFK(#%JL$6]VWL$&A`X#U7(1"!%).12!$@B?W-M] +MZD!JMD/\R;__*/K,^,+(M.`U/VK5S"JG@:3O$'#'5`9ZISCOG\Z(=$8#?>V4&9V8* +M^/F[&]@]Z)]=NY#3("("=FIM--IZHG-QOH@SLX5GSD07%P>D8X01H$UU9W>V +M\6A&;[AV:V'1\R7U/R^#<&%KR^Z5E.+TZ65$&/FR6RYCQP"WV&IAOE;#5+VN +MTR`!V"I7\'BF_T9SIP)&GEQ;7T>AU;*;])&0Q&A%LNNH4IHTJU.39BMT/1R& +MDOF9]<9_')(')8;$W(7$^)?/U_$';RQ!):DDQR`[M1;^CU]^A<=;XI`>=+,\ +M_XZ%CEM7Y*D1#D(>%"1*+?3*V^.`#;L.X6L?Y+0I2H*17I=$O6`4^;MEJX%% +M?&/6/V3LLU[DI5;$1!MS!#*G?BY@%"C@1Z_-8:HU6KE(%D6?;Q<)B(@A0!1ZBIM>U:CYNI%*% +MJ&M0^6W%9;3LT"L9U9^IBB)68G&LQ$P",C]O;R-W;KC;9$0!G%U?AV!*-#L# +M`W69L"R%"02&;H#C.:1#8?M:6"8K:A9N,RC`U9"25>:"D=)FIH3+\QD\M0?! +M#9FB@O_C._>0+[O-+@2M_J(MK[+U/7!9L7@"3,9E'$D&D`@QD[25.;U8U7!W +MM8"EK;)-1$[DG,O$AUH3G=M?9+6F=AR%$TW7S$S7E(P:",NL=F43D/.9:Z/J +M#I>I3N0)?O:Q(7`$^,:[:2AZ\T\M\@2Q(`^1)\B6==LGQ'/`]'``(U'QP&M% +M`/#HL3"^^.D+9'OE)[KHU(J,`&`K',;9M37<,OTH=T=&<6YUM:Y5Z\6CDQV2&DH +M(N'BJ2&#P`@6^_Z;=8T7!K.8^O_G01)<5P(AU-(K*T$T?;?>WP(9<7`J]>VFF;8E@2"6("' +MP!/DRCK2+NUI*"S@Y&@`^8J.]Q\4V%ZV`XR38P'$@P)>_O%MVGOYB2XZM2,C +M"YNA$)+%(C;#+%?=[OIN@XQZ'KESP]TF +M(V(8.+^VUM"%6OX?"M-O1&$[@4Q"J4J2F=';,>>A&2G!)"5J:E<@(-!!"(>' +MZ3)N+.9P_FBL^T5O$__Y1P^QFJF8XMDDU)H/WV$`EY;RZ-$XGC\SC%,38<>_ +MU@7"`0%/GQS"L9$0_OC5>TCE*C;!V"#N)*D6&3G^(BN\SSKOCJ9SEMF,C%P1 +M=02P4@,1RC;3DCJV<4Q[AX>,K+QT&WD5/[B9;0AJ"H@!$"^HM=$R8D\ +MP8G1`*(!'OMAG)&HZADK%3LU:PR['<.@V>XQP-"'557BDSJ5$K +M^P+J2(?"CGRK)2-T)".[HKT=Q.`:#W#"PDVR/`QD-!06\/-/)[&XJ>#[-VK) +M*"1Q&(^+B`1XY$H:UG-J#1F-QD0\,1V&JE.\OU`X%&0$`(]/1R#P!'?6V):) +MEH343S(*J`J(T3JZ9'YX&&.%O-WWWNBHRPW<>3'CN3QXP_"^9I^,O`X"2=-P +M9GV]:1=&*(R4""%,4*.>E#CV76`RSO1;F/VIX]^PQK*-0R8IV3+ICM';^&:4(BIK9A"M[O7&Y1>;B/*"LZYI8+<'+`$1@U!?(<=8B) +M:/9RSK+U_MQ31W`D&>PPFS<$9*Z6B"RM"*[R%/9$!!\]&\?WKF=P>:%H)CWE,9&0(/`$&WD%Z8+6X`LZDI#P^+$( +M\F4=EQ\4D:^T#PD_:'CN9!2%BH[KRTXNO^[+3[1#&S("*,(*2PD34%546I39 +MOCLR`LXP8)AI9E1>0"HUG9,**$`+#H-!%`;=&QC"5RT`C'&"2$J&L()]A4'`34LPU +MFI)A"4SS"=W6/#]X6&SUDMW +MX`V*V5;F09^,O`U"*,*NP?/$9R>C,`VR[F)I^8SDYI7_?7H +M=ZJ7VRL%5'6]"1&Y(^RHK4TZ)CM7#@A:OTY2][G,OD!G,J*'@XRFAV7\PM,C +M6-RJXKW[!42#/!3-P$I&0:&B-T36<028&I+PY'$FW]Z[7\!J=G\6F^P'3H\' +M,1P1\6:3ZK@N+F0;B'<*UI2+F5LK(E36L +M9544J\TUG=&HB*>.1Q`)\+CRL(CYC8JY#^]P0N`(+IZ*XOI2$=DF:91ZLR%X +M(",+:[&8O7'P^.9F3:M3J11D56W[+>Z4A+0>HFXXYKL!(:/M--Y-,I(T#1=6 +M5^W0WEZ0EV4[M1,C#C:2(DI.$(,EV"C,-$)VH#>H*W,`$XY.[AGJ='6T)0K\ +MI^\_0*:X,T^>TR,A/#Z3<`Y0Y]405%#_,H"(+"`2Z&H?>M>XNI!M)"*8I+=%A5SOA-0#&5FX +M-;WQ"&<_E +M,+NQX7'>6F0#02P,)1O680D^.W^:Z\D=EFD)'#,IF0+/H*:CWHRL<\B,V/+2 +M$J2%JHX_?>U^;=1>'_$//SJ-TY,1TXSHCJ"C#4$/]N@XF)W"U%;MIJFL5O+^1W;,"L)''[C,R?QV'2\J29D&+3A99W[\+F1OJ[E +MZY>6`3#":T]$L$V--JA;*W+*1YB,PY*T6MJGFXP`V$EA76G8#QH9\1P+VYY, +M2)@QJ[O>7"GC;][;A-)"(Q)Y@I-C`3QR-(Q<6<-[#PI(%0['YM9NP!'@DQ<2 +MV"IJN+GUA&=XSR; +M[RB`\VNK$/567Y##149GU]:P%0K;(?:$4EQ868&H&ZVZ=(7-4!AKT?:I?.PG +M<6LBNW(H,>,8+$$'N&*8&[2E^L]H5L0&*,77WE[>L0VS`L_AUSYY`B^<3;HT +MI!:F.O/U_.DD9B>C?5O#C<4<[JP4[&O52$06'")R]E#1.JW(^GLP[93]2:AC +MXG,'FECC6/N,#A@9R0+!<$3`:%0"I!H4L:3 +MQR.@E`4L+&\IS438H<;SLS'$0SQ>O99I^UWICI#Z1$86YL;'`0H. +M:=([M[96<[Q^!DH(;G6H)62W=8TSN[&!L7Q]9,?A(J-S:ZNX,SIJ:T=3F2V< +M]V36;(Z56,S6?CO!(B4[FX.=V@8FN1C.$SFXUMJ2J8'H+I\4!3/K_<&W;F,A +MU?I);#O@.()_\)'C^*V?F\583(8==MWD]:&S27SQP\?Z.O_7WUZ".U@!J-6( +M`$LKJOW^UY!*G59$[0:U_B+W%^(@DA%'6(F'\;B(6%!`L6H@E5?QW*DHSDZ& +M\#?OIG%OO=*T[UA,Q%,S$81ES@]8:(.38P%R*'38_,LG3G_Z=S]T +M\1S2K=3+/I.1=2`ORQ@JEQ%1JLB$G$V-FZ$0AHM%#)>*2$@A"`=#F.D +MV/I)N)F9+J2J&"J5L!FVPGB[7W.W&$@RHA3GU];`48KU6`Q#Q2).;*814+7& +MOAYQ?RB)7-!;!@("L%39U/S-]9;`JJD$5FJ!6#W,**^:04C-=]0JUZ!H!MZ] +MMX6S1Z)(A*4>/UE[C,1D?/C\*"8308@>F\(G'AL' +MS_4O5\$[=[?PO2OKCLD3@'4!K#!Z]IXVY,FSB,CV%0%PM"+G[U_C+Z(N?Y%K +MTZWY2+`OR8B`^7KB(0&QH`!-I\B6=!2J.H(2AY>>3`(4^.;E312:1,\EPP+. +M3`81EGG<6Z]@>4OQB:@%$B$>/_M8$E<>%G%SN=RRW6A,Q*7WYCID^]XA,@)8 +MNJ!<((!8I0*XGM@,CL-",HGIS4W,KJ_;554%78=6EW25$H(;X^,XO];H,VCG +M,Q(,`^=7EW$_.>R40N]BS=U@(,D(P`67%G1A964;\];BQOB$IWUBSGP4Q"Q) +M`<.J,$I-$Q&I"0VWW156>+*9)XT]T%MUE\S,!(!M\2M6=?R[OYG#/_O\:9R: +MB/3X"=N#YPB>/C6$IT_M?"F,S;R"+__H01-M"+#HP2(0=IS1!J5687'`5GLH +M9YK\8&NH=I%76Y6RS8X'\.+I +M..962_CIG7S-YR,`AJ,BCB8EZ`;P,%WMJA3Y88;`$7SZT2%LY%1<:A%55X_F +M)CN7JKX39&1A.9&`QG$X4Y>'KB1)2(=#$`P#Q[8V`;"]3$>R3?:9$((;$Q/0 +M..>C=!O`,+.9QNGU=9`VYL']3D:\830EH-[F=?Y$I=&ZC:/.J4C:$U_1OY61%[]_X,/*T!A(BXA +M'A*@:`96LPHVBPX962F`/C0;PP]O9O"FBXP(8::Y)V]^_V!C81$F[YMWJ`-NA7L=\;&P%&*:*52TW0]&D,F&$2DJF`B +MQ_P^R_%$\RP,%+@].H8JSWN.IA,,'>?65C&1:U*#:9^34:QY$01$@J^\G<+] +M%$MEPQ%@,B'AZ9D(1J(B[JZ5<76QA$S))Z)N\,A4""=&`_CNM8RG_5>UA+3+ +M9&3AYL0$CF:V&IJNQ.,H22*&2B6[YM&=D=%:(>OJ<'=D%)FVOHS6"TD42SB_ +MLH)PM=K5FKL;M;O&.T%&9]=6<333_LFD%^%R>V04#X>&^D)&-4>I9:)#4VW) +M"@\W#.>IWC(A-1`3=;0#:P)5I_B/W[J#*P_V'RF]>V\+WWE_#18)N:^?%37G +MO&]/1(`90&*3.NQQ[3'L4B'`?C+1R0+!4%C`1$*"+'+(E36L9A7DRGK#OB&. +M`!=/1O%S3PSAZL,BOG5Y"R7%`,^Q-#]/ST00#_*XM5S&]:62OY?(`T9C(IZ? +MC>&G=W)8]UAZW?$A[1$96;@Q,8E$J8BM4.T&P@?)81S?3&,BEX?""RC*,AXD +MDZST^>B8[7NRIEF))U"2Y";FO=8+<3\Q36]NFO,F49+DCNL>)#(BE&(JDV%^ +M.>]+:0N#$-P<&S>=XKV@.1FU6ACEJ+TY%J;I2#=]2U:);N*=NYOXXU?GV2\N$G)\1M8?WVKB +MIB0G(2J(F?K'O(:,D$RJL7QV;JW(CJ*C[JD'#@)'$)8YA&0>FDY1K.K(%+6V +MZXT'>7SB0@(<1_"U=]+8*FH0.(+)(0D3<0G9DH;K2R64#FGBT^U`%@D^_4@" +M\QL57%OR'N7:9?F)G24CJVD]&5EXD!S&D4P&TUM;)E%(R`8".+>^AIOCC::C +M;#"(@B3AC&W>ZXZ,W#AN$E,J',%&M/D>DNV0D;<;O#T9A:M53&4S$+JL[.55 +MN*3"$:Q'K4)PO:!+,H+SX&Z'%MM:CQ/T8%A"%:@E)@I00LR(,7:`]3;K,@'0 +M=(JOO+&(]^YE\&N?G,%X(M#3)]H-O'4[C3_Y[KPK*6LC";FHB5TW2ZML1D3N +M:$8`3MHZBXC8-7=?KT$D(D*822XL\^`(4*P:6,^USI[@QKG)()Z?C>'62@EO +MW-\0F<6UM%J^?@;C:OC10+ +M&"D6H'$S&.AXFAL`;!J8WMVH",GI82D=<'Y_H[3/7S=@- +M&37T,,UTU&0;8H:!6:NQ$[.")0<',4RARX(?V#Y9VTMB)A9@`1%WUPKX5W]^ +M#7_GA2E\ZO'!TY9^.7J%M(%%3.C`8Q$1*0* +M*CY8*+3,2^>C.SQS(H*QF(2OO9/J.0S>)J1!)B,+F^$P%)['S-8F%N,)W!D9 +MQ9FU-9Q;7\-B(H%\H,Y_1)A_ZD0ZA4!=GCRO.ZD%P\#Y-18ZG9,#6(M&H0I= +M),O<+AE1BEBEPOQ!II)P,I7J25IXZ;(1B6`CXFB&NT5&C2-0T[I$F!F/PB8= +MJX5A.*8\4.9CLO8R`H' +M:[`V"SDY`!M)"+"T(=C:$,QB>Q:KM"0BUMFUE6OPB$CD"4(RAY#$0]4,%!6C +M]9[)%CB:E/"Q3?2S)RWEC[EH`Z8C+J3'DP-W)2\WK96A,;JADYW5[- +MXW?_XAK^WO-'\42JIJ!8R,! +MK&84W%TO=V7B\]$9CTR%\,)L##^ZF<7\1F?_=3NT(*3!)",+JF6.6U]#O%S! +M3=,T%ZE6<6YM%3?'QFH$*@!D@R'DY$#',&BOD'0=HX4"1LU2ZQ1,Z"F\@&P@ +MB'Q`ALH+33^OH.N(5*N(*%6$JU5PU(Z7:FB[&V1T8WRB(>'JGI-1PW&3F"R- +MR3YA$1.QA;,5W`!J[6MJ14Z`HE+\V8\7\.9<"E]X]@@>/Y[8-6*BE.)'-U+X +ML]<7H&@LM+TU`5D/*&VT(5>P@CV'Q5Y.;?B!"UJH-37#V> +M/Q7!Q9,QK&85_.16%BM9U0]4V`%O9M,5.D5$7 +M)J^%9!*A:A4GTBD8A$#C>`B&CB/9+,;S>=P>&07EN)J^M\?&<#R=1DC9@6)N +M/9KI6K7NE8PZ-3<(P?UD$A6Q>9ZW02,C=X/F#T-F\`-QF?/L,'`K.JV1G(`Z +M[F,1SY].XKG3PS@^&JJ?N;?/2"G>G\_@:V\OX6&:F3A( +M72EQ-P&92ZXQQ[DU(3<)L>6[S'*N#!:LW=X3D2P2A"26PD?3*4J*CEP/)CDW +M>`Z8&6&E(@(BA^]>V\*ME7+?R\;[8#A_A)'1ZWTD(Z"&D/8?&5DHR;*9TVX5 +M;BL.;Q@XM[Z&HBCAP?!PS6`/DL,XO]H^I8YG[`J)%PT$FHV8S +MU@C8.C^3T[B.G,QC+0D*`(B!K8*";[^_BF^_OXJ)>``79X=P^D@4,Z-AA#U4 +M@%4U`S<60*VGNN(Q:\C$_D$5`=D@[T)F$S,]E?7FLO\=>FN8( +M@(#$(2ARD$4.JF:@I!C(EK1M$T9(XC"9D/#D\0@FAR3<7"KA^S>R?K+3'<2Y +M(R&\>":&U^=RN-E',@)L0MJ_9&2W(`0W)B9K@A<`=E^&%`7G5U;P<&@(!9E% +M4@FZCAL3DQC+YY`LE3R'3V]_S>U;]IN,LL$`EA)#'1ON%S)RPZKB9$4P6WXA +MNX!R4/Q97(D]2I*;;V8\YGGR+V#J/N2*AFR7L7K$`( +M$!0Y!"7F$ZJJ!LJJ@:T.FU:[1=+,R#`1EW!L6$:IJN,OWMSPG!G`AS>P).1"]E@"-E`$*>,:!D5!4$+"42C?ZA`T1&M.E[,]^=)'&TIU=)AVWY-1L^.6IN1H"Z;D=@=# +MV$1@_K!"I-T1:F:..#OJC@+NB(.:=5C]2+N%.VF-ZHFG!J09`6&@2(CG@*#$ +M(R1QX#F"LJ(C5]9:EOKV"H$C&(D*&(U)D`6"C;R*BF+@R9D(TGD57WDKA7R' +MHF\^MH\S$T%\Y&P<;][.X7H/*8&Z15M"VI=DY#I3$27U0.3*O-ON"FWC@4L6H\SM@&1?W +ME(1$GIB:$`<"H*P8VPK1K@K,`R*%\_$,!06\<;M +M7,M*KC[ZBS,307ST'".C7O+3>4%+0MKO9.0^L!Z-83T:P]&M+42KC5]B2==P +M?G4%PI4JPDH5D6H5`GPWCR>`2W5\OX +M[M6,GUUAE_#LB0B>.![!3^_L/!D!+0CI()&1&XM#0R"48B:=1D!K='Z>V5C' +M>B1:0SRM)BK*,HJRC/6HRT1D&.`I!4G5[89N&,I]B#*-IRC)*,@2 +M2J($@Q#H'-=4^]E],JHS4^T3,NHTAEOTUUMHF^HY+;>T-&O=1-NJ\26Y?%LU +M7:@=8&$=VFT1+(L$09%'4&+AV67%P$:ENR2FW8*9Y$2,QD3;).?.M#T1%_&1 +MLW$8%/CF^YM^T,(N0>()/O%(`I,)":]=S^R:-MI=MN\#0$;V84(P/S("`)A) +MIQ"LRW$W5LACK)#'K=$QZ,VTI39KIAP'RWVK"`*VPN$6+9L<\2AM?#+J'YJ- +MV_`00;?W_6S5S-)Q2>.I72<@`D`6.80D)SR[K!K(9;)BN(EMR+`VR0/#K'"]C+O7,M8=GBT+'*J:P7Q"):WO!!`+\DB&!8R8)KGUG(([:XTYY6;' +M`WA^-H94C@4M%*I^T,)NX<0HVUR\EE7PVO7,KF=`;Y_M^P"3D;OI6BR&M5@, +MDJ;A9#H%SKP30ZJ""VNK,`C!9C#$PL,]3^.345?=!HB,NL6@KJL3>([EC:L/ +MS]XL]&>/D!NQ((_AB(CAB`#=`-(%%=>62B@W*7X7"_+XR)DX$F$!/YG+;3M1 +MIP]ON'@RBL>GP_A@H8BW[^7W9`T"<+C)R`U%$'#3C*R;RFPA5JF"@((S6)3= +MB!FI5Q($+,<34`2A(1EIIUE\,O+68+\*_4$"`2")!$&10T#D`!!45!WYLK8C +M3\#-2.C&<@G%:G/GD\03/'$\@D>.AC"W4L8K5[?Z%K'GHS-D@>`3%Q(8CTOX +MWK7,GCX(-(^R.X1D5(^EQ!"6`,"@&"OD,5PLVB&V04W#J73*;JL3@H(<0%Z6 +M49(D,U)O<,BHMUO;)Z/]#)$GD$T"DG@"Q?0'Y2OJCI1=<).09E"D"YW+@',$ +M.#\5PM/'(UC/J_CJI;2?C7N7D0P+^,QC0Z`4^/J[K)S[7J*1D+S[97OJ,,AD +M5-.8$#ML'(:!L*K@2#8+P7!N-)Y2Q"MEQ"ME5T<&G7`P"(%!`(-PJ`H"-,)! +MXS@8'`>-(^`H6.D)\\69+YTC2$6B/AFU0#0@(%_9VQN($!8IMM=/](0P,YSU +MT@V*JFKLF!8$`/$@C^&HB&38)*%\9Q*R<&(T@(LGHU!U`]^]EL%R9@<2'?MH +MBY-CS%^TDE'PVK7!"*6O):3]1D8[I64T:4P!@.-0D`.8&W,JBT8J%4SD<^`- +M`[Q!&W;H\]0`9]^?.@)*Z[!52EBFA0=#2;L:K4]&#B[.)G'A:`Q'1X(X.AQ" +M4.)1574L;Y9Q8S&/;UQ:1DFI=8!_[,(H/O[(*+YQ:1GOS6=:C`R$91[_PR^< +MM7__7[Y^"\46SO3CHR&\>'8$)\;#.#X:@LAS6,M6L)@N8WZM@%AUX6Z'4T&\.N?.@%"S`VR5MHA +M`,U"+MZYNXEOOKO:=EWM0&!J0CV2$`",Q40\/QM#1.9P:;Z`VWVHH>/#&PAA +M_J+'CH5Q^4$!E^9[2)>V0W`(R2>CEHW;]2T$`K@3"-2TY`P#846!K&F0-`T< +M961%J)FIF0`:QT/E>91%$45)8MFW>UWS`2>C>$C$?_7)&3QU8JCAG"SR.#$> +MP8GQ"#YZ801?>NT^+MW=LL\G(Q).343P3W_V%'[WSZ]A+=/TT.!3$Y%,3%V21>/#>"/_SV72QOMA:VSYP:PK&1 +M$%X\.]R2D$Z,A_'H=!P`<&PXB(54"4')-,,)')(1$3-C81!"NBHF:%6B]0*. +M`/&0@*&PT#,)`8S(+IZ,8FI(Q@XYOV+K[F,D(N"CYQ*(!7F\>G4+#U+5 +MO5Y2#3P]AOMDU%U'@^.0#P20ZWD1/AE9>.18#/_U9T\A$JQ-$*L;%/FRBD38 +MJ><4#8H-6H2%H,3COWUI%O_J+ZZ;55F]XU<^?`R?>WJRYEA5U:%J1LWZC@Z' +M\+N_\@C^W=_,X?IBKGX8B#S!5#((`'CZY!"^]-K]II_]F9-#H-0`I12/3<=0 +M4;2:B#A1$,`U>9#9+F218"@D8B@L(!KD4:KJR)2TEM%QG<9Z^G@4YXX$<6NE +MC+_XZ89?+&\/P'/`,S-,*UK.5/'*U2T4!C`'8-<%77:6C#R<'7`R:GK$)Z.. +M#9J="H@ZM83)>@ZA2)L(C'C\?Q2\\?Q59!:6N6FQH. +MX=<_=0+_^]]:"^JE```@`$E$053>[;32!LQ.1&K(Z/YZ$7_ZVGTL;+`LTT-A +M$1^[,(I??'X*'"&0!`[_X*/3^)?_^6K#9YL>#8,SJ]#&0B).'XG:6I+`$=,/ +M1/#,R3@,@^7/&XT'L9IM[V?YM__?36P56[C2,)Z8C6,DH^.NW4\B6!T\`'@9,)B1\]&P)C`#@[[YPU-:`**7XT]?NXP?7-FK:9(HJ?G@] +MA3?G-I$(-Y9AK\<+9X9Q;[6`[UQ>Z]C6C2^^>,Q^?V^U@'_[U9LU3_I;115? +M>WL9:]DJ?O.SIP``QT9">.'L,-ZX59MQ_L28D\HKG9X>PD2U#%C@8E`4C +M!&01$T,AVQ1W8CR,3EC/5I#*=Q<<('#$)J!X2("BL02I]]8KR)?U;44XGAX/ +MXMF3$904`]^YLM612'WL#"2>X+E349P]$L+\>@4_N9T;>.VTM_(3'CKX9-3S +M,CPU/&AD-)4,XM./C]N_OW$KW4!&;BB:@?5L=_;P7_G(-.;7B[B]TITS]Y%C +M,9R=BMJ_?_6MI98W]IMS:7SAV4D<'6;ESE]Z>K*!D$Z.AV$8AIGMF^*IDPE\ +MY?WLW[V;CW$-/#,CYREOD?7[FRA87T8/F*6L%[^0D/'7PRZGD9 +MGAH>-#("@$>F8[992],-?.7-1:]+:PF>(_BMS\WB?_JS:\B6.B?K/'_4R="1 +MRE5QY4&V36O@M:OK^-6/SP``)H<"$#A`$E@P@BQRF!EC_B..XT`(03(J8'PH +MB/DU)WW5TR=K`S@XCN#X:!AW5KN/B.(Y(!9D6M!0B-WJ6R4-2UM*7\J'6Q@* +M"WCN5!3C,0GO/2C@VJ)?+&^O$!`YO'@ZAA-C`=Q:+N&MN_F!".?N%M[*3[2# +M3T8]+L(GHV:82H;L]PNI$M)=FJ+:82U3P7!4@L!S2(0E_-;G9O%[?WVCH_"< +M2#AA_@NI4L>U;V0JM@9$0'%J(H2U3!4EA04D3`R%P-5%Q3U[*FD34CPDUD3\ +M63@QWIZ0/O'8.'1=ARP0R"*!R`&*#KQ^,XT;R]ZBXKK!<$3`4S,1'$W*N+%4 +MPO?W(/>9#P>G)X)XX504%8WBY?&L)?_N0A`."I +M$PG[N+M-,S^281CVZ]./#H$0`H[C3.V+:6#?^2#55S(:C8EXZG@$DPD)-Y9+ +M^+,W_,BYO41$YO&1LS$<&9)QY6$1[][/[]N0^N[*3[2#3T8]+L(GHW:8B,OV +M^XT6OJ'G9I/X)Y^8:3C^\CO+^,N?-#?QO?K!&LX"YT\,`@)]]<@)W5PNX +MN=1ZZEQ^HAU\,NIA`1Z['$(R`H!L6;/#O2/!KGX\CHV$,#G$ +MM+!?_]0)_/MOW&[9/E-4$!0Y4$HQ%F/[Z,`8+/@F$YF7%K. +M_%H1MY<+^/F+1P``S\XFD4;O)A(2GCDY*MTV27L,Q!Y`1(`H=LH8K)A`R.(Y`DH6/5TF2TEI#6729' +MMX9T?[V(!QLEAY!.#6$M4P8!A:JJN+V>]=&>SZ[#O;C`U).&IF0B&0@*N+!;QZM6M?>4@/VC@.>#\D1">/,[\B^_, +MYW%CN;1OS7/-T+K\1#OX9-3#`CQV.<1D!`"KF3(`9KHZ/A)J&O)\_6$.UQ^R +M3`B_\\4+71,2P/Q)7_K^??S&IQD1Q8("=%VW?38<(OI?'5A<<\3^NX$O-M"?#+J80$>NQQR,@*`^^M.WK5( +M4,1GGYK`-RZM]#A:+22!^8#FEG+XZ:T-7#P];`<#```QR7RP4#AP3]_[$2?'`GCF +M1!01F<.-Y1+>>U`XT'X[;X3DDU$/"_#8Q2/L>BX:Z +MNU[%9Y^:`N_*2_?FK;3MFWK@2HHZ,]8Y8X-7G!@-X*F9"&2!X(.%(FZN^$2T +MUSB:E''Q9`3)L(BYU3+>O9]O6>#P(*'[S(S[C8QH8V.?C'H9I;<&VWV&HP#^ +MTP\?V+\')1Z_\\L7\)DGQB&+M5_;)V;B&#.C\BBEX`G++CT:%1&6"0RS=I5N +M`,L9!:F\BEQ9AZ)1J#K%'WSS#HK5UM%)5=7`M]]WRC9`\Y.!O%?/#>"YT]%<7VI +MA#]_

P=??'$*1X8"ML]I,LDR=Q/B:$OW5@OXP[^] +M@U3.B7@+2;RMQ0$LPLZ-]^:$U`ZZKF,L0O`K +M+XSBX685KUS-[,N=_`<)(D]P9C*(1Z;"B`9Y+*2J^,9[::QFMQ>FOY_1GI!\ +M,O(ZB/=Y?3)J"9$GD`2":PL9_/[+9?S,(V.8&`I@/!&$)#"M1]4IUC,5/-@H +MX=OOK>!AJC:U?D75[:P-K/OGX.!Z=CN/82,@LY,?&7DB5<.UA%M]Z=[6A+M.19!"Y,IN_JNI8 +MKQ,/,1!"4`C=72KB^5/+_+@#(S$O_AO[WO_D+N+525R/# +M)R.O@WB?UR(VQO4D71L;6-39\$ +M0%#B$)9Y1`(\H@$>L1"K!_1@HX1<6:^)MJL'SQ%,#@50JNHUFU][15CF$0^) +M6-[:7I9L62`X=R2$"U,AZ`9P;;&(6RN]U37RT3\<3;.FBX,!7"__8GW]";:T@^&7D=Q/N\AYR,))X1CV02$,`R$U0U`Z62UG:/ +MA4&!%8]"6Q((0A*/D,PA;/X,B!P4C:)89<23RJLH5/6&S`NMH!L4B^G^%3LK +M5G44J[T_)2="/!X]&L;L1!#K616OS^7V3=F!@PJ1)S@S$<2%J1!B(0$/TU5\ +MZ_(FEK=\!_$^[R$C(]XLOV"1C\BQ3:Y5S4!),9#I8RD$GH-- +M/.Z?E%*4%`.EJHYL6<-*QD!)T0^$,_]HDCG$)Q,2[JQ5\+5WTM@J'CZ'^"`A +M%N1Q82J$,Q-LD_3<:@G7KVPAYU?-;8M:0O+)R.L@WN<]X&1$`(@F\5CF-TJI +M;78K5=MK/]W",K>%)`XAF;=_BCQ!66%DPW+-J2A5C0.WJUW@"$Y/!/'HT1!$ +M@N^$G.]U+\!PP/1S`Z8D@C@W+R)4T7)K/8\XWEW8-AY!\,O(ZB/=Y +M!XB,NNK2!1E9@0WZ12EJHZ28F`C +MKZ*4KJ*B&'T/KA@DC$1%G)L,XN18$-FRAGCMHWV&QE9Y".8Y"-P9N"!9C`" +MJM!M/0GR'-L`&ZXSMP%`2=%1JAK,W)8U4%;T0[.!4Q8(9L>#.'LDA&B`Q]VU +M,KYU>1,;^<,;'KS7&(F*F!T/X.18$"&)PUI.Q:5Y5K;=KPW5.SR6G_#)R/.\ +M^Y2,ZC4?P?+[Z-LG'P(@8)K;PBYSFR28YK:J@:*B8ZNHH:3HA[;4P61"PKDC +M(1#S((U/2<'VIB#MK%3]DNT_P +M4'[")R//\^X3,JHA']XA'Z6.?+Q.*0FLBJKU"DK.3T5SS&TIT]Q6/N#FMFX0 +MDCB[6,O[Z40K;D"[R]0%#B<&HL@%/C08Q&112K.NZN57!W +MO7PH,RGL-+HL/^&3D>=Y!Y2,6FD^BF9`40T4RLTUGU936J6[ZXE'%C@8E-4> +MJJ@&*HJ!S8*&BLH"#@Z+N:T;$`),#\LX.\GVJ"QM5?'671:R[2M#NP])(#@^ +M$L#L>`!'$C(4W<#\>@4_O9/WLUOL,+K(9>>3D>=Y!X2,FOI\]!8^GQ;C$@!2 +M#>$0!"2>_10Y:#IU2$9R1#.3`2A&Q2W5LIX?>[P +M)-(<)"3#`HX-RY@>EC$6DV!0B@>I*EZYRH(3_*_R[J`#(?EDY'G>/2*C9M%N +MFKG71]$,Y"M&2ZW$\NG4:SH!B8VE6J2C,-+)YQ2;@'Q-QQMX#C@Y&L29R2#& +M8B+NIZIX[4;&WRBYRQ`X@B-#$J:'91P;EA&6>12K.AZFJ[B\4,3REN(_4.T! +MVA"23T:>Y]T%,N(YEO6ZIJR`23Y6I@.+?-SSW6J8E\M%_Q(,\CID$-)E@^0#7 +ML@JN+Y6PD*[ZFXD'`"T(R2)QTO'HAJ4A668Z +MBE))0]5,3EI5ZR+8VBS.OT5[QW!$P*FQ($Z-!R!P!/,;%7SO6@8K&=\DMQL8 +MC@@8CTLXFI0QF9`@\`0;.16W5\MXF*X@Y4?$`*ZR93X9>9[7`QD)'(%8 +M1SR2P($0"@("0MA3'<\1B`)G)R"US'%6Z>VJ:J!8U6P"0`CEA1;Q2*QLH%!`+"3@:)*5A19Y`@K8&9*S)492 +MV9*&;%E'6>E\YQT4,N((,ZV)9JT>@2.0!6*334#D($L<))X#S['"<575,$.@ +M=>0J.A35,#>;LG.J3DVRZ3VTVU,7GXRVA8#(X<1H`*?&`QB+25C:JN+*PR(> +MI*H'+GGK("`6Y$WR$3$>EY`("3`HD,ZK6,TJN+Q0P%I6]5/U'"`(`*!H+.8> +MJ$T&&)0XQ$,"XD$>\9"`1$C`]+",D,SRBVDZM;6H8E5'H:*CX/K9]9/B'I`1 +M@14TX+P$@6LX9@45\!Q`*1N24@J`N,QGK)9.R8Q0YT[O,VH_0F^-?'':'(D0C^,C`1P? +M"6`D*F(]I^#^1@4_O)E%J0NK@(_VB`5Y#$=$#$<$)",B1J(B0A(KTEBHZ-C( +MJ_A@H8#5K(IT0=UVMG@?^P=-":E3`(.F4Z0+6M-<3H0`D0"/B,PC;/YT$U9( +MYL$1IJ%4S7QF5ABR%9)L.>L)ZDF%_TUGH="*1J$;AGU> +M-UAF`DUGQ"/PCD9DD9054JT9%*I6I^WLPCXC[R/TULB_QQT0L!#MZ9$`9D8" +M",L<%C<5W%QF^U-\DU!OX`C+@)",B!B.,@(:CHAV%.E6446ZH.'R0@'IO(;- +M@NJ'81]RV(3$$>9DAQGI10BQB8,C+`*,F&UJSIOO>0)P=9H(9VHAA8J&LD*0 +M)HS`ZJ/,@B+;.R.+;-^,I7M45`.%BH%\14>AHB%?T;%9U)`MJ2A4:E/3M!+L +MEN_'VM,3$!D)&91I.JK.*HFJ>H>L`SM%1CW>?SX9;0\\QRJM'A\)8'I8!@6P +MD*KBS3LY+&U5?;.01X1E9MY/A@63?$0D0@(X`E0UEL"^/61MS:B6Z8 +MVD8;,QU'@+"I545D#N$`CVB`1SPH8&I(1DCF[##UBLK,@?D*JX]3KM9J6800 +M4&L_CYE&IUBE-0[HW1?L/AGM%0(B\P<='PG@:%)"H:+C0:J*[US9PGK.WZS: +M";)($`\*-7YEZSW/L;NR4-&1*JB8WZ@@G5>Q6=!0J/I1;SZZ@P`PP?[^0KGV +MC`?)Y4G(=?`9&13(5_2FH9L\1R'Q!-&@@'B(1S0@(!KD$99X),."7=X`8*19 +M5@SD*QJ*50.EJHZR:1ID+U;ZH*PV9BGHYL/Y9+0_$`_QF!X.8&9$QFA,PD9> +MQ4*J@K?NY?R2#DT@<`3Q$(^8>8]9?N)XB( +M/K:#YD$->T1&`.R4.7;P@?F>YQRMJZ(:*&SJ4(VJ[2^R0,R<;=&`@$B`0\3\ +M&0L)F+!J\I@.5`N5&J)BY1&:_6X5BO/):'`A"P1321E'DS*FAB0$1`Y+6PKF +M5LMXY6KFT/N#!(X@'&"%$=U^WFB`1SS$(VQ&T%H/AKF2AO6<@MNK)NF4-3\; +MN8\=0R,A[0(962'7O)MXS)\&94$'5O!!536@&8W^G58^(TJ!8M5`L:H`V=;+ +ML>KV."]6N30H<1B-20B:YR7!R6.A&["U*T943,,JFX7FK',5M;ZFD$]&.P5" +M@/&8R`@H*6,D*B)3U+"T5<6/;N6PDCD\_B">8^9N]N(0"?#V[^P]9VLY`.Q\ +MB(6*CEQ9PT*::3NY$O/7^CX>'[N-6D+J,QDQD@$$0LR(-G8,`%0#-O&4%<-^ +MW\U,_8A,*ZN,3%!L/R7/`4&);R"OH,ARR@U'!/L\[U*\#(,Y,U!5F=^MTB8S@T]&M8@&>!PUM:#)A`2=4BQOL:S-2YO5`Q6:30#( +M==5V`Z*3_<,BGW"`?28#(AV204 +M"?!8S2A8VJKBW?OY?5-*VLG@[D27!LSOBUUIMXYT))&#^QOBKL)K:>I+6YJ] +MQ\_2>'Q?CH_]"$9(;;Z[!'!,:QP+[19X9V^0M>_'VF1:5IFVTRF:KC/VGHR\ +M3F?EI,M"MWMU,M,1,"*S2$H6&4D%1(>P9)%#2.*1"!.[C2QPX.JXC%)`T0WH +M.H5F[LNR'PIEY`K:UC: +M5/#&[1Q6,CM3/,TR)5ND83]HN1ZV1-=YM[F9'3>M`#SG.N:<)XW/'M"-VI(@ +M%=5`*J_6^#7==:I\K<;'088`L"@UQSO!($06PMC),5R[=E_0_M!PM%4WD9@T,"H?( +M&LB,MOYNT-J@$#O4'T`XP",69,[U:$"`3BER9N[$A70%BD8A"@0SHP',C`:: +M7$6TC9;D7==`K"<8U_>^'2QR5JV?=61O6P%TK28+B-:DO:(QLO%SX/GPX4`` +M8$?<6$_$5;,T==.-I]W`)Z-="6#0*(56I3513_T0;QQ!#8G5D)N+Y!B)H2FY +M\Q3T:#$,!@4+#:2WUZ>I=X +MPK(V)R1,)EC9@$)%Q_U4%2N9O%\RP(UX).1MQGW.QGU`U;=FLD$ +MJULS'!&1+6M8R2BXNEC$:D8Y4)%P/GSXZ`_:$I)/1MYF/(QD)'`$(U$1(U$! +MHU&6N3D6%+!95+&24?#^@P)6L@JJZB!1I@\?/@81;?C':6C-HTV$F1 +MSW-`TB(?\S44$E`VPY)3>17WUBM(Y=6N*@?[\.'#1R<(7WS6P*_^S`GP/+^] +MD3K%"N_J,'T:I4^?J1_HQU+:1J@1%NY-7.5'6(7"\JY(EEIIVO2Y`&NR5S.I6V^D-;K[/KTOEOU=TU;]>^OE_MYVF_@+;7O,6%KF&S>?J?,UK2;2[:\[Z>+_FW3\DLK%K +MU]>IO;.^=N#:G_;APT=WV&DR\KZ6?K7O23/JT?:^G:?T;MMWW\>+=M19,^JV +M??MYNL%@7O-NX!.2#Q]-,%B"LR(8=Y88!^N:#Q(9>7D(V,EK[IZGJY:> +M^_F$Y,-''7S!V&F>]AATP=A+^UZN12_7O-?VO:W/^UKZ_P#EC`WXA.3#1PU\ +MP=C]6KJ?JU.?P1.,W?=I?K(_Z]LY\VBO_M%>VGNYYCXA^?!AXO`(QLZ+/NR" +ML;L^7LEH<'QUWK![)FF?D'SXP&$3C!UF]P6CI['[T=X/'&'P"/W<;@W*3],P'Y@M&:QUO[SOUV +M\IIWCX,8.`+X&I*/0X[!$HQ-1O`%HVN>KEIZ'7D;=%XSNN;R/[0M&9^S=$HR]7/->V_N!(ZXC=8<$`"A_ +M\Q*J8FTEBL"%:4@GQKM=F0\?!Q0[>9/VAXQZ;>\+QNVU]0-'K'F\M6_7CVE( +M38+L*M<70'6_SHV/@X7!N4G[)XQ\P6C-XZU]YWX[>G/EZON5>-M'OL9_]H6Q\2-0P4?G"U +MTXP^?`P\?,'8JH\7P;C39#0X@K'59WC[S?X``!2+241!5-V;*,;NQ]_?_M$N +M@AJ,0AGER_.=FOGP,;#P!:.WL;N;JU.?_2P8O5SSSO`#1[KIPTYV%66G+J90 +M?O^>]Q7X\+''\`5CJWZ^8.PTMM>U=)YK9Z_Y8)FDO:\%\!#VK2ZE47SCIH=) +M?/C8;]C)F[0_9-1K>U\P;J^M'SABS>.M?>=^M2<\[4/2-_,H?/>RERX^?.P9 +M!N0U[QZ'/7#$\\98HZ(@]_(E4,T/"?\S40)'_VW=0_/%U?Z^2CX'# +M_A6,.TU&OF#LMGWK/CNC8?J!(PQ"TZ-=0L\6D?_V.Q"&8Y!F)R&,Q+8SG`\? +MV\;^%HPM1CF`@K'_FJ4SMK<^7LBH,_S`D6[ZM#ZY+4*RH*5S;#"?D'SL(7S! +MV*K?X`G&7MK[$77N?H-DDO:^EE;@"/I1H(\@],+9;8[AP\=N8B<%8W_(J-?V +MOF#<7MO="APYJ-=\.R;IOF3[CGW^V7X,X\-'SQB;^T[]]O) +M:^X5.WG-K3X[LY:=N.;;)B1Q,KG=(7SXV!8&2S`V&>'0"\;>KWFO[?W`$3;^ +M?O./"LV'[A[JRB;4ESRZ4RN4WIY#[N6W4;FQN.VQ?/CH!%\P=K^6 +M[N?JU.?@"48_<&1[5H!>R:A9/]MD%_W,DY#/'O6^FB90[JT@]\U+,$I*7\;S +MX:,>OF!LU>^P",:=>TKOIKWOJ]M>VU9SU?B0Y-E)1#_W+)I6[/,*2E%X[3+* +M[\]O?RP?/ES8^0V!OF!LWF^0!*,7[*1Y]#!=\YTW23<$-1".(/;Y9R%.#7>Q +MP,Y0EU(H?//YMC)F[1_Y.(+1FL>;^T[]]O):^X5@WG- +M>VV_$]>\991=\,F3B'SJR98#>X%149#_UB54KC623^#"-`K?O]*7>7PIZN6'OMYM0*T&*6+:\ZUL\YQ`1&Q +MSU^$-#/N??8F4.ZO(??RVZC>7JXY+DP,(>]G$??1`;Y@[#1/>PRZ8.REO1\X +MPM8RZ/[1;M'5/J3`(].(?O89$('?UF06JG-+R+W\-DIOWH)14A`X=Q2THJ#P +MO0_Z,KZ/@P=?,':_EN[GZM3GX`G&00\<.:C^T6Z_ZUUOC"4"A^AGGT;H^?ZE +M"-+2.11>NXS<-R^!CX5@E*LH_.!JW\;W<3!P>`1CYT7[@K&;/E[)J/_FT=V, +M8CQ(@2.>,S4((S'$/G\1PFC":]?6H!1ZK@0`,`IEOS*M#QN'2S!VF-T7C)[& +M[D=[/W#$=6073-(]IPX*/7<:T9][!EPXT.L0+:%OYE%^[U[?Q_5QT+&3-^GN +M$6/3L[Y@[*)?_P1C8Y^=_?O[UYQA6[GL",\A\C./(?(SCP/;SAA>"W4Y[>]A +M.N08G)NT?R8@7S!:\WAKW[G?3E[S[M$L<$11%.1RN39]O$^VN+C4[8IJ?LO\ +M_?\5Z\=^$\;29E?M@=ZN1:\FZ;YD^^;",F(O/8O()Y]`7S;5FE"74DU#Q7T< +M?`R68&PRPCX4C)W[>)_,#QQIG*M<+B.52F%N;@[__)__-L;')[&^OMZB3^>Q +M2Z423 +M4G],TMM!7PKT6>""$F*??Q;:6@;E=^[T]`6OAW)_#535$7SR1!]6Z&,_P!>, +MW:^E^[DZ]?&^%C]PI%D?BG???0]?^,+/UYR?G9UMTJ>[L;_\Y2_C7_R+_['F +MV,3$1#>KLM^E7_P=Z/?704U]@4H\4H__-D;G?A\D&4$_R6@[#UY]*M!7"V$\ +M@>A+SR+\XOF^C*OMFG_H0R_4G/__V[OV +MZ";*+/Z;2=*D34J;-GU!6\J[U"+04H];Y8@'?+!%7!Y+U045Q<0-%C +MJWM$5Q'WL.!Q#ZOR$`2E*Z*M4A"*"RST0>F#2ENTM*70AZ4\FJ:O)/M'R21? +M9J:9:3-I6N=W3@_YON_>^]VY"??.]WUW[B@4_7M<9MFR91@Y]F!SC-+`L]NC[MTRQ7\HC=DDY,3!#!S[8Y[>^+H&-_@\(0``H4`G:_!)\[8UGTSGR]R1;&(VY+ +M6M*`9`.E4L!_=B+\[TV`(E#;+UDWOLM'YP7N_5@9OR5(Z1BEWDOWC&,4QB?. +M,9)S":,7SB->%\Z1?CO&_G^?HT;9CQB<;=P7FX>%":V6PV]S6J]#T*'7,>R# +MQZ&>=2N+GH^/2[8P'G'!"'#S&9(K4"H%M'?$`0`ZJQKZ7%BU_6PU.BKKH)MQ +M*RB5>ZI'R!A8>(]C=%]P\0;'V/ML387NR+EAN.YO&W[KC_GH\[;?EJM +M\TZ3\RK,M6R3R01?7U^!/.+^C[:V&J'3\>^&\=UX#5A`LH%2T!B6,@T`T'FA +M$1T5=;!V=0OFMYHMN)Z9!]I7#2T +M>79V-C9L^`"%A6?0U=4%H"?P3)DR&:^^NA;3IMEOM",B(CAU*2@XC;2T=.3G +MYZ.KJPNAH:&8/?M^O/_^>H(N-S<7)I,)9\^6H;BX&`4%!4A/3T-*RN^9:ZJK +MJ\/NW7MPZM0IE)65H;.S"RTM+0"`X.!@1$9&8N[<.5B^_'G0-W,";)>5F9F% +MAH8&5%96(C^_`-75U:BH^`G-S2,9 +M;H?L&,7)YI]+N'PY<82/3[C-K58KMFS9@C5K7F:-F\UFE)7]Y%+.BA4KL6W; +M=E;_M6O7L7_\>EBY]G%,_BJ)P[-AQ//C@'XC^QL9&;-NV'5]_ +MO1]%187,2FKTZ-&(C8TC:&-B1C+7].*+?\'GG^_FU;>YN1G-SEO,.V0$`-,)A,F3HQGR:JMO8B//OH7?OVU&9LW;R3& +M/)+4(!:4@H9Z;`2&I21A6$H2_)+&B^*WM'7`5%")ZYEYN)Z9!^-QUS\0&9Z% +M[!CY^*0+1N+AV>W1P9(XDI&1P0I&@8&!N/_^^Y"4-,WE=MK*E7]E@A%%47CX +MX8>P<^<.K%RY`AJ-O13;ZM5KF)63,_S\_%C!R!%7KU[%4T\]S;0-!@/BX\G@ +MX*AG4E(2,>;CXP.M5@N=3@<_/S]BK+R\',N6/4WTS9@Q@VC[^OKBL<>6,I^U +M6BVSJK)A[]Z]L%@L1)]7!B1G*$,#F."D38Z#0N\OBM]\M94)3MS9>>VTM2DOM[X6S6"QX +MXHDG.>6L6K4&`'#WW3-P[MQ9;-JTD463G7T0]?4-3#LL+)1%8[-%:NHB:#0: +MA(:&(#O[>U14_(3SY\N9/V?Y)27D3D',6^?1DH+R]#1<4Y +MY.0<9LV_>_<>HCTH`I(C%'HMM,FQ&):2!-VL*=#<,E)T@5>+J0,=E74PGO@) +M-PX4W`Q4^3`>+T-[62W,U]HDTEX&X$V.T7W!1J:7HFGXC!L.]5CN0T49XN!=CI%#PB!QC.)XQ$\F)XXX\_709F1D +M$&///ON,(!DV%!>7,)]'C!@!E4K%Z&+3;]*D6W'FC'VE1#I_.]Y]]QT'_8"Q +M8\<@-345>_;85QWY^?D0?,>1&9F)M,^?_YG8GQ0!R0N4`H:B@`_^$X>!=_)O=>_L[1WP=K>R?QK +M[>B"Y>:_5K.EYYNV6-%]Z4I/<+-8`(4"FK@H*(+\0='N+;DTU#%X':/4P4B\ +M8Q0*.7%$G&Q7/&(B0DA*7?,\\\302DA@:Q103X=5>KU:(DW7)+'&L7P/E,S'G5-N0"DAC0 +M&A6@44%^M%9Z#&['R"-E`!VC,!XI;>X\EVO9XGC$!"/7D.*L+CHZ6I0.QX\? +M)]H]]>C8NP#.M46Y:HTF)"1PVD*O)S.+32:3"`WM`@L+"W'@0#9HFD9143$F +M3YZ,FAK[V5B/3OQV-!B"^_1=_:8#D@S/0':,?'SN<8SN0=\#Z5#.J.N-?M(D +M=DIS;[]UQS1I`-BPX0-LW/A/%AU?9ITCG(NMVN?@O[V.CX_'P8.'>$9[]'[D +MD<4X<>($C$9R59:=?9!HLS,)2;"#J#"[RP%)AI=!2L?HGF#45WHYHZY_M)Y* +M'!%J?_XYI*6]3E"FI:7W(2")^ZW+`4F& +M9/`NQ\@A88@X1G(N\9/)B2/.?,)HV]O;;_((H_?U)1]/T>ET2$]/(-H&@X&QA6/`<41-30U.G5[><^]-B1EF.1#'?#DW?ILF.T\4@9C)SG#2BD._WM!#9#0:D9'Q'Z;W +MN>?^+(09"0E3B?:WWW[+DKUJU6IR1JO8WY$PR`%)Q@!!2L?HON#BK8[1SN=- +MP]'8V$A4>.#3_8$''B1&7GYY#='FRQ4( +M"PLGVE]]M0]OOODW`%945]=@YLQ[<>1(#FZ__7:&QF@T2G"#(F?9R7`3O,LQ +M2Y<^CD\_W'"A5]89T-'CN1`I5)!J]6BM+04'W[X$>KK[34XL[*^A8^/#\'3 +MU/0KT;9MU8T9,P8JE8IX)FK3ILU$BGI$1`22DA)Q\N1)3KN83&3"`T5QKW7: +MVSN84DH]^0':.K>7J'9S+J^F;SOM(/Y<21]>O?P]2I4WGIUJY]!=W= +MY%NOCQPYPGR>-6L6=NWZC,7WRR]5*"DIQ>'#AU%65L8$(8U&@_/GSQ.T.W9\ +MAB5+'L/\^0OQ^NOI3#!2J]78M6LGZ_U&@)551JBJJHKY?.S8?WFO1Z52X="A +M;-:S3Y65E;RRG<_1@!Z;Y^7ELZ[9$7)`DM$OR(Y1N"["YW+%(UX7.7&$BT?X +MI(XVIR@*/_QP$,N6/0F#P0"U6GUS91."CS_^-Q8O_A-T.AWT>CV&#X]`>'@8 +M*_GAOOON0W-S$Q8N7(`1(T9`J]5"H]$P?VJU&L'!P1@W;BR42B66+%F,Y.3? +M(3@X&#I=#RU-TZ!I&FJU&F%AH7CTT26X>+&&(Y&A1_>VMC9$1T +M#H,A&&^__7=&=FWM100&!B(Z.@K1T5'P\_-%75T=R^85%16(BHI$5%0DHJ.C +M6*GOU#OOOF5]8?E**!72QZ:A]KS3;_UZI'>,_3LWLEI[NR:QCM$[SHWZFCCB +MJ;,Z]P8C[[!Y#Y^\"\#-XUIAH3;?NGTKE&8+K/_8N*'?KE6('8>8__889+/U +L'4/M-R?%0?)`8HA=3@\\=%%#S78*&O@_Q_*6F_+5?!\`````245.1*Y"8((` +` +end --- gnome-session-2.20.2.orig/debian/55gnome-session_gnomerc +++ gnome-session-2.20.2/debian/55gnome-session_gnomerc @@ -0,0 +1,12 @@ +# If we are running the GNOME session, source ~/.gnomerc + +BASESTARTUP=`basename "$STARTUP" | cut -d\ -f1` +if [ "$BASESTARTUP" = gnome-session -o \ + \( "$BASESTARTUP" = x-session-manager -a \ + "`readlink /etc/alternatives/x-session-manager`" = \ + /usr/bin/gnome-session \) ]; then + GNOMERC=$HOME/.gnomerc + if [ -r "$GNOMERC" ]; then + . "$GNOMERC" + fi +fi --- gnome-session-2.20.2.orig/debian/gnome-wm +++ gnome-session-2.20.2/debian/gnome-wm @@ -0,0 +1,118 @@ +#! /bin/sh + +# The user can specify his prefered WM by setting the WINDOW_MANAGER +# environment variable or setting the +# /desktop/gnome/applications/window_manager/default gconf key. +# +# This script has been heavily modified to support Debian's +# alternatives system. + +# sm-client-id value +SMID= +# default-wm value +DEFWM= + +#read in the arguments +GET= +for n in "$@" ; do + case "$GET" in + smid) + SMID=$n + GET= + ;; + defwm) + DEFWM=$n + GET= + ;; + *) + case "$n" in + --sm-client-id) + GET=smid + ;; + --default-wm) + GET=defwm + ;; + esac + ;; + esac +done + +# Get previously set window manager in gconf +if [ ! "$DEFWM" ]; then + DEFWM=`gconftool-2 -g /desktop/gnome/applications/window_manager/default 2>/dev/null` +fi + +if ! which "$WINDOW_MANAGER" > /dev/null; then + # Get --default-wm + if which "$DEFWM" > /dev/null; then + WINDOW_MANAGER=$DEFWM + if [ "$WINDOW_MANAGER" = x-window-manager ]; then + WINDOW_MANAGER=`readlink /etc/alternatives/x-window-manager 2>/dev/null` + fi + # if nothing is found, first use metacity + elif [ -x /usr/bin/metacity ]; then + WINDOW_MANAGER=/usr/bin/metacity + elif [ -x /usr/bin/compiz ]; then + WINDOW_MANAGER=/usr/bin/compiz + elif [ -x /usr/bin/sawfish ]; then + WINDOW_MANAGER=/usr/bin/sawfish + else + WINDOW_MANAGER=`readlink /etc/alternatives/x-window-manager 2>/dev/null` + fi +fi + +# If no window manager can be found, we default to xterm +if [ ! "$WINDOW_MANAGER" ]; then + echo "WARNING: No window manager can be found." + WINDOW_MANAGER=`readlink /etc/alternatives/x-terminal-emulator 2>/dev/null` +fi + +# If there is no xterm, they're really screwed. +if [ ! "$WINDOW_MANAGER" ]; then + echo "ERROR: No window manager and no xterm!" + exit 1 +fi + +# Now create options OPT1 and OPT2 based on the windowmanager used +OPT1= +OPT2= +if [ ! -z "$SMID" ] ; then + case `basename "$WINDOW_MANAGER"` in + sawfish) + OPT1=--sm-client-id=$SMID + CURRENT=Sawfish + ;; + compiz) + OPT1=--sm-client-id + OPT2=$SMID + CURRENT=compiz + ;; + metacity) + OPT1=--sm-client-id=$SMID + CURRENT=metacity + ;; + enlightenment|twm) + OPT1=-clientId + OPT2=$SMID + CURRENT=Enlightenment + ;; + fvwm|fvwm2) + OPT1=--clientid + OPT2=$SMID + CURRENT=fvwm + ;; + openbox) + OPT1=--sm-client-id + OPT2=$SMID + CURRENT=openbox + ;; + esac +fi + +# Store the selected WM with gconf +gconftool-2 -t string -s /desktop/gnome/applications/window_manager/current "$WINDOW_MANAGER" + +exec "$WINDOW_MANAGER" $OPT1 $OPT2 + +echo "ERROR: No window manager could run!" +exit 1 --- gnome-session-2.20.2.orig/debian/changelog +++ gnome-session-2.20.2/debian/changelog @@ -0,0 +1,1925 @@ +gnome-session (2.20.2-1ubuntu2) hardy; urgency=low + + * debian/patches/91_from_bugzilla_set_keyring_environment.patch: + - patch from bugzilla, set the keyring environment correctly + + -- Sebastien Bacher Tue, 18 Dec 2007 11:49:24 +0100 + +gnome-session (2.20.2-1ubuntu1) hardy; urgency=low + + * Merge with Debian, remaining changes: + - debian/control: + + Update maintainer field. + + Depend on gnome-power-manager. + + Require libgnome-settings-daemon-dev >= 1:2.21.2-0ubuntu2. + Fixes FTBFS. + - debian/patches/08_ubuntu_use_apport_on_crash.patch: + + use bug-buddy only if /apps/bug-buddy/run_on_crash is set, + otherwise use apport + - debian/patches/11_session_dialog.patch: + + new session dialog by Manu Cornet + - debian/patches/19_gnome-wm-tweaking.patch: + + set the current wm to gconf and get the default one from gconf + + use the x-terminal-emulator instead of xterm for gnome-wm + - debian/patches/20_dont_fade_on_ltsp_client.patch: + + patch by Oliver Grawert ,don't use fading on ltsp client + - debian/patches/series: + + Added ubuntu patches. + - debian/rules: + + install the icons for the new dialog + - debian/gnome-session.install: + + don't install the debian gnome-wm version + + -- Emilio Pozuelo Monfort Fri, 07 Dec 2007 19:26:11 +0100 + +gnome-session (2.20.2-1) unstable; urgency=low + + [ Josselin Mouette ] + * gnome-wm: + + Fix indentation. + + Support for compiz. Closes: #448560, thanks Andreas Klöckner. + + Also use compiz if metacity is unavailable. + * 02_gsd-spawn.patch: spawn gnome-settings-daemon using g_spawn + instead of DBus. Closes: #339785. + * Require libgnome-settings-daemon-dev 1:2.20.1-2 to obtain the g-s-d + path from pkgconfig. + * Switch to quilt for patch handling. + + Refresh 01_ignore-gdm-lang.patch. + * 90_autoconf.patch: re-run autoconf and autoheader in the sources. + + [ Loic Minier ] + * Only suggest desktop-base; the desktop meta packages should pull branding, + not gnome-session and gnome-session has a default branding anyway. + * New patch, 02_no_warning_crash, doesn't make critical warnings fatal when + the version number has 3 dots as in dev releases as this makes the desktop + too unstable. + * New upstream stable release; translation updates. + - Update patch 90_autoconf. + * Don't force an upper bound in gnome-control-center versions as this makes + updates too hard; some configuration might be missing in the interim, but + the session should still start properly. + * Rename README.debian to README.Debian. + * Disable the splash screen by default to speed up login and document how to + enable it in README.Debian. + * New patch, 10_update_notifier, adds update-notifier to the list of known + applications. + * New patch, 09_splash_hide, hides splash screen unconditionally when all + apps have been launched as to avoid it staying visible with broken apps. + * New patch, 03_powermanagement, shows hibernate option in logout dialog if + gdm supports it; will probably disappear with either the gnome-session or + the gdm rewrite. + * New patch, 90_from_bugzilla_fix_session_sounds, fixes playback of session + sounds; GNOME #466458. + * Refresh patches 03_powermanagement, 09_splash_hide, and 10_update_notifier + to apply cleanly. + * Rename patch 90_autoconf to 90_autoconf-autoheader to clarify that both + autoconf and autoheader need to be run. + + -- Loic Minier Tue, 27 Nov 2007 13:28:35 +0100 + +gnome-session (2.20.1-1ubuntu2) hardy; urgency=low + + * debian/control.in: + - don't conflicts with the new gnome-control-center versions + + -- Sebastien Bacher Sat, 24 Nov 2007 14:12:01 +0100 + +gnome-session (2.20.1-1ubuntu1) hardy; urgency=low + + * Sync with Debian + * debian/control.in: + - don't Recommends desktop-base + - gnome-session Depends on gnome-power-manager + - maintainer is the Ubuntu Desktop Team + * debian/gconf-defaults: + - use no splash image on the default installation + * debian/gnome-session.install: + - don't install the debian gnome-wm version + * debian/patches/02_no_warning_crash.patch: + - don't crash on warning, users expect stability + * debian/patches/03_powermanagement.patch: + - powermanagement features. + * debian/patches/08_ubuntu_use_apport_on_crash.patch: + - use bug-buddy only if /apps/bug-buddy/run_on_crash is set, + otherwise use apport + * debian/patches/09_splash_hide.patch: + - fix some issue with splashscreen staying on screen when not needed. + * debian/patches/10_update_notifier: + - added update-notifier to the list of known applications + * debian/patches/11_session_dialog.patch: + - new session dialog by Manu Cornet + * debian/patches/19_gnome-wm-tweaking.patch: + - set the current wm to gconf and get the default one from gconf + - use the x-terminal-emulator instead of xterm for gnome-wm + * debian/patches/20_dont_fade_on_ltsp_client.patch: + - patch by Oliver Grawert ,don't use fading on ltsp client + * debian/patches/90_from_bugzilla_fix_session_sounds.patch: + - patch from GNOME bug #466458, fix the session sounds + * debian/pixmaps: + - icons for the new dialog, by Manu Cornet + * debian/rules: + - install the icons for the new dialog + + -- Sebastien Bacher Wed, 21 Nov 2007 15:25:05 +0100 + +gnome-session (2.20.1-1) unstable; urgency=low + + * New upstream bugfix release. + + -- Sebastian Dröge Fri, 26 Oct 2007 12:21:23 +0200 + +gnome-session (2.20.0-2) unstable; urgency=low + + * Conflict with bug-buddy << 2.20 for breakpad support. + Closes: #443638. + * 01_ignore-gdm-lang.patch: ignore GDM_LANG. This only serves the + purpose to break anything that modifies locale settings. + Closes: #445646. + + -- Josselin Mouette Thu, 11 Oct 2007 22:35:32 +0200 + +gnome-session (2.20.0-1) unstable; urgency=low + + [ Josselin Mouette ] + * default.session: don't run vino-session as gnome-session has + included this feature for 3 years, d'uh. + + [ Sebastian Dröge ] + * New upstream release, no API changes: + + Clarifies session saving text (Closes: #259718). + * Upload to unstable, drop check-dist include. + * debian/control.in: + + Build depend on libgtk2.0-dev (>= 2.11.1) because gdk_window_set_opacity + was added in that version but configure checks for >= 2.3.1. + + -- Sebastian Dröge Thu, 20 Sep 2007 12:38:07 +0200 + +gnome-session (2.19.5-1) experimental; urgency=low + + * New upstream development releases. + - Target at experimental; include check-dist. + - Add a libglib2.0-dev (>= 2.13.0) build-dep. + - Drop patch 01_splash-memory-corruption, merged upstream. + - New patch, 60_dates-no-padding, fixes build on the 8th and 9th of the + month and in August and September; GNOME #454797. + * Drop obsolete patch to display a warning when switching from GNOME 1 to + GNOME 2, 02_conversion. + * Uuencode debian/gnome-debian-splash.png instead of shipping it as a SNG; + this makes the file smaller; build-depend on sharutils (priority standard) + instead of sng (priority optional). + * New upstream development release; bug fixes and translations. + - Drop patch 60_dates-no-padding; fixed differently upstream. + + -- Loic Minier Tue, 10 Jul 2007 18:44:14 +0200 + +gnome-session (2.18.3-1) unstable; urgency=low + + * New upstream stable release; translation. + + -- Loic Minier Fri, 06 Jul 2007 23:08:26 +0200 + +gnome-session (2.18.2-2) unstable; urgency=low + + * default.session: remove gnome-volume-manager, it is now run through + the autostart facility. + * gnome-wm: add support for openbox (closes: #429729). + * 01_splash-memory-corruption.diff: patch from upstream r4382, + backported by Michel Dänzer. Fixes memory corruption with some + icons (closes: #430630, #425742). + + -- Josselin Mouette Wed, 27 Jun 2007 21:28:43 +0200 + +gnome-session (2.18.2-1) unstable; urgency=low + + * New upstream stable release. + - Drop patch 01_clever_save; merged upstream. + + -- Loic Minier Mon, 28 May 2007 16:18:59 +0200 + +gnome-session (2.18.0-2) unstable; urgency=low + + [ Sven Arvidsson ] + * Add the only missing manpage (Closes: #252006) + + [ Josselin Mouette ] + * 01_clever_save.diff: stolen from upstream's SVN. Be more clever when + saving the session, so that e.g. multiple xterms are not forgotten. + Closes: #364463. + + -- Josselin Mouette Tue, 15 May 2007 20:45:31 +0200 + +gnome-session (2.18.0-1) unstable; urgency=low + + * New upstream major stable release; fixes and translations. + - Pass --with-at-spi-registryd-directory=/usr/lib/at-spi to configure. + - Drop patches 05_session_save, 07_kill_esd, merged upstream. + * Upload to unstable; drop check-dist include. + * Wrap build-deps and deps. + * Bump up Debhelper compatibility level to 5. + * Fix URL in copyright. + * Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on + cdbs >= 0.4.41. + * Prepend -z defs to LDFLAGS for additional safety. + * Rewrite rules generating the PNG splash; misc cleanups. + * Fix copyright to really document licensing and copyright holders. + + -- Loic Minier Sun, 22 Apr 2007 15:23:12 +0200 + +gnome-session (2.16.3-2) experimental; urgency=low + + * Merge SVN 2.14.3-1 up-to 2.14.3-6; r7581:8951. + - Drop patch 06_ro_po, merged upstream. + + -- Loic Minier Sat, 17 Mar 2007 12:24:06 +0100 + +gnome-session (2.16.3-1) experimental; urgency=medium + + [ Josselin Mouette ] + * Quote the readlink call to handle the case where the + x-session-manager alternative is broken (closes: #403931). + * Medium urgency because it has the potential to cause all X sessions + to fail starting. + + [ Loic Minier ] + * Add a get-orig-source target to retrieve the upstream tarball. + * Include the new check-dist Makefile to prevent accidental uploads to + unstable; bump build-dep on gnome-pkg-tools to >= 0.10. + * New upstream stable release; bug fixes and translations. + + -- Loic Minier Sat, 17 Mar 2007 12:04:03 +0100 + +gnome-session (2.16.2-1) experimental; urgency=low + + [ Josselin Mouette ] + * New upstream release. + * gnome-debian-splash.sng: updated. + * Update build-dependencies. + * Build-depend on libdbus-glib-1-dev and libgnome-keyring-dev. + * 03_implicit_conversion.diff: removed, integrated upstream. + * 05_session_save.diff: patch the session properties capplet. + + Add a "save current session" button. + + Remove the "ask on exit" checkbox, as it isn't used anymore. + + Add 36 translations based on the existing ones (minus the "- "). + + Remove the annoying "session saved" dialog from the session + manager. + + [ Loic Minier ] + * Fix watch file to track stable releases and use HTTP. + + [ Josselin Mouette ] + * Build-depend on libgnome-settings-daemon-dev. + * Tighten dependencies on gnome-control-center with ${gnome:Version}. + * Require gnome-pkg-tools 0.6. + * Call gnome-version.mk. + * 04_manpages.diff: removed, integrated upstream. + * 05_session_save.diff: update patch for new version. + + -- Josselin Mouette Mon, 27 Nov 2006 20:43:07 +0100 + +gnome-session (2.14.3-6) unstable; urgency=low + + * Add a get-orig-source target to retrieve the upstream tarball. + + -- Loic Minier Sat, 13 Jan 2007 23:30:57 +0100 + +gnome-session (2.14.3-5) unstable; urgency=medium + + * Quote the readlink call to handle the case where the + x-session-manager alternative is broken (closes: #403931). + * Medium urgency because it has the potential to cause all X sessions + to fail starting. + + -- Josselin Mouette Wed, 20 Dec 2006 21:37:44 +0100 + +gnome-session (2.14.3-4) unstable; urgency=low + + * 06_ro_po.diff: new Romanian translation from Eddy Petrișor + (closes: #403595). + + -- Josselin Mouette Tue, 19 Dec 2006 21:25:14 +0100 + +gnome-session (2.14.3-3) unstable; urgency=low + + * gnome-debian-splash.sng: grab new version, without the "2.14" + string. + * 05_session_save.diff: pack the "save session" button correctly. + + -- Josselin Mouette Tue, 10 Oct 2006 19:14:02 +0200 + +gnome-session (2.14.3-2) unstable; urgency=low + + * 05_session_save.diff: patch the session properties capplet. + + Allow editing of sessions (bugzilla #336820). + + Add a "save current session" button. + + Remove the "ask on exit" checkbox, as it isn't used anymore. + + Add 36 translations based on the existing ones (minus the "- "). + + Remove the annoying "session saved" dialog from the session + manager. + + -- Josselin Mouette Wed, 4 Oct 2006 22:26:30 +0200 + +gnome-session (2.14.3-1) unstable; urgency=low + + * New upstream release. + - Drop 01_create_autostart patch, merged upstream. + * Suggest gnome-user-guide | gnome2-user-guide. (Closes: #371106, #371107, + #371108, #371109, #371110, #371111, #371112, #371113, #371114, #371115, + #371116, #371117, #371118, #371119, #371120, #371121, #371122, #371123, + #371124, #371125, #371126, #371127, #371128, #371129, #371130, #371131, + #371132, #371133) + + -- Loic Minier Tue, 8 Aug 2006 11:15:38 +0200 + +gnome-session (2.14.2-1) unstable; urgency=low + + * New upstream release. + + -- Loic Minier Wed, 31 May 2006 18:36:45 +0200 + +gnome-session (2.14.1-2) unstable; urgency=low + + * 03_implicit_conversion.diff: Fix for implicit conversion + (closes: #368062). + + -- Josselin Mouette Thu, 25 May 2006 00:49:18 +0200 + +gnome-session (2.14.1-1) unstable; urgency=low + + * New upstream release. + * Standards-version is 3.7.2. + * 07_kill_esd.diff: updated. + * Build-depend on libwrap0-dev. + + -- Josselin Mouette Thu, 18 May 2006 07:51:21 +0200 + +gnome-session (2.14.0-2) unstable; urgency=low + + * Update watch file. + * 01_create_autostart.diff: create the autostart directory when it + doesn't exist (closes: #360590, #360431). + + -- Josselin Mouette Fri, 7 Apr 2006 09:59:27 +0200 + +gnome-session (2.14.0-1) unstable; urgency=low + + [ Loic Minier ] + * Launch esd with a cwd of "/" to avoid blocking pam_mount / pam_umount, + thanks Daniel Kahn Gillmor. (Closes: #335944) + [debian/patches/07_kill_esd.diff] + + [ Josselin Mouette ] + * New upstream release. + * Build-depend on libnotify-dev. + * Enable IPv6. + * gnome-debian-splash.sng: update for GNOME 2.14. + * 02_conversion.diff: updated for the new version. + * Build-depend on libgnome-desktop-dev. + + -- Josselin Mouette Sat, 1 Apr 2006 16:58:40 +0200 + +gnome-session (2.12.0-4) unstable; urgency=low + + * Only depend on dbus, dbus-1-utils isn't necessary. + * rules: don't remove empty directories (really closes: #340765). + + -- Josselin Mouette Sun, 22 Jan 2006 15:35:55 +0100 + +gnome-session (2.12.0-3) unstable; urgency=low + + * 03_splash.diff: removed. + * gconf-defaults: ship the defaults here. + * control.in: require debhelper 5.0.13. + + -- Josselin Mouette Sun, 8 Jan 2006 12:02:30 +0100 + +gnome-session (2.12.0-2) unstable; urgency=low + + * dirs: create /usr/share/images/desktop-base (closes: #340765). + * Upload to unstable. + + -- Josselin Mouette Sun, 8 Jan 2006 01:27:42 +0100 + +gnome-session (2.12.0-1) experimental; urgency=low + + * New upstream release. + * Edit upstream logo to add the debian swirl: + + Add it, using the sng format. + + Build-depend on sng. + + Call sng in the build target. + + Install it in /usr/share/pixmaps/splash/. + + 03_splash.diff: use it by default. + + Add it to the desktop-base alternative. + + Only recommend desktop-base. + * 02_conversion.diff: update to apply cleanly. + * Update watch file. + + -- Josselin Mouette Sun, 9 Oct 2005 03:19:58 +0200 + +gnome-session (2.10.0-8) unstable; urgency=low + + * rules: set --as-needed again. + * Rebuild against the latest gconf2 (closes: #330476, #330913). + * Build-depend on gconf2 2.10.1-6. + + -- Josselin Mouette Mon, 3 Oct 2005 20:57:52 +0200 + +gnome-session (2.10.0-7) unstable; urgency=medium + + * The "now all dependencies in GNOME are back to the old times + madness, why not do the same here?" release. + * rules: remove --as-needed (closes: #325639). + * default.session: + + Remove gnome-smproxy. It slows down the startup process and + sometimes hangs. + + Remove magicdev, which is deprecated. + + -- Josselin Mouette Sun, 4 Sep 2005 11:13:41 +0200 + +gnome-session (2.10.0-6) unstable; urgency=high + + Matt Kraai : + * Added a build-dependency on libxau-dev to fix FTBFS. (Closes: #323327) + + Loic Minier : + * Recommend the dbus-1-utils package as it is xorg starts a dbus session by + default now (use-session-dbus in /etc/X11/Xsession.options). + (Closes: #320015) + + -- J.H.M. Dassen (Ray) Sun, 28 Aug 2005 14:52:19 +0200 + +gnome-session (2.10.0-5) unstable; urgency=medium + + * Depend on gnome-control-center instead of capplets. + * Remove unuseful conflicts field. + * Fix a typo in the description (closes: #299992). + * Standards-version is 3.6.2. + + -- Josselin Mouette Sat, 25 Jun 2005 19:11:59 +0200 + +gnome-session (2.10.0-4) unstable; urgency=low + + * Undo previous changes, we are renaming the menus. + + -- Sebastien Bacher Thu, 9 Jun 2005 11:53:39 +0200 + +gnome-session (2.10.0-3) unstable; urgency=low + + * 70gnome-session_menus: set the XDG_CONFIG_DIRS environment variable, so + that the menus use GNOME's implementation. + * gnome-session.install: install the file in /etc/X11/Xsession.d. + + -- Josselin Mouette Wed, 8 Jun 2005 23:09:56 +0200 + +gnome-session (2.10.0-2) unstable; urgency=low + + * Upload to unstable. + * Update debian/watch. + * rules: avoid the LDFLAGS hack overwriting all environment. + + -- Josselin Mouette Tue, 7 Jun 2005 21:47:24 +0200 + +gnome-session (2.10.0-1) experimental; urgency=low + + * New upstream release. + * Update build-dependencies. + * 06_shutdown.diff: removed, similar functionality is integrated upstream. + * 20_ca_po.diff: removed, integrated upstream. + + -- Josselin Mouette Wed, 13 Apr 2005 20:15:32 +0200 + +gnome-session (2.8.1-6) unstable; urgency=medium + + * Use --as-needed option in LDFLAGS to reduce the dependencies. + + Incidentally removes the dependency upon libhowl0 (closes: #298849). + * gnome-wm: add support for fvwm (closes: #289969). + + -- Josselin Mouette Thu, 10 Mar 2005 21:44:15 +0100 + +gnome-session (2.8.1-5) unstable; urgency=medium + + * 20_ca_po.diff: fixes to the Catalan translation. + + -- Jordi Mallach Fri, 7 Jan 2005 17:54:47 +0100 + +gnome-session (2.8.1-4) unstable; urgency=medium + + * 09_splash_hide.diff: disabled, this patch only manages to make things + worse (closes: #284090). + * postinst,prerm: install alternative for the splash image + (closes: #282653). + + -- Josselin Mouette Sun, 5 Dec 2004 19:54:49 +0100 + +gnome-session (2.8.1-3) unstable; urgency=low + + * 09_splash_hide.diff: stop displaying splash when all applications are + launched, it avoids waiting when some of them are broken. Thanks seb128. + * 07_kill_esd.diff: kill esd upon logout (closes: #187730). + + -- Josselin Mouette Tue, 23 Nov 2004 15:08:47 +0100 + +gnome-session (2.8.1-2) unstable; urgency=low + + * Forward-port changes from 2.6 branch: + + 55gnome-session_gnomerc: support arguments to gnome-session. + + control.in: + - Depend on capplets. + - Recommend nautilus, gnome-panel and a window manager. + + patches/05_debian_gnome_upgrade_check.diff, patches/00_Makefile.am.diff, + patches/01_autoreconf.diff, gnome-1-to-2, gnome-launchers-1-to-2, + gnome-panel-1-to-2, gnome-stuff-1-to-2, nautilus-666666.desktop: + removed. + + gnome-session.install: don't install those. + + rules: don't have to fix the permissions. + + 02_conversion.diff: only print a warning, don't launch the broken + upgrade script + + gnome-volume-daemon: removed, obsolete. + * Upload to unstable. + * control.in: + + Bump build-dependencies to 2.8 versions. + + Build-depend on libgconf2-dev, not gconf2. + + -- Josselin Mouette Fri, 19 Nov 2004 14:40:42 +0100 + +gnome-session (2.8.1-1) experimental; urgency=low + + * New upstream release. + * debian/patches/03_splash.diff: (change from trunk) + - use the desktop-splash alternative as the default splash + * debian/control{,.in}: (change from trunk) + - the change above required desktop-base 0.3.15, so updated + Depends + * debian/patches/00_acinclude.m4.diff: + - removed, not needed anymore + * debian/patches/01_autoreconf.patch: + - updated, result of "libtoolize --force --copy; + aclocal-1.7; autoheader; automake-1.7 -acf; autoconf; rm -rf + autom4te.cache" with the 00_ patch applied. + + -- Gustavo Noronha Silva Sun, 24 Oct 2004 12:47:32 -0300 + +gnome-session (2.8.0-1) experimental; urgency=low + + * New upstream release. + * debian/patches/01_autoreconf.patch: + - updated. + + -- Sebastien Bacher Wed, 29 Sep 2004 21:43:42 +0200 + +gnome-session (2.6.2-5) unstable; urgency=low + + * 06_shutdown.diff: test for /var/run/gdm.pid (closes: #261969). + + -- Josselin Mouette Sat, 31 Jul 2004 12:23:23 +0200 + +gnome-session (2.6.2-4) unstable; urgency=low + + * 06_shutdown.diff: new, provide reboot or halt using gdmflexiserver if + available. + * rules: remove halt/reboot configure switches. + + -- Josselin Mouette Mon, 26 Jul 2004 23:22:29 +0200 + +gnome-session (2.6.2-3) unstable; urgency=low + + * Rebuild with working dh_gconf (closes: #258139, #258144). + + -- Josselin Mouette Thu, 8 Jul 2004 16:44:01 +0200 + +gnome-session (2.6.2-2) unstable; urgency=low + + * gnome-volume-daemon: + + removed, it didn't register correctly with the SM (closes: #253729). + + gnome-session.install: don't install it. + * default.session: + + start both magicdev and g-v-m, they now conflict with each other. + + -- Josselin Mouette Tue, 6 Jul 2004 22:30:07 +0200 + +gnome-session (2.6.2-1) unstable; urgency=low + + * New upstream release. + * 01_autoreconf.patch: updated, result of "libtoolize --force --copy; + aclocal-1.7; autoheader; automake-1.7 -acf; autoconf; rm -rf + autom4te.cache" with 00_ patches applied. + * gnome-volume-daemon: + + new script, runs gnome-volume-manager if available, or falls back + to magicdev. + + gnome-session.install: install it. + + rules: chmod it. + + default.session: use it instead of gnome-volume-manager. + * gnome-wm: store the window manager in the "current" gconf key, not the + "default" one. + + -- Josselin Mouette Tue, 29 Jun 2004 23:25:01 +0200 + +gnome-session (2.6.1-6) unstable; urgency=low + + * Gustavo Noronha Silva + - debian/README.Debian: + + did some small cleanups + + wrote a small explanation of why the splash screen is + different from GNOME's upstream and how to get it back + and set it up + * Josselin Mouette + - debian/default.session: + + add gnome-volume-manager, gnome-cups-icon and vino-session to the + default session. + - debian/postinst: + + make gnome-session's priority 50, to be greater than KDE. Thus the + default DM is gdm and the default session is gnome-session. + + -- Josselin Mouette Thu, 24 Jun 2004 14:02:52 +0200 + +gnome-session (2.6.1-5) unstable; urgency=low + + * Grrrr, configure doesn't check for libXmu while it is needed. Add + libxmu-dev to build-depends. + + -- Josselin Mouette Fri, 28 May 2004 15:05:42 +0200 + +gnome-session (2.6.1-4) unstable; urgency=low + + * Add explicit build dependencies on X libraries (closes: #251367). + + -- Josselin Mouette Fri, 28 May 2004 12:13:39 +0200 + +gnome-session (2.6.1-3) unstable; urgency=low + + * Upload to unstable. + * Tighten dependencies on liborbit2-dev. + + -- Josselin Mouette Wed, 26 May 2004 16:11:18 +0200 + +gnome-session (2.6.1-2) experimental; urgency=low + + * 55gnome-session_gnomerc: handle the case where we are running + x-session-manager, symlinked to gnome-session. + + -- Josselin Mouette Thu, 22 Apr 2004 11:37:15 +0200 + +gnome-session (2.6.1-1) experimental; urgency=low + + * New upstream release. + * Source .gnomerc at startup (closes: #242065): + - gnome-session.install: install 55gnome-session_gnomerc in Xsession + directory. + - 55gnome-session_gnomerc: source .gnomerc if we are running + gnome-session. + * gnome-wm: get the default window manager from gconf. It now uses the + /desktop/gnome/applications/window_manager/default key + (closes: #241361, #244694). The x-window-manager alternative is now only + used when nothing else is found. + * patches/01_autoreconf.diff: updated, result of + libtoolize --force --copy; aclocal-1.7; autoheader; automake-1.7 -acf; + autoconf; rm -rf autom4te.cache. + + -- Josselin Mouette Wed, 21 Apr 2004 17:12:10 +0200 + +gnome-session (2.6.0-3) experimental; urgency=low + + * rules: force poweroff and reboot paths (closes: #242091) + * gnome-wm: don't set the gconf key, it is unused. + + -- Josselin Mouette Wed, 7 Apr 2004 12:31:16 +0200 + +gnome-session (2.6.0-2) experimental; urgency=low + + * Move gnome-sesssion.install to gnome-session.install. + * Forward-port changes from 2.4.2-4: + + Use metacity by default: + - gnome-wm: use metacity or sawfish when it is available + - default.session: let gnome-wm discover the window manager + + docs: removed, cdbs takes care of these. + + postinst,prerm: remove gconf stuff, dh_gconf does it for us. + + control.in: require debhelper 4.1.84 + + Provide a session for the display managers: + - add gnome-session.desktop + - gnome-session.install: install it + + patches/: + - 01_configure.diff, 03_Makefile.in.diff: removed + - 00_Makefile.am.diff patches gnome-session/Makefile.am + + Use the splash screen from desktop-base by default. + - patches/03_splash.diff: for the code and gconf stuff + - control.in: depend on desktop-base. + + control.in: don't depend on debianutils, woody provides a sufficient + version. + + fix permissions: + - compat: use debhelper v4 + - rules: chmod 755 the debian scripts + * control.in: require 2.6 versions of packages. + * patches/: + + updated 00_acinclude.m4.diff includes a copy of + gnome2-macros/compiler-flags.m4 as aclocal 1.7 seems unable to + find it. + + updated 01_autoreconf.diff is the result of running + libtoolize --force --copy; aclocal; autoheader; automake -acf; + autoconf. + + update patches/03_splash.diff for the new version. + + -- Josselin Mouette Thu, 1 Apr 2004 15:33:35 +0200 + +gnome-session (2.6.0-1) experimental; urgency=low + + * New upstream release + * GNOME Team Upload + * Gustavo Noronha Silva : + + debian/control.in: + - set maintainer to Josselin Mouette + - Build-Depends on cdbs and gnome-pkg-tools + + debian/patches/*: + - converted all from dpatch to cdbs' simple-patch, some + of them were regenerated for various reasons, including + failure on apply and not including diff for Makefile.am + + debian/rules: + - use cdbs + + gnome-session.install: + - install some debian specific files that were installed + manually through debian/rules before + + -- Gustavo Noronha Silva Sun, 28 Mar 2004 13:23:41 -0300 + +gnome-session (2.4.2-2) unstable; urgency=low + + * Orphaned package. + + -- Christian Marillat Fri, 19 Mar 2004 15:50:59 +0100 + +gnome-session (2.4.2-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Wed, 14 Jan 2004 20:47:13 +0100 + +gnome-session (2.4.1-3) unstable; urgency=low + + * debian/prerm Unregister schemas file from the database. + + -- Christian Marillat Fri, 9 Jan 2004 15:42:34 +0100 + +gnome-session (2.4.1-2) unstable; urgency=low + + * Build with --with-window-manager=metacity (CLoses: #216769) + * Update desktop migration from .gnome-desktop to Desktop + * Update Build-dependencies to GNOME 2.4 packages + + -- Christian Marillat Sat, 1 Nov 2003 16:45:42 +0100 + +gnome-session (2.4.1-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Sat, 18 Oct 2003 17:27:21 +0200 + +gnome-session (2.2.2-4) unstable; urgency=low + + * Fix broken manpage (thanks to Marcin Owsiany) (Closes: #204604) + + -- Christian Marillat Sun, 10 Aug 2003 20:10:08 +0200 + +gnome-session (2.2.2-3) unstable; urgency=low + + * Fix typo in gnome-session.1 (Closes: #192575) + + -- Christian Marillat Mon, 14 Jul 2003 15:25:48 +0200 + +gnome-session (2.2.2-2) unstable; urgency=low + + * Add changes from Greg Hudson for conversion scripts. Thanks. + + -- Christian Marillat Wed, 28 May 2003 21:55:00 +0200 + +gnome-session (2.2.2-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 16 May 2003 17:22:21 +0200 + +gnome-session (2.2.1-1) unstable; urgency=low + + * New upstream release. + * Cleanup debian/prerm (Closes: #180928) + + -- Christian Marillat Tue, 11 Mar 2003 14:16:20 +0100 + +gnome-session (2.2.0.2-1) unstable; urgency=low + + * New upstream release. + * Add a note about GNOME 2 compliant window manager (Closes: #174021) + + -- Christian Marillat Tue, 4 Feb 2003 15:26:22 +0100 + +gnome-session (2.2.0.1-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Wed, 22 Jan 2003 13:20:07 +0100 + +gnome-session (2.1.90-1) unstable; urgency=low + + * New upstream releae. + + -- Christian Marillat Sun, 19 Jan 2003 15:27:47 +0100 + +gnome-session (2.0.9-3) unstable; urgency=low + + * FIx manpage for gnome-session-save (Closes: #171661) + + -- Christian Marillat Wed, 4 Dec 2002 12:47:04 +0100 + +gnome-session (2.0.9-2) unstable; urgency=low + + * New pacthe against gnome-session/Makefile.in to really add the binaries + conversion. + + -- Christian Marillat Wed, 27 Nov 2002 13:11:27 +0100 + +gnome-session (2.0.9-1) unstable; urgency=low + + * New upstream release. + * Fix lintian warnings with manpages. + + -- Christian Marillat Fri, 15 Nov 2002 14:26:18 +0100 + +gnome-session (2.0.8-8) unstable; urgency=low + + * Handle fully-qualified panel path in conversion script. + + -- Christian Marillat Wed, 6 Nov 2002 17:14:54 +0100 + +gnome-session (2.0.8-7) unstable; urgency=low + + * Fix wrong indentation (Closes: #167454) + + -- Christian Marillat Sat, 2 Nov 2002 19:27:57 +0100 + +gnome-session (2.0.8-6) unstable; urgency=low + + * Colin's fix : + * Correctly transitions the background + * Handles the multiload applet + * Handles aligned panels + * Tries to convert menu items + * Doesn't crash on invalid UTF-8 + * Doesn't crash on an empty launchers dir + * Me : + * Don't try to overwrite gconf gnome-terminal configuration + + -- Christian Marillat Fri, 1 Nov 2002 18:05:20 +0100 + +gnome-session (2.0.8-5) unstable; urgency=low + + * Add a note in the confirmation dialog box for how to report bugs. + + -- Christian Marillat Mon, 28 Oct 2002 21:01:02 +0100 + +gnome-session (2.0.8-4) unstable; urgency=low + + * Oops, forget to apply yesterday changes in conversion code. + + -- Christian Marillat Mon, 28 Oct 2002 17:32:53 +0100 + +gnome-session (2.0.8-3) unstable; urgency=low + + * Fix gnome-wm. Gnome don't like symlink. + * This package contains conversion scripts for GNOME 1 to GNOME 2 (Closes: #153682) + * Upload to unstable + + -- Christian Marillat Mon, 28 Oct 2002 11:34:22 +0100 + +gnome-session (2.0.8-2) experimental; urgency=low + + * Uploaded officially to experimental + + -- Christian Marillat Tue, 22 Oct 2002 18:00:11 +0200 + +gnome-session (2.0.8-1.1upgradetest) experimental; urgency=low + + * EXPERIMENTAL TESTING RELEASE + * Add upgrade scripts. + + -- Colin Walters Sat, 19 Oct 2002 22:54:05 -0400 + +gnome-session (2.0.8-1) experimental; urgency=low + + * New upstream release. + * Add metacity in gnome-wm + + -- Christian Marillat Mon, 14 Oct 2002 16:09:35 +0200 + +gnome-session (2.0.7-4) experimental; urgency=low + + * Change the default window manager in the default sesion file by + x-window-manager (was gnome-wm) + + -- Christian Marillat Wed, 9 Oct 2002 23:43:32 +0200 + +gnome-session (2.0.7-3) experimental; urgency=low + + * Upload with original tarball. + + -- Christian Marillat Sun, 29 Sep 2002 17:40:55 +0200 + +gnome-session2 (2.0.7-2) experimental; urgency=low + + * Update to standards version 3.5.7 + * Upload without the 2 suffix + * Update libgnomeui-dev build-dependency to 2.0.5-3 + + -- Christian Marillat Sat, 28 Sep 2002 17:59:43 +0200 + +gnome-session2 (2.0.7-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Thu, 5 Sep 2002 18:56:12 +0200 + +gnome-session2 (2.0.6-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 27 Aug 2002 10:38:48 +0200 + +gnome-session2 (2.0.5-3) experimental; urgency=low + + * Build against the latest gconf2 1.2.1-2.1 (Closes: #157727) + + -- Christian Marillat Thu, 22 Aug 2002 19:04:39 +0200 + +gnome-session2 (2.0.5-2) experimental; urgency=low + + * Add esound in build-depends + * Build against the latest libgnomevfs2-dev 2.0.2-4 + + -- Christian Marillat Fri, 16 Aug 2002 17:31:02 +0200 + +gnome-session2 (2.0.5-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Thu, 8 Aug 2002 16:28:59 +0200 + +gnome-session2 (2.0.4-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 5 Aug 2002 19:40:25 +0200 + +gnome-session2 (2.0.3-1) experimental; urgency=low + + * New upstream release. + * Use gconftool-2 to store window-manager preference + + -- Christian Marillat Tue, 30 Jul 2002 18:16:53 +0200 + +gnome-session2 (2.0.2-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 15 Jul 2002 15:20:51 +0200 + +gnome-session2 (2.0.1-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 17 Jun 2002 15:46:23 +0200 + +gnome-session2 (2.0.0-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 10 Jun 2002 16:03:08 +0200 + +gnome-session2 (1.5.21-1) experimental; urgency=low + + * new upstream release. + + -- Christian Marillat Tue, 4 Jun 2002 16:34:27 +0200 + +gnome-session2 (1.5.20-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Tue, 28 May 2002 15:22:12 +0200 + +gnome-session2 (1.5.19-3) experimental; urgency=low + + * debian/rules Add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 in install target. + * debian/postinst check if schemas files are present before calling + gconftool-2 + + -- Christian Marillat Mon, 27 May 2002 16:03:24 +0200 + +gnome-session2 (1.5.19-2) experimental; urgency=low + + * Fix a typo in postinst (Closes: #147600) + + -- Christian Marillat Tue, 21 May 2002 11:15:32 +0200 + +gnome-session2 (1.5.19-1) experimental; urgency=low + + * New upstream release + * Add support for DEB_HOST_GNU_TYPE DEB_BUILD_GNU_TYPE and + DEB_BUILD_OPTIONS + + -- Christian Marillat Wed, 15 May 2002 20:04:03 +0200 + +gnome-session2 (1.5.18-1) experimental; urgency=low + + * new upstream release. + + -- Christian Marillat Mon, 29 Apr 2002 20:45:49 +0200 + +gnome-session2 (1.5.17-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 22 Apr 2002 16:34:38 +0200 + +gnome-session2 (1.5.16-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Wed, 17 Apr 2002 15:41:33 +0200 + +gnome-session2 (1.5.15-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 1 Apr 2002 22:33:26 +0200 + +gnome-session2 (1.5.13-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 29 Mar 2002 16:38:29 +0100 + +gnome-session2 (1.5.11-1) experimental; urgency=low + + * new upstream release. + + -- Christian Marillat Tue, 26 Feb 2002 15:10:17 +0100 + +gnome-session2 (1.5.10-3) experimental; urgency=low + + * Fix broken postinst. Thanks to Mark Nelson. + + -- Christian Marillat Mon, 25 Feb 2002 17:44:33 +0100 + +gnome-session2 (1.5.10-2) experimental; urgency=low + + * Should build-depends on intltool + + -- Christian Marillat Mon, 25 Feb 2002 15:37:19 +0100 + +gnome-session2 (1.5.10-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Mon, 18 Feb 2002 22:31:35 +0100 + +gnome-session2 (1.5.9-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Fri, 15 Feb 2002 00:40:12 +0100 + +gnome-core2 (1.5.7-1) experimental; urgency=low + + * New upstrema release. + + -- Christian Marillat Tue, 5 Feb 2002 14:41:01 +0100 + +gnome-core2 (1.5.4-1) experimental; urgency=low + + * New upstream release. + + -- Christian Marillat Sun, 20 Jan 2002 16:21:40 +0100 + +gnome-core (1.4.0.4-16) unstable; urgency=low + + * Fix typo in gnome-terminal.wrapper (Closes: #127768) + * Remove gnome-hint patche (Closes: #121390, #129184) + * debian/control Replace libpng-dev by libpng2-dev in Build-Depends + (Closes: #128377) + + -- Christian Marillat Mon, 14 Jan 2002 15:04:52 +0100 + +gnome-core (1.4.0.4-15) unstable; urgency=low + + * Build against the latest gnome-libs to update the libzvt2 dependency + (Closes: #127309, #127271) + * debian/control Replace libpng2-dev by libpng-dev in Build-Depends. + * debian/control Build-depends on libzvt-dev (>= 1.4.1.2-9) + + -- Christian Marillat Tue, 1 Jan 2002 15:27:43 +0100 + +gnome-core (1.4.0.4-14) unstable; urgency=low + + * Fix typo in gnome-terminal.1 (Closes: #123073) + * Fix base page for doc-base in libpanel-applet-dev package. + * Fix typo in gnome-help documentation (Closes: #126566) + * Apply patch to allows meta functionnality in gnome-terminal (Closes: #50427) + + -- Christian Marillat Thu, 27 Dec 2001 14:47:36 +0100 + +gnome-core (1.4.0.4-13) unstable; urgency=low + + * Default font for gnome-terminal is "fixed" only (Closes: #117126) + * Patch against gnome-hint.c Don't use gettext for font descriptor + (Closes: #116606) + * Patch against gnome-about/Makefile.am to use new gdk_pixbuf include path + (Closes: #120312) + * Revert my change on logout.c Only root can shutdown/reboot from the + panel (Closes: #119316, #120127) + + -- Christian Marillat Tue, 20 Nov 2001 11:36:05 +0100 + +gnome-core (1.4.0.4-12) unstable; urgency=low + + * gnome-wm honour --default-wm (Closes: #115668) + * Build against the latest gnome-libs + + -- Christian Marillat Sun, 21 Oct 2001 14:11:19 +0200 + +gnome-core (1.4.0.4-11) unstable; urgency=low + + * debian/control lynx comeback in Recommends (Closes: #114142) + * debian/control replaces xml-i18n-tools by intltool (Closes: #115024) + * Fix automake 1.5 errors. Thanks to Denis Barbier (Closes: #114369) + * Build against the latest orbit (Closes: #115309) + + -- Christian Marillat Fri, 12 Oct 2001 10:46:49 +0200 + +gnome-core (1.4.0.4-10) unstable; urgency=low + + * Fix typo in panel/panel.hints (Closes: #113590) + * Replace lynx by w3m (Closes: #113613) + * Move gnome-terminal.desktop in gnome-terminal package (Closes: #113736) + * Move gnome-help.desktop in gnome-help package + * debian:control Add Replaces: gnome-panel-data (<= 1.4.0.4-9) for above + * Patch against gsm/logout.c Now you can reboot/halt your machine from the + panel. This only work for root, because shutdown doesn't understand the + -a option. Read README.debian in gnome-panel package. + * debian/rules Remove less files in clean target (Closes: #114020) + + -- Christian Marillat Mon, 1 Oct 2001 11:34:06 +0200 + +gnome-core (1.4.0.4-9) unstable; urgency=low + + * Add Debian menu for panel and gmenu (Closes: #112176) + * Remove /var/lib/gnome on purge (Closes: #113005) + * Remove /etc/gnome/config on purge (Closes: #112994) + * Remove /etc/gnome on purge (Closes: #112995) + * debian/control replace cygnus-stylesheets by docbook-utils + + -- Christian Marillat Mon, 24 Sep 2001 18:39:19 +0200 + +gnome-core (1.4.0.4-8) unstable; urgency=high + + * High urgency, because the current release in testing has a missing + dependency on libpanel-applet0 and the panel package doesn't work if + libpanel-applet0 isn't installed (Closes: #111517) + * debian/control for gnome-help, move lynx from depends to recommends + (Closes: #109652) + * debian/control gnome-panel suggests fortune-mod (Closes: #110865) + * debian/control gnome-help suggests gnome-users-guide not + gnome-users-guide-en (Closes: #111200) + * Don't change cursor color (Closes: #97697) + * Change default font for gnome-terminal (Closes: #111319) + + -- Christian Marillat Fri, 7 Sep 2001 15:06:07 +0200 + +gnome-core (1.4.0.4-7) unstable; urgency=low + + * Fix path in gnome-session.1 (Closes: #107724) + * debian/*.sgml Use docbook 4.1 + * debian/control gnome-help-data Replaces gnome-terminal (<= 1.0.55-2) + (CLoses: #107948) + + -- Christian Marillat Wed, 8 Aug 2001 08:07:56 +0200 + +gnome-core (1.4.0.4-6) unstable; urgency=low + + * debian/rules for dh_makeshlibs replace libcapplet0 by libpanel-applet0 + (Closes: #105772) + + -- Christian Marillat Wed, 18 Jul 2001 19:02:59 +0200 + +gnome-core (1.4.0.4-5) unstable; urgency=low + + * Patch against gnome-edit to use EDITOR if the default gnome editor is + unavailable. + * Remove gnome-wm patch, and move the patched file in debian/ + * debian/gnome-wm Try to exec $WINDOW_MANAGER before x-window-manager + (Closes: #103430 + * New patch from Michael Urman to hide task names in tasklist_applet + (Closes: #104587) + + -- Christian Marillat Sat, 14 Jul 2001 16:58:12 +0200 + +gnome-core (1.4.0.4-4) unstable; urgency=low + + * Gnome-help Provides: man-browser, www-browser, info-browser + * Switch to debhelper V3 + * Change libraries versionning to (>= 1.4.0.2-3) instead of the latest + package number. + * Build-depends on groff-base instead of groff + + -- Christian Marillat Fri, 22 Jun 2001 17:02:37 +0200 + +gnome-core (1.4.0.4-3) unstable; urgency=low + + * New patch: Allows to save/load the keyboard secure state (Closes: #83028) + * New patch: Remove a warning in configure + * gnome-help replace gnome-panel-data (Closes: #99499) + * Build-depends on xml-i18n-tools (>= 0.8.4.cvs.20010530-1) (Close: #98784) + + -- Christian Marillat Sat, 2 Jun 2001 14:41:45 +0200 + +gnome-core (1.4.0.4-2) unstable; urgency=low + + * New patch: Replace Distribution by Debian in configuration dialog box. + * New patch: Upstream patch to allow Debian menu in default configuration. + * New patch: Fix some wrong path. + * Move gnome-feedback doc from gnome-help-data to gnome-core. + + -- Christian Marillat Tue, 15 May 2001 15:36:51 +0200 + +gnome-core (1.4.0.4-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Wed, 9 May 2001 23:56:27 +0200 + +gnome-core (1.4.0.3-2) unstable; urgency=low + + * Remove debugging code (/tmp/languages file) + + -- Christian Marillat Mon, 7 May 2001 16:48:18 +0200 + +gnome-core (1.4.0.3-1) unstable; urgency=low + + * New upstream release. + * New: tooltips for long task names in tasklist_applet (Closes: #63898) + + -- Christian Marillat Thu, 3 May 2001 15:51:58 +0200 + +gnome-core (1.4.0.2-3) unstable; urgency=low + + * Fix wrong dif.gz file (Closes: #94499) + * Build against the latest lignome-dev (Closes: #95301, #95691) + * gnome-terminal should depends on gnome-bin (Closes: #95498) + * Doesn't build against gtkhtml this break fonts displaying (Closes: #92187) + + -- Christian Marillat Tue, 1 May 2001 11:03:14 +0200 + +gnome-core (1.4.0.2-2) unstable; urgency=low + + * New/old patch against manpages, never applied by upstream. + * gnome-help depends on lynx. + * Use x-terminal-emulator in gnome-download instead of xterm. + * Move gnome-convert and gnome-download from gnome-core to gnome-help. + * Move gnome-login-check from gnome-core to gnome-session. + * Move gnome-panel-add-launcher from gnome-core to gnome-panel. + * Move sesion-properties* from gnome-core to gnome-session. + * debian/control Add Replaces for the changes above. + * Write manpages (Closes: #87085) + + -- Christian Marillat Tue, 17 Apr 2001 18:54:15 +0200 + +gnome-core (1.4.0.2-1) unstable; urgency=low + + * New upstream release. + * Build-depends on latest gettext (Closes: #93198) + * Icon box in menu editor is back (Closes: #91938) + * Build-depends on latest xml-i18n-tools and libgnome-dev + + -- Christian Marillat Wed, 11 Apr 2001 15:16:20 +0200 + +gnome-core (1.4.0.1-2) unstable; urgency=low + + * Build depends on versionned gettext 0.10.35-17 (Closes: #93198) + * Write manpage for gnome-session and add docbook-to-man in build-depnds + * Write manpages for gnome-help (Closes: #87089) + + -- Christian Marillat Sat, 7 Apr 2001 15:52:40 +0200 + +gnome-core (1.4.0.1-1) unstable; urgency=low + + * New upstream release. + * debian/gnome-terminal.wrapper change -T by -t (Closes: #90847) + * debian/gnome-session.README.debian remove references to .xsession. This + is now obsolete by the new x-session-manager scheme. + + -- Christian Marillat Sun, 1 Apr 2001 15:01:51 +0200 + +gnome-core (1.4.0-2) unstable; urgency=low + + * Build depends on libglade-gnome0-dev (>= 0.16-1) (Closes: #90416) + * debian/control Add Build-Conflicts: libgtkhtml-dev (>= 0.7-1) (Closes: #90700) + + -- Christian Marillat Thu, 22 Mar 2001 16:44:12 +0100 + +gnome-core (1.4.0-1) unstable; urgency=low + + * New upstream release. + * Gnome-core replaces gnome-control-center 1.2.3-1 (Closes: #90124) + * Remove manpages patche included by upstream. + * gnome-session don't always saves session on logout (Closes: #89630) + * Can add a launcher in the panel (Closes: #90018) + * Deskguide don't crashes on Fill with mini-images (Closes: #86952) + * Deskguide don't fail to run (Closes: #89769) + * Pager applet don't fail to run (Closes: #89025) + + -- Christian Marillat Mon, 19 Mar 2001 13:01:26 +0100 + +gnome-core (1.3.1-2) unstable; urgency=low + + * Remove taslisk-applet manpage (Closes: #88994) + * New patch against gnome-terminal.1 (Closes: #89005) + * Move /usr/lib/libtasklist_applet.so in libpanel-applet0 + (Closes: #89053, #89008, #89012, #89091, #89003) + * Gnome-terminal replace gnome-help-data (<= 1.0.55-2) (Closes: #87910) + + -- Christian Marillat Sat, 10 Mar 2001 10:45:14 +0100 + +gnome-core (1.3.1-1) unstable; urgency=low + + * New upstream release. + * Removed default.session patch + * debian/control Add Replaces: gnome-control-center (<= 1.2.2-10), because + the session-properties-capplet is now in this package. + * debian/{postinst,prerm} Call scrollkeeper + * debian/control Add scrollkeeper, xml-i18n-tools and libglade-gnome0-dev in + build-depends and scrollkeeper in depends for gnome-core + * Menu and laucnh keys works now (Closes: #86955) + * Dead keys work in gnome-terminal (Closes: #63102) + * Gnome-terminal isn't broken (Closes: #86752) + * New patch htmlurl.h (This file was broken by upstream author) + * XFMail doesn't crash the tasklist applet in this release (Closes: #88515) + * debian/gnome-core.menu New file for the session properties capplet + + -- Christian Marillat Mon, 5 Mar 2001 11:40:15 +0100 + +gnome-core (1.2.4-11) unstable; urgency=low + + * Update (again) the Build-depends field (Closes: #87419) + * Add a debian directory for the gnome-help-browser and add suggest doc-base + for gnome-help. Now we can watch debian documentation registered with doc-base. + * Add a lintian override file for libpanel-applet0 + + -- Christian Marillat Sun, 25 Feb 2001 16:14:09 +0100 + +gnome-core (1.2.4-10) unstable; urgency=low + + * Update the Build-depends field (Closes: #86441, #87419) + * Call update-alternatives only in remove (gnome-terminal, gnome-session) (Closes: #87327, #87328) + + -- Christian Marillat Sat, 24 Feb 2001 18:03:20 +0100 + +gnome-core (1.2.4-9) unstable; urgency=low + + * Remove abandonned /etc/CORBA/servers/bad-applet.goad (Closes: #84950) + * Build against the latest gnome-libs (1.2.11) (Close: #85932) + + -- Christian Marillat Wed, 14 Feb 2001 13:49:26 +0100 + +gnome-core (1.2.4-8) unstable; urgency=low + + * debian/control Add Replaces: gnome-help-data (<< 1.0.55-2) for + gnome-help (Closes: #80974) + * debian/gnome-help.mime Rewrote (Closes: #82891) + * debian/control gnome-core depends on gnome-bin (Closes: #82951) + * Wrote gnome-panel.README.Debian (Closes: #82954) + + -- Christian Marillat Mon, 22 Jan 2001 16:04:58 +0100 + +gnome-core (1.2.4-7) unstable; urgency=low + + * Added gnome-bin (>= 1.2.0) in gnome-session Depends field (Closes: #80589, #80595, #80733) + + -- Christian Marillat Wed, 27 Dec 2000 19:24:08 +0100 + +gnome-core (1.2.4-6) unstable; urgency=low + + * Apply patch to gnome-run to call x-terminal-emulator (Closes: #80219) + * debian/gnome-terminal.wrapper This is -t not -T close (Closes: #80405) + + -- Christian Marillat Sun, 24 Dec 2000 03:27:12 +0100 + +gnome-core (1.2.4-5) unstable; urgency=low + + * Install gnome-terminal.wrapper as x-terminal-emulator and remove + debian/patches/gnome-terminal.dpatch (Closes: 64326) + Thanks to Eric Gillespie, Jr. + * Add Recommends: gnome-applets on gnome-panel (Closes: #72208) + * gnome-sesion provides x-session-manager and install alternative (Closes: #60667) + * Added hints=Gnome for all menu files. + + -- Christian Marillat Wed, 20 Dec 2000 23:19:55 +0100 + +gnome-core (1.2.4-4) unstable; urgency=low + + * Call x-terminal-emulator in gnome-wm and add depends on the latest debianutils + for gnome-session. Thanks to Joseph Carter for the file + (Closes: #79776) + * Rewrote default.session patch + * Add patch form Doug Larrick for gwmthumbnail.c (Closes: #78550) + + -- Christian Marillat Sun, 17 Dec 2000 12:04:54 +0100 + +gnome-core (1.2.4-3) unstable; urgency=low + + * Change gnome-help.mime to call the right file (Closes: #77986) + Thanks Malcolm Parsons for the patch. + * Patch gsm/default.in (two entries with same id) (Closes: #78276) + Thanks to Normal User (Nice name) + * Move gnome-control-center from Depends to Suggests. + * Remove libgtkhtml-dev from Build-Depends (Closes: #79527) + + -- Christian Marillat Wed, 13 Dec 2000 18:01:34 +0100 + +gnome-core (1.2.4-2) unstable; urgency=low + + * Remove README and NEWS files (Closes: #77250) + * Disable thumbnails by default in deskguide_applet (Closes: #77205) + * debian/rules --with-window-manager is now sawfish (was x-window-manager) + and rewrote debian/patches/gnome-wm.dpatch to remove x-window-manager (Closes: #77401) + * Should close this old bug (Closes: #51198) + * Patch gnome-edit to use x-terminal-emulator instead of xterm. + + -- Christian Marillat Mon, 20 Nov 2000 11:35:55 +0100 + +gnome-core (1.2.4-1) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Thu, 16 Nov 2000 00:43:15 +0100 + +gnome-core (1.2.3.1-1) unstable; urgency=low + + * New upstream release. + * Add gnome-help example and manpage in gnome-help package (Closes: #49977) + * This release should close these old bugs (Closes: #60561, #60768, #45053) + * Gnome-panel don't use all CPU time (Closes: #75251, #60209) + * Remove gmenu patch included by upstream. + + -- Christian Marillat Wed, 8 Nov 2000 17:09:42 +0100 + +gnome-core (1.2.3-1) unstable; urgency=low + + * New upstream release. + * Debian menus aren't empty (Closes: #70470) + * Launcher can find icon (Closes: #62502) + + -- Christian Marillat Tue, 24 Oct 2000 15:51:11 +0200 + +gnome-core (1.2.2.1-3) unstable; urgency=low + + * Add gnome-terminal.prerm for update-alternatives --remove (Closes: #74451) + * Patch gnome-terminal to accept -T option (Closes: #74450) + * Move README.debian in gnome-session package (Closes: #60440) + * mesg work in gnome-terminal (Closes: #71728) + * Upstream fix these old bugs in Gnome-terminal + Problem with menubar (Closes: #57516) + Problem with console-apt Closes: #60079) + Problem with screen (Closes: #50156) + * Binaries don't should go in /usr/X11R6/bin (Closes: #24031) + Quoting Debian policy : + "Packages using the X Window System should abide by the FHS standard" + "whenever possible; they should install binaries, libraries, manual" + "pages, and other files in FHS-mandated locations wherever possible." + "This means that files must not be installed into /usr/X11R6/bin/'" + * hostname isn't harcoded (Closes: #72536) + * Error messages mention Lynx (Closes: #62216) + * Display correctly deskuse.html (Closes: #49974) + * Add patch from malcolm (Closes: #64820) + + -- Christian Marillat Sat, 14 Oct 2000 23:39:49 +0200 + +gnome-core (1.2.2.1-2) unstable; urgency=low + + * Typo in debian/gnome-terminal.postinst + * Add gnome-terminal manpage (Closes: #69188) + * Closes: #63103 already closed in 1.2.1-0.2 (typo in debian/changelog) + * Gnome-terminal write to /var/run/utmp (Closes: #59053) + * delete/backspace keys works (Closes: #57198) + * Install GnomeHelp file in /etc/gnome/config (Closes: #73012) + * Convert png icons in xpm for Debian menu. + * Rearange documentation for dhelp (Closes: #56672) + + -- Christian Marillat Thu, 5 Oct 2000 00:59:44 +0200 + +gnome-core (1.2.2.1-1) unstable; urgency=low + + * New upstream release. + * Patch all manpages (Closes: #70009) + * gnome-panel 1.0.55-2.0.1 (sparc) is now installable (Closes: #69075, #71570) + * gmenu don't jam up all translations (Closes: #46446) + * panel remember its configuration between session + (Closes: #47734, #54190) + * Icons are now centered (Closes: #63868) + * Bugs closed by previous NMU in gnome-panel (Closes: #40036, #52584, #54755, + #58278, #61083, #69428)) + * libgen_util_applet.so installed in 1.2.1-0.2 (Closes: #69463) + * debian/control remove Conflicts: asclock (Closes: #52077) + * gnome-help 1.0.55-2.0.1 (sparc) is now installable (Closes: #69356) + * Bugs closed by previous NMU in gnome-help (Closes: #49734, #56081, #58679, #58973) + * debian/control move gmc from Recommends to Suggests (Closes: #59415) + * The first search in gnome-wm search is x-window-manager + (Closes: #50940, #65969, #62143) + * Bug closed in 1.2.2-1 (README.debian in gnome-session package) (Closes: #66219) + * Bugs closed by previous NMU in gnome-terminal + (Closes: #64579, #63592, #63332, #56584, #55477, #54428) + * gnome-terminal provide x-terminal-emulator (Closes: #61805, #53994, #56225) + + -- Christian Marillat Wed, 27 Sep 2000 16:02:16 +0200 + +gnome-core (1.2.2-1) unstable; urgency=low + + * New maintainer, thanks James. + * New upstream release. + * Switch to debhelper V2 + * Move README.debian in gnome-session package (Closes: #65235) and + update this file (Closes: #71339) + * Bug closed in 1.2.1-0.2 (Install missing libraries) (Closes: #69590, #70483) + * Bugs closed in 1.2.1-0.1 (typo close instead closes) (Closes: #53764, #54050) + * Remove gtkhtml patch. + * The desk guide show thumbnail (Closes: #72359) + * Missing package under sparc (Closes: #71438) + * debian/control add Conflicts: libgnome32 (<< 1.2.0-1) for gnome-panel (Closes: #72039) + * Added icons in Debian menu. + * Eject in drivemount check if '-u' is available (Closes: #63954) + * Patch gmenu to find Debian menu. + + -- Christian Marillat Tue, 26 Sep 2000 17:34:23 +0200 + +gnome-core (1.2.1-0.2) unstable; urgency=low + + * NMU. + * Install these libraries libfish_applet.so libgen_util_applet.so + libpanel_status.so (Closes: #69428, #69590) + * Copy latest gnome aclocal in macros/ and run macros/autogen.sh + This is needed to build gnome-help-browser against libgtkhtml4. + * In debian/control + gnome-session depends on gnome-panel (>= ${Source-Version}). + gnome-help depends on gnome-core (>= 1.2.0-0.1) no Source-Version. + gnome-terminal don't depends on gnome-core. + * URL's are clickable in gnome-terminal (Closes: 63103). + * debian/gnome-panel.undocumented removed printer_applet.1 + * Cut and paste work in gnome-terminal (Closes: #63592). + + -- Christian Marillat Wed, 23 Aug 2000 21:23:36 +0200 + +gnome-core (1.2.1-0.1) unstable; urgency=low + + * New upstream release (Closes: #58806, #66467) + * NMU. + * Standards-Version to 3.1.1.1 Added Build-depends field. + * Removed patches: dialer, drivemount-floppy, modemlights, term, + help-browser, debian-menu, url-match. + * Added patches: gtkhtml. + * Build against libgtkhtml3. Closes: #58679, #36806, #49734 + * Default manpath and infopath are wrong. Closes: #56081 + * gmenu segfaults. Close: #53764, #54050 + * gnome-panel: panel no longer works. Closes: #58278 + * gnome-panel: gnomepager-applet should put braces around. Closes: #52584 + * Backspace and delete work correctly. Closes: #54428 + * TERM never select xterm-debian. Closes: #56584, #55477, #64579 + * Disable arrows option is now saved. Closes: #54755 + * No more files in /usr/share. Closes: #61083 + * Show debian menus. Closes #66214 + * New help documentation for panel. Closes: #40036 + * Gnome-terminal write to /var/run/utmp. Closes #59053 + * gnome-terminal provide x-terminal-emulator. Closes #61805, #56225 + * README.Debian is here. Closes: #65235 + + -- Christian Marillat Tue, 25 Jul 2000 19:09:21 +0200 + +gnome-core (1.0.55-2) frozen unstable; urgency=low + + * Make x-window-manager run first by gnome-wm script to conform to + debian policy (Closes: #61617) (This is an important bug) + + -- James LewisMoss Sun, 21 May 2000 19:31:19 -0400 + +gnome-core (1.0.55-1) unstable; urgency=low + + * New upstream. + + -- James LewisMoss Sun, 2 Jan 2000 07:32:36 -0500 + +gnome-core (1.0.54-2) unstable; urgency=low + + * Fix the gnome-pager forgets size settings bug (was saved to wrong + section). Closes: #49839, #46845. + + -- James LewisMoss Fri, 12 Nov 1999 07:54:46 -0500 + +gnome-core (1.0.54-1) unstable; urgency=low + + * New upstream. + + -- James LewisMoss Thu, 4 Nov 1999 23:20:14 -0500 + +gnome-core (1.0.53-4) unstable; urgency=low + + * New maintainer. + + -- James LewisMoss Mon, 25 Oct 1999 23:17:31 -0400 + +gnome-core (1.0.53-3) unstable; urgency=low + + * Ok, I made a mistake by setgiding gnome-terminal to + utmp. Reverted the change. Closes: #47960 + + -- Raphael Hertzog Mon, 18 Oct 1999 19:17:27 +0200 + +gnome-core (1.0.53-2) unstable; urgency=low + + * gnome-session does launch a default window-manager. It does launch + gnome-wm if no other information has been found. gnome-wm now + reads the list of window managers from /etc/X11/window-managers + once it has tried gnome compliant wm. Closes: #38347, #47370 + * Patched gnome-terminal. TERM=xterm-debian again ... actually this + closes: #47552, #44960, #41065 + * gnome-terminal is now setgid utmp and can thus register itself + in the UTMP database. Closes: #40507 + * The URL match does now accept % characters. Closes: #47281 + * libpanel-applet0.postinst check for the changelog.gz mysteriously + staying around. Closes: #45871 + * Unreproducable bugs without answer from the submitter. + Closes: #41195, #42865 + + -- Raphael Hertzog Sat, 16 Oct 1999 19:52:38 +0200 + +gnome-core (1.0.53-1) unstable; urgency=low + + * New upstream version. + * gnome-session does now depend on gnome-panel and recommends + gmc (both are needed for a full Gnome desktop). + * gnome-terminal does not have a border. Closes: #38972 + + -- Raphael Hertzog Tue, 12 Oct 1999 21:17:58 +0200 + +gnome-core (1.0.52-1) unstable; urgency=low + + * New maintainer. Steve said that he wanted to give away some of + his packages. I've asked to take gnome-core, he never replied, so + I'm taking it but I will give it back to him if he wanted to + keep it. In the meantime I can better manage bugs with my name + in the Maintainer field. + * New upstream version. + + -- Raphael Hertzog Mon, 4 Oct 1999 21:28:18 +0200 + +gnome-core (1.0.50-0.1) unstable; urgency=low + + * New upstream version. + * NMU again. + + -- Raphael Hertzog Thu, 30 Sep 1999 22:10:03 +0200 + +gnome-core (1.0.41-0.1) unstable; urgency=low + + * New upstream version. + * NMU again. + + -- Raphael Hertzog Mon, 27 Sep 1999 13:10:31 +0200 + +gnome-core (1.0.9-0.1) unstable; urgency=low + + * New upstream version. Closes: #43253, #44098 + * Apply patches before configuring (and relaunch automake && autoconf + because one of the patches is applied on Makefile.am). + * NMU. Thanks to Christian Marillat for his work. + * Imlib bug corrected: closes: #39085 + * X11 binaries don't have to go /usr/X11R6/bin. Closes: #24031 + * The panel does start correctly wihout complaining about a + missing name service. Closes: #39380, #39634, #40478 + * The panel doesn't consume all CPU resources. Closes: #30654 + * The panel launches apps from where it has been launched itself. + Closes: #32319 + * The panel keeps the settings. Closes: #37052, #40579, #43496 + * Old core dump corrected upstream. Closes: #39400, #40328, #42167 + Closes: #44344, #44724, #44732, #44759, #44773 + * Bug in menu-method, not in gnome-panel. Already reported against + menu. Closes: #40089 + * cdplayer_applet works again. Closes: #42192 + * gnome pager works well: Closes: #42499, #42610 + * modem_lights draws itself correctly. Closes: #43861, #45055 + * The dialer applets doesn't exit when stopping while + not yet connected. Closes: #45287 + * No more Debian menu in the panel. Closes: #41040 + * GnomeICU works with this panel. Closes: #39626, #39515 + * gnome-panel-data conflicts with asclock. + Closes: #40712, #40715, #40808, #41430 + A better solution will be needed. Maybe put asclock in his own + package or create a asclock-data package that will be shared. + * Updated the modemlights patch. Closes: #43512 + * Added a patch for gnome-wm. Closes: #38366 + * Move lib{gkb,fish}_applet.so files to libgnome-applet0 (those are + not libraries to be linked with, just simple modules). Closes: #38596 + * Asclock works well without xearth (the code still mentions xearth + however). Closes: #40530 + * New patch (help-browser) for changing the default MANPATH and INFOPATH in + gnome-help-browser.c Closes: #41452 + * Moved help-browser to the new "Help" menu section. + * Added gnome-help.mime. Closes: #42205 + * Gnome-session does launch gnome-panel ! (I suppose that it failed + to launch since panel was broken). Closes: #42937 + * gnome-sesion doesn't core dump. Closes: #36640 + * The terminal does remember the TERM var. Closes: #43067 + * The terminal keeps its size when dragging the manu bar in and out. + Closes: #44762 + * The menu section of gnome-terminal corrected. Closes: #37635 + + -- Raphael Hertzog Wed, 22 Sep 1999 13:24:34 +0200 + +gnome-core (1.0.7-1) unstable; urgency=low + + * New upstream version. + * Removed "term" patch + + -- Steve Haslam Mon, 28 Jun 1999 01:36:31 +0100 + +gnome-core (1.0.6-2) unstable; urgency=low + + * debian-menu.dpatch: created to fix guessing Debian menus + (/etc/menu-methods/gnome-panel now) and to make Debian menus the default + instead of GNOME system menus. + * gnome-help now suggests gnome-users-guide-en (closes: #35724) + * /etc/menu-methods/gnome-panel now creates .directory files and searches + /usr/X11R6/include/X11/pixmaps for menu icons + + -- Steve Haslam Sun, 13 Jun 1999 15:28:52 +0100 + +gnome-core (1.0.6-1) unstable; urgency=low + + * New upstream version. + + -- Steve Haslam Sat, 5 Jun 1999 12:57:08 +0100 + +gnome-core (1.0.5-3) unstable; urgency=low + + * debian/gnome-terminal.menu: managed to lose change mentioned in last + revision. Replaced. + * debian/gnome-core.undocumented: removed gnome-wm.1 (it was in + gnome-session.undocumented too). + + -- Steve Haslam Mon, 31 May 1999 19:15:54 +0100 + +gnome-core (1.0.5-2) unstable; urgency=low + + * debian/gnome-terminal.menu: changed section to XShells (Bug#37635) + * debian/rules: added gnome-wm and gnome-edit to dh_undocumented call + (Bug#37632) + * debian/gnome.menu-method: added patch to honour needs=text (Bug#36928) + from Decklin Foster + * Call dh_strip when making libpanel-applet-dev (Closes Bug#31244) + * Removed /usr/share/gnome/apps/Debian symlink, (closes #38100) + * Sanified build system a la gnome-libs + * debian/control: made gnome-help, gnome-help-data and gnome-panel-data + packages. + + -- Steve Haslam Sun, 23 May 1999 14:35:44 +0100 + +gnome-core (1.0.5-1) unstable; urgency=low + + * New maintainer. + + -- Steve Haslam Tue, 11 May 1999 01:01:12 +0100 + +gnome-core (1.0.5-0.2) unstable; urgency=low + + * gnome-panel.files.in: added asclock themes, libgkb_applet.a + * gnome-core.files.in: added gnome-wm, gnome-edit + * term.dpatch: gnome-terminal TERM to xterm-debian rather than xterm + * gsm/Makefile.am: put default.session, default.wm in /etc/gnome + * debian/gnome-session.conffiles.in: added above two files + * debian/gnome-session.files.in: updated this too + + -- Steve Haslam Sun, 18 Apr 1999 16:47:23 +0100 + +gnome-core (1.0.5-0.1) unstable; urgency=low + + * Non-maintainer upload + * New upstream version + + -- Steve Haslam Thu, 15 Apr 1999 23:22:23 +0100 + +gnome-core (1.0.1-0.3) unstable; urgency=low + + * Weehay! More broken dependencies. This one libghttp -1.1, + a bogus package that only ever existed on my machine. + + -- Jules Bean Mon, 8 Mar 1999 08:24:00 +0000 + +gnome-core (1.0.1-0.2) unstable; urgency=low + + * Another NMU, this time to fix bogus dependencies on libgtop0 + and libglib1.1 + + -- Jules Bean Sun, 7 Mar 1999 14:21:12 +0000 + +gnome-core (1.0.1-0.1) unstable; urgency=low + + * NMU for GNOME-1.0 + * Hacked to patch SIGPIPE bug + * Don't delete GIFs in rules + + -- Jules Bean Fri, 5 Mar 1999 18:36:29 +0100 + +gnome-core (0.99.99pre1.0.0-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Fri, 26 Feb 1999 23:18:10 -0800 + +gnome-core (0.99.3.2-4) unstable; urgency=low + + * Recompiled yet again - dual dependency on libglib. + Fixes: BUG#32510 + + -- Jim Pick Thu, 28 Jan 1999 00:00:22 -0800 + +gnome-core (0.99.3.2-3) unstable; urgency=low + + * Recompiled again to due to dependencies. + + -- Jim Pick Sun, 24 Jan 1999 01:10:07 -0800 + +gnome-core (0.99.3.2-2) unstable; urgency=low + + * Recompiled with libgnome 0.99.4. + + -- Jim Pick Fri, 22 Jan 1999 16:44:45 -0800 + +gnome-core (0.99.3.2-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Wed, 20 Jan 1999 11:42:46 -0800 + +gnome-core (0.30-2) frozen unstable; urgency=low + + * Recompiled with new libs. + * Fixed reference to /usr/X11R6 in README.Debian. + * Added warnings (Gnome is ALPHA). + * Patched dialer_applet to use pon/poff. + * Patched drivemount_applet to default to /floppy. + + -- Jim Pick Tue, 24 Nov 1998 10:56:08 -0800 + +gnome-core (0.30-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Thu, 24 Sep 1998 21:28:02 -0700 + +gnome-core (0.28.1-1) unstable; urgency=low + + * New upstream release. + * Hopefully fixes panel applet bug. + + -- Jim Pick Wed, 19 Aug 1998 20:12:25 -0700 + +gnome-core (0.28-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Mon, 17 Aug 1998 12:59:26 -0700 + +gnome-core (0.27-1) unstable; urgency=low + + * New upstream release. + * Added /usr/doc/gnome + + -- Jim Pick Sat, 15 Aug 1998 14:21:06 -0700 + +gnome-core (0.25-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Thu, 6 Aug 1998 22:51:22 -0700 + +gnome-core (0.20-2) unstable; urgency=low + + * Added Debian menu-method for gnome-panel. Fixed Bug #24025 + (Thanks to Ray Dassen for reporting the bug, and Riku Voipio + who wrote the menu method for Gnome 0.12) + + -- Jim Pick Wed, 22 Jul 1998 20:22:00 -0700 + +gnome-core (0.20-1) unstable; urgency=low + + * New upstream release. + + -- Jim Pick Mon, 8 Jun 1998 12:00:08 -0700 + +gnome-core (0.13-1) unstable; urgency=low + + * Initial Release. + + -- Jim Pick Mon, 16 Mar 1998 15:27:43 -0800 --- gnome-session-2.20.2.orig/debian/default.session +++ gnome-session-2.20.2/debian/default.session @@ -0,0 +1,23 @@ +# This is the default session that is launched if the user doesn't +# already have a session. +# The RestartCommand specifies the command to run from the $PATH. +# The Priority determines the order in which the commands are started +# (with Priority = 0 first) and defaults to 50. +# The id provides a name that is unique within this file and passed to the +# app as the client id which it must use to register with gnome-session. +# The clients must be numbered from 0 to the value of num_clients - 1. + +[Default] +num_clients=4 +0,id=default0 +0,Priority=10 +0,RestartCommand=gnome-wm --sm-client-id default0 +1,id=default1 +1,Priority=40 +1,RestartCommand=gnome-panel --sm-client-id default1 +2,id=default2 +2,Priority=40 +2,RestartCommand=nautilus --no-default-window --sm-client-id default2 +3,id=default3 +3,Priority=60 +3,RestartCommand=gnome-cups-icon --sm-client-id default3 --- gnome-session-2.20.2.orig/debian/dirs +++ gnome-session-2.20.2/debian/dirs @@ -0,0 +1 @@ +/usr/share/images/desktop-base --- gnome-session-2.20.2.orig/debian/README.Debian +++ gnome-session-2.20.2/debian/README.Debian @@ -0,0 +1,70 @@ +gnome-session for DEBIAN +-------------------------- + +Splash screen +------------- + +Displaying a splash screen implies a noticeable delay in login for most users, +hence it's disabled by default. You can enable the default splash screen by +setting the splash_image GConf key to a relative path below /usr/share/pixmaps, +the default splash of the gnome-session package is +splash/gnome-debian-splash.png: + gconftool-2 -s /apps/gnome-session/options/splash_image \ + --type string splash/gnome-debian-splash.png + +Some theme packages might provide other splash pixmaps, notably desktop-base. + + +Using startx/xinit +------------------ + +To use the gnome-session manager with startx or xinit, you need to edit your +.xinitrc file. + +The previous maintainers' .xinitrc file looked something like this: + +---------------------------------------------------------------------- +# This calls our default window-manager +/usr/bin/x-window-manager& +# You can replace the line above by seting a WINDOW_MANAGER environment +# variable to set your preferred WM. +export WINDOW_MANAGER=sawfish +# This starts up GNOME +exec /usr/bin/gnome-session +---------------------------------------------------------------------- + +Note: If you don't have gnome-session set up at the end of your + .xinitrc where it does the "exec" (perhaps your window manager + is there) - you won't be able to use the session manager to + handle the logging out process (where it will save the state + of all your apps). + +Jim Pick , & James LewisMoss , + Mon, 16 Mar 1998 15:27:43 -0800 + + +Splash Screen +------------- + +Debian's gnome-session uses a Debian-related splash screen instead of +the original GNOME splash screen by default. You can change the the +splash screen that should be used using the following gconf key: + + /apps/gnome-session/options/splash_image + +This means that you can set your personal splash screen by using +gconf-editor to edit the value of that key or you can issue the following +command: + +$ gconftool-2 --type string --set /apps/gnome-session/options/splash_image \ +/usr/share/pixmaps/splash/gnome-splash.png + +The last argument is GNOME's default splash screen. You can choose any +image, of course. To set the system wide default do: + +# gconftool-2 --direct \ +--config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \ +--type string --set /apps/gnome-session/options/splash_image \ +/usr/share/pixmaps/splash/gnome-splash.png + +Gustavo Noronha Silva , Sat, 19 Jun 2004 20:51:32 -0300 --- gnome-session-2.20.2.orig/debian/control.in +++ gnome-session-2.20.2/debian/control.in @@ -0,0 +1,56 @@ +Source: gnome-session +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Josselin Mouette +Uploaders: @GNOME_TEAM@ +Standards-Version: 3.7.2 +Build-Depends: cdbs (>= 0.4.41), + quilt, + liborbit2-dev (>= 2.10.2-1.1), + intltool (>= 0.35.0), + libgnomeui-dev (>= 2.10), + libgconf2-dev (>= 2.10.1-6), + esound, + libgnomecanvas2-dev (>= 2.10), + libesd0-dev (>= 0.2.26), + libgnomevfs2-dev (>= 2.10), + gnome-pkg-tools (>= 0.10), + debhelper (>= 5.0.13), + libx11-dev, + libxt-dev, + libice-dev, + libsm-dev, + libxrender-dev, + libxrandr-dev, + libxmu-dev, + libxau-dev, + libwrap0-dev, + libnotify-dev (>= 0.2.1), + libgnome-desktop-dev, + sharutils, + libdbus-glib-1-dev (>= 0.35), + libgnome-keyring-dev (>= 0.5.1), + libgnome-settings-daemon-dev (>= 1:2.21.2-0ubuntu2), + libglib2.0-dev (>= 2.13.0), + libgtk2.0-dev (>= 2.11.1) + +Package: gnome-session +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + gnome-control-center (>= 1:${gnome:Version}), + gnome-power-manager +Recommends: gnome-panel, + nautilus, + metacity | sawfish, + dbus, +Conflicts: bug-buddy (<< 2.20) +Provides: x-session-manager +Suggests: gnome-user-guide | gnome2-user-guide, + desktop-base +Description: The GNOME 2 Session Manager + This package contains an X11-compliant "session manager" (similar to xsm) + with GNOME extensions. When you log out, the session manager will save the + state of all your GNOME 2 apps. When you log back in, the session manager + will restore your session. --- gnome-session-2.20.2.orig/debian/compat +++ gnome-session-2.20.2/debian/compat @@ -0,0 +1 @@ +5 --- gnome-session-2.20.2.orig/debian/prerm +++ gnome-session-2.20.2/debian/prerm @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +if [ "$1" = "remove" ] || [ "$1" = upgrade ]; then + update-alternatives --remove x-session-manager /usr/bin/gnome-session + update-alternatives --remove desktop-splash \ + /usr/share/pixmaps/splash/gnome-splash.png + update-alternatives --remove desktop-splash \ + /usr/share/pixmaps/splash/gnome-debian-splash.png +fi + +#DEBHELPER# --- gnome-session-2.20.2.orig/debian/pixmaps/gnome-session-switch.png.uue +++ gnome-session-2.20.2/debian/pixmaps/gnome-session-switch.png.uue @@ -0,0 +1,85 @@ +begin 644 gnome-session-switch.png +MB5!.1PT*&@H````-24A$4@```#`````P"`8```!7`OF'````!F)+1T0`_P#_ +M`/^@O:>3````"7!(67,```L2```+$@'2W7[\````!W1)344'TP01$"DM6.0R +M]0``#=E)1$%4>)S5F7MP7-5]QS_GW+N[TJYVM99D6<*RY;>QP6`,Q`4<`<%@ +M"H$&:`A)PS"A(12FG=!)FDD9DI8A,YU`)Z$)TZ;P!X3^0=.D8!SC@=#0`$EX +MV<;@&-F2'[(LZV6]=[6[]W'.Z1_WWM5:*'A-`YV>F=_\[KU[[CV_[^]W?J^S +M\/]\B(]IG7;@_&O^^,HO#@T-=TQ,3M37U,3M5&W*7[UJ:5]C0^;IAQ_Y\8/` +MT.E^^.,`T+YLV9(?WO'E+W^J8]-%J16K5M"8K2=?=%">PWN=W;SRRDN\\\[N +ML:LW7WS7[7_QK?_X&&2J>K2?OV']TSMV;#/#0\>-\O)&N1/&=T:,5QPT7N&8 +M6,[XP9OS1LO,)QXT[W&#?7;9S)]\Q+SS]NOO3%Z[WO?/ON2ZI=1'Z$`+YP +M[[W?^$1C8Y.=S680,@Y"`@+$W#OWXC_:P/KU:^WW.@_?6NTB'QF`,UI;+KOA +M^FN6I),:C,9H%^T7T*H$Q@#@^Q+ENVB_%+YEN//VFY@_/WO+O_[@FYNK6E_SLIKVMF;/6GIG]V=;_;@>._B$!?`9XIHIY"^[[NW_@S-5+R=@^ +MQC=D4S9"RH!")S;&H'V?H@.EDF8LGZ3>!Q&G,QW4]'GGBQ4#32N-[/I[KXKH.KNO@N2[*\P,\0`R' +ML:$!;-MB46O:3.6F:TZU1K4`+@:N.QWAH[&_=XHW]X^C?`^C?(Q6H`(R6J&U +M0BF?J7R)7$&0RQ>8GBXH`9;R_>5_*`"?_3#"6Y9%W!;LV#V!T1JM-48I=,6U +MT1JTQG$UHWD7QX>Z5%("*%^G3K5&M?NY`^@\(VNO^?KF>GK'%"/3FH$IGU]V +M%@!8V1QCT;P8Z\Z(D:V5M-1)OO.+"4:G#6]U%]!:(83`(,J)V!@P1N.X/D5' +M`35,4X>44N=+4A9*SBF+S6H!#``=G]N08O.9*2Q+(BV!E!)I2;0*-*J502F- +M4@JE#!%;6E'"!D?'SNF2HY[ +M2@#5;J&+.E;5II4V@`D\3E-V3F,,Z/`G8U`JF!.W!!>VQRFZ)@"@-5H'>S_: +M_X[K,SKE,SSE5\*<4IHV2U``J7+4]P;EN\+*0V!J-, +MN)<#H7VE4+XNO[2TT6;CXB!PO?3N%$7'PW%\M-:47!_'\9F:5@R/>_0,%MBV +MQQ"SX^&W"E%4IKM#&@ +M#1C#XGD6J7CP@:_^;(2=AZ89F7`H%3U*19^2X]/55^#`\6D>>].AY4_F(S.: +M8WU]HO?X:`*##3SX07)6G912,4&F1J!\@P849E9B"KF>N4U8@MIPA44W+.*> +M7PQQ7:ODN@TIZF(64R6?K;NF>'$(%ER]`)F03([G.7#D!*/CDRQHR3`\FOL; +MX!:"VNN%#PN@V\*LU%KA^S*((D*\7WYC"`R@T1IJ+(W`(!("*VVQZ,9%O-J= +MXR<_Z@^`2FB^M)F6]4F,;]"^1A4$QP9/\,S/?T7R^BPKKEB)[$TMZMJZYWG@ +M;N!?/@R`-_(ELW)!&K36(`02@ZEL3$Q@&4+_*)8TGF\HN9!H2F`E+(0ER*S) +MD%F;*0NLO8"$";ZU<^]K_.CQ7U)S;7U0Z`@#JPJL_?*O-R7)U%H(`?L&?9[:77C?Q"M7)>A8%J?@:@Z>\-G:Z;"[+4/S +MQ_0-""J# +MUP%3+0`)C#[[I6RV,6D!@F^]D`/@GHX4VH`4\/#+>0#NWY)F<$HQG-/\U?8< +MZQY/")70Y:&W2X8'-*X'D:HS3YDB;,$A1=S9$QQ?/=#@V?;"!>%T>F);).$JN/ +M$4_'L>HL['J;^+PXB88$L7DQ$MD$L?H8=L;&3MF(&A%8P9*8,$K4GJ!V_8/^8VKY]LLS`A^=^86SFFWVC_@\ +MN:N$+FBTJTDN3!*KBR&D0%@"&9-8"0L9DY``R[;``F&+LL:E#/1KC`EZ"`U: +M^V07+&:\<]``/_\@`)*@A-XZ?^'2RS??6 +MM6C_LW8R:S+EK!XYMM'!M5:!4T=4O@]!"[>&KN_O-4#C7!:X"WCJ*_?<6W_[ +M/7_/XL6+*3D>F;HD=DV2?&Z"RZZ]&3O3PKZ>8;J.3]$S[C%*,J>"5%9@:\@S$F +M]@]M!;;-ML`=P*-?N_][+%EU+CT#HP@ID3*H(H40%`K3#/7U\;G/7,62+.3R +M>5S'Q75=#(94\S*>^.D.2H4B=CQ.O#8%PD)(&5:IBH/OOL'K._Z-A7^ZD,9/ +M-,YIA;+V=1"ERD/9=/]C)\"?`T]76F`C\.Q7[WN0Q:O6<>CX<+GP#,);D*!L +MVV9Z.H?K*K9\<@.I5)*FID9JDTG6K3N'7^\YR,A4D7AM"CN>P++C&((3B*B1 +MR32V4E-7SX'MKY%:D2)6%YO1_&PK&(/0-J)0BW?$IN??NS">W@4\`!0K,_%# +M7[C];MI6GDW7T4&D%&AAD$8CA$2+J!$1-+>VL;>SB^'QC:Q8LA!+2@K%(@C) +MVP>.AAH78`2JH@-3>@9$^YH+&.H]R.!SG2RY?2EH@?!M<&V8EG@C/E-=XYQX +MIP?``[J`O>2>(()'0*A)>H57`E=)HI2A.YWGA\0<`BL`4D`/& +M@1,$3=1QX##0"S@AY8!\R$N1!6Y>=O9&#AT?14I9CKL1UWK&!V:&Y*U]W>3S +M>=+I.DJN1_?1091290`-]2EN_?0F!DZ,\^-G7RF#T&'I;<<3+%M_*8?WO/PZ +M\$^AIMV0JY!,Q?-B2(7PF0Z/B[G$RK24G

RE@S_ZC8*"K9X#> +M@=&3WK_UTYMHG9]EU9)6;KUN4V@!76Y!E=:T+%\'<&:HW4*HV1PP&5IE#)@( +M*1^2`_B`M@EJOO;)DB$6TZ'3&(P4:&W*FA>"6180)!*U=!XZPJ8+UM(W,,;$ +MU'30XVK#E1>=37-#AD.]0QSL':2G_P2M\^OI[1\)002^$4^F`9I#S>9#7@HU +M;D(K^*'&_8I[#1@;B`.!1J5"&X$4)N2Z`H`H"XX(/AV+U]#3TT?)\?##\QT= +MAL0=K[[-T-7+AM4>YTT;/00:"?B`&',]-C+;7-S0C +MC,"((+WKBO@O0L$K;5!3EV%T,D>AY+!SWV%\IPZVKDS;,HK?,"?(5_Y`0]_]WT%2'H'1WEK[R$. +M]0X&&0OP)X*1XV.7/``N?:Z48F\J=-%\I?XX@H,ND0UXJ3M.W[S4(>EV_P@IS"CO7 +ML`A\H`^X],C>UUL]ST5("VG'$%*63Y&CO:VU#GO>8(N42M,TU6?I&QHK/R]' +MFUG)2VF%4RHP,=)/?]?;'/CM-HS6;P/?8R9$1A&FJB&`%)`$FH`K@(N`;R=@[U#H:"*GS?PW,=G$*> +MPM0X^?$AQ@=ZF!@Z2JCA3N`=8"?P:]X?(LM.6@V`6&B%N@HPM>'S)OMD1 +/K5?4`````$E%3D2N0F"" +` +end --- gnome-session-2.20.2.orig/debian/pixmaps/gnome-session-halt.png.uue +++ gnome-session-2.20.2/debian/pixmaps/gnome-session-halt.png.uue @@ -0,0 +1,79 @@ +begin 644 halt.png.uue +MB5!.1PT*&@H````-24A$4@```"P````R"`8````G6#GJ````!F)+1T0`_P#_ +M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0P)#S@RXLLO +M\0``#.A)1$%4:-ZUFGML5->=QS_GSMP[,S;&#S`F-M@&.[:)24(-A#1`L"V9 +M1Q,0<4)@R:K-=B5(4"(1M5,IV=56VFXW4H]Y[]8Z[M\6-L0Y*?='6N[MPYYW._]_?[G?,[ +M,X*O84ZP`RN`(N!A(%TJ58N[KP7;F"O[&1T.W;Z'U] +MH.M(0%@L*+&QJ'/GHF5F8L_+PTA+H[ZJBLJ*"J/[YLV3P+^XPNI_<\!.<`#_ +M$1L?__+JIYY2\QYX@,&S9QDX?YY05]==*62)CR?VT4>)+2RDH;F9,T>/!CV= +MG;\"_M4%WJ\-[(3[@?<6/_;8=XJ>>HK`V;-XRLHP?+ZOX_X(526NJ`C'VK5\ +M6E;&5Q]_?%%*N=4%5^\9V`DKK*KZ/R7;MR?GI*?3_=9;!-O:^";-DI3$[!_^ +MD":OEU._^UUGP.O=Z((+=PWLA$=M#L='FUY\,6Y.7Q_=!P\B`P&^#1-6*XE; +MMN!9L(`_[=O7Y_5XUKK@_Z8-[(0+=V].WE65Q?N@P?!,**KE)B((S\? +M+2L+-3D9;+;P!WX_P*NKT7MZS%$%0@B0,H)$$/_DD_0O7LP'>_=V +M!@8'5[F@?DI@,\#.?V_GSB59<7%T[=^/,3`P(:@M*XN9Z]?3'Q='?545K=>N +MX6YOEP&_7P?0;#9+4DJ*2,O.)N?AAXGK[\=SZA3^Z]=1['9D,`BAT"CHQ&>? +MY59R,L?W[?M*&L9C8P-Q(N`W'URS9O?:IY^F8\\>@NWM2+]_U#V*PT'BMFWT +M)"1P]L0)6AH:FH$_F!/#%7*O"UZ)"NR$[\3&Q_]MQ]Z]5L_O?X^OK@[= +M[0XK89J:DD+"CAV<+2^GZMRY9@FO`>^Y0)\B@"W`5@'_^?#JU1F%FS;A>?== +M@K=N(?W^L"BFVI:$!))>?96W7:[0G=NW'W'!Q7'`Y@QVZHF77EJ7%1-#[_'C +MA-QN0CT]PQVI*2G,?.$%CA\Z1.OUZ^\"+[J@S_Q^"9`0A?>."TZ;]\4!^].R +MLIXKW;6+P2-'"+6V8OC]2)\/&0HA@-C''Z$7-#GA.^W-C2T_FG__I\\^])+]/[F-XC>7@PAPM#! +M((/GSK&@N)B4A0M+VAL;'P'^!J!$`.]S2TQ8*OLI+[%RW"-F-&J1-B(A5>.2\O+\%N&.@]/2/JF@K/W+"! +M3X\?!RF=+NB?./L+4%6$PP%V.T+3P&*9=,)P03]2.C\Y1NHXE,1%/7!RMC8WUP(>3$J@J +MPF9#:%KXF`+8M`]OUM?7]P#6V;,1FH9BLZ'8;`BKE4!='1EY>0#%D^$"MMS<,*RF +MH6@:0E4)-C61NF`!P))(X-S9Z>F$NKN1H1!&?S^&QX,,!K%E97'SZE6`OTR] +MDK&,@%JMX0<0TUK!_N5&30U:>OK(VU%5%$U#OW.'A,1$%*LU%\#J!!2+)47U +M>KGSV6<$V]I&S6S6Y&3<'1TZ4#/U*B8\4R$$"(&4'`MA5556EQT.PI64$UER@2+N=@,\7`'JFO?S2 +M=8S>7J2Y!ID&7HQ@<$3=J566@!06RS#DD'L-!:X(LR@*X`V%0KH4(GQC +M!*P`1""`:K-IA*?4R8B1'@^ROW^Z;A!I<9K#H2E2CD`*`8$`(A@$FXU@>`7H +M55P@]5"HVQ\(8(F-'06+$!A=720D)UL)ETKWL#J?5M#=GY269C5Z>Y%]?>AM +M;>@M+1@>#PA!R&(AZ/-UNT`.N4-]3T<':DK*.(4#34W,R\X&6,.W9VM2T],9 +M/'T:?W4U1E<7Z#K"+*$\'@]Z(%`?F=8N=;2TH&5FCE/85UU-SI(E`%N_1>"M +M>04%!&MKP[YJ!KP0`BT]G=LW;@!,6\>EKBX$;\S +MV_[3IUFU:1/`&\[12]*O"VL%WGA\\V:\%14C@3ZDL*:AY.9R_?)E+W!F&-@% +M;K_/=_):=34QRY='IA&$$/CKZYDO)3G+EJT`7G-&([!:L61D8,G,Q+I@`=:% +M"T%5)]OR>BUW^?(5F18+H6O7AI4=&M>6GT]32PO]W=TG76;9%;D>?JNRO)P9 +MQ<4HYAI@&!JX\]Y[K-VTB5EI:3\%GA\W5X1"_+VVEKIY\ZB?/Y]KZ>DT9F10 +M75>''EEHCMCSL]+2?KJAM)2!HT>'QXMT"4=1$9^?/@WP%A-4'&5MS?_`@=\Z;]V:"_S"7+R$_#[?:\<.'4J* +MHKT;")G**L!/9J6E_7S;KEU*\,@1Y,#`J#<*H"U>3%LH1%-5U9=`6;0B=,/L +M^^[[W^__^,>B^_77,?KZQKF'FIZ._;GG.'7L&-OE[(D3NOO6K3+@L!G)MXQ^\HI%JZQD +MH*QLY`L30`\G^\D^GPC6;&W?_2[!-6LX_,8;>O?-F__H"N\DC:\1H@&?A\M+ +MO=Z&NB^^>&+AA@W66?GY!.KJP-SH&`^!(U*(FRHZF`BCGH?HAO__SV@L72ASIZ;%96[9@>#SH'1VC\N:]0FNY +MN<3^X`=<[NC@Z+Y]'3V]O?_P)IPP&<1TMEN'8"-;L1WFWP<'YF=E%9=LWTZR +MHC!07DZ@NCIE8>#YI]NQE.04%(G/1(N9F9A)KMX/',UP7*C8;S)S)8#!(^XT;-%VY0EUE +MI>QJ:_MB``Y^"']LA\`DH..N10*/@YO@?/B:`LIZ6#@?BNVP4A5BD=WAN"\V +M/E[3['80@H#/QZ#'$_`.#+0%I;SBA7,M4%X&C<8(T+1`A\['`D=5=JH'$J!D +M0&P*Q,?!#(`^Z+\-O3=@0-X=V+2`[P9TPN`<UG;8/?U?(LI#W(W)"1YBVO;_BHJKXTQ=GL4`````245.1*Y"8((` +` +end --- gnome-session-2.20.2.orig/debian/pixmaps/gnome-session-logout.png.uue +++ gnome-session-2.20.2/debian/pixmaps/gnome-session-logout.png.uue @@ -0,0 +1,51 @@ +begin 644 gnome-session-logout.png +MB5!.1PT*&@H````-24A$4@```#`````P"`8```!7`OF'```(*$E$051XVM6: +MZX_?ODE+H]=9G3T(K5: +MC7*Y0KU>QT0AC4:#NN]C3$P8AH1!@R`,"8(&OE\G#$*BV`#P^A_?Z(:`#1C= +MQ8TR]0"+%BY$*XU4DDN71C'&`#%A*%%2HZ0D"`*B2./78A`"(00F#%,]:$P8 +M=.L!"VCH6>B??#Z/95D4^XH,#O0S,C+"Z*7W\?T:==_'KRGJ09TH-$@A$+Z/ +ME`*M"LGY1H/8R&X)*$#HV68O(02V92$\#ZT4GNM2K58IE4J42B7&Q\=I!`$Q +M,8B8>3F'*(KP'1NKYN/[M5EE4-U%ZIP(?"&:7T@AL6V;?#Z/$`+'II@FF +M)%'+L@C#D#B.<)P<4DJTUN1R#KY?HUJM4JG6:-3K2`D"@6U;'9DO(S%3`EGJ +M!*@!UV5!',?Q!'I!,TBUUH1A")B4@$)IA=(:)Y=#*47#L?'K-K;M8SF=>2`C +M4&GY7G=H?0WP[OH;N>E/9R\`MP`IR"OI2I58W9@08T!*A6/;F#!LRD=;FAPQ +M2@JL#CP@E9PDHYEZ0`,XM][&8^?+_/#4I1,`C4:`E*+-+)^2L#11'!%%,5)* +M',?!&$,<1Q!+A-9(`98S/0$U"P*9%U`+K^>>&_KHMR7;CU^D4BF3R^400K:0 +M:(UQB5(*;47$6,F9>?/2^:&!,2:=.[H?LL/,(P'D_`&$TJR[88`GEPVP=MT= +ME,OE)I@D)MK<+`1*RJ97+,M":YT2IR<$LD#5U]B07A\H!5)QU\V+V?/I1=RQ +M81/E2H5&(TBL&<<(1*L?VLI+:97(0LJ>$(B`$`BF;(VT:!L!L#ZR&*$T0FM0 +MBE4W+>&Y%8-LVO0%JI4*0:.])Z;.?Z[K\=G;UC)>KJ#4[`@T8R`8.4]X_DS[ +M&C:*B*OE+)I`J<3]4K+V4TO9HR1WWK69E_;NP7$R.[9>/OG&%H^R+9MWZ9:K1($04*"F-&+H]RS +M]6NL7K6*3RR]F?7K;L=SO3GP@+H2[&2KM_&`5`B9DEB_CJ'E@WSS6]^E5JT1 +M!B%Q%%&N5GCFF5^PY>X[V;!A'<5"@?[^!;T)XG+?X@2LD%<$:5(VR@2XR,[) +MYKGF=CE.IWN_GJS$E%*3@[H'_8RFA$00]!S\+N`G#S^$"2.B +M*)I>!![8\2.TUBBMD%).F1MZTP?K.8%#P!#PP([[\-P\KNN2 +M1[Y_#QLRT9*0129299/0D#TAL"1X6&< +M'FA^Y\X'\=P\7L'#3=LNS=HHCHAZW(ML$A@_>7+26K/=^-@TX!]Y>">>YU(H +M%!++VQ9*2N(XPAA#)$1K0Z:W!)X^=(CA:2[>#2RX"OC=NQ[!\UR*A0*NF\>V +M+:24Q'&,,?%T#9I9$U@Z/#Q\/3"8-DWU%#-)X-GK5JZD?N3(%>`?_>EN/,]+ +MP'MY'-MNRF;:):/H#8$J,)8>.RUME,Q.%H"^<('Z%/"//_8H7L&C6"S@Y3UL +M)Y--C#%AVW)Z+M)HM65OM?QRMA[.M9/-$T\\3J'@T5+Y4X?.ROO'7B[:2;UT%?2%O7)A"FK4-QM9X0P-%WWLG` +M;P>&^A?T4RAXR3)229BJ^3:!>OCHF[R^[\]9:[7S5G3:"+@:@6B:$`M(90-\ +M,8N1^?,7D,O9R+2ST%[SR<=];^YGW^$#C)=+7?:B!=I*GD7,9";.GDEE9KT5 +M<+,BT'5=E!(I^/::/WWV#,__?B]GA\_-+EJ%0.JDKS334B).);80\``_RTJ. +M8P.399.I9FSL?9[]S:\X,WPV26T=!.JUAN-8.(Z-ZH)`UC.JI<=6VF9'6QIC +M#,*89ETS-C[&7PZ]P?XC^P'HZR_V9,;-N0Z6;.W`JTF&&NP-\&806ZH9:]U4HU%+]U:UQ$120A\_R.$3!RE52[C%_%PL +M,=JFT)F6T_&4C7/_.;2XG'ZW[5T/^,'W=E["HVLI9K&Q`?YKH1IZ9Q'W;[LD;WH +>\4&"GTHB`LQ_`0<_YY@((55Q`````$E%3D2N0F"" +` +end --- gnome-session-2.20.2.orig/debian/pixmaps/gnome-session-reboot.png.uue +++ gnome-session-2.20.2/debian/pixmaps/gnome-session-reboot.png.uue @@ -0,0 +1,86 @@ +begin 644 reboot.png.uue +MB5!.1PT*&@H````-24A$4@```#@````R"`8````)'1AX````!F)+1T0`_P#_ +M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0P$%B@V3OFY +MFP``#?Q)1$%4:-[%F7UTD]=]Q[_W>?0\>K5>;4M^MR4;@S&6`0.%A5<'`84D +MI>.007-.DG.V+EEWUIW3;EW7)MO8NC8GZ]JMID:U[6%-)D2Q,0*)1T +MX1V,P"\8\`NV9%N69,FRWI^W_6'!C)$L@>WMGJ/S7$GWWN=^[N]W?R_W$BQP +M:;<[*`!6`)L`K`+0Q#!,E4PF*Z%I6DT`21"$),_S`8[G/9(D=0/H`/`I@)LN +MMY-?R/F0!02S`7B*HJC]Y9:RI?56*U5560F+V0RU4@6&9F:TEL"+`N+)!,;] +M?@Q[/>CK'Y"&O9X^GN>/`'@#P'67V_G_"]AN=P!`,X!OFPS&O>O:VMC6EA:H +M&"7BD3B2T232\31$7H`D2?>^F!`0F@*K8*#0**'4*<%!P+7N3IP]?X$;&_=] +M#.!O`%R9#RB9!YP.P*%BH^FY1[=N8UG3O+^0.`U`"^XW,[)_S/`=KNCC:;I7VS>\,C2K1LW(1:,8LH?`/(?S%R]TBZ*XW^5V=BTJ8+O=`4+(+EV1]NW]>[^H+R^V(#H1A4JK@J)( +MB=!D&$/>800"042FII!(Q$$(!99E4:31P&(VH[*B`@:='HG)."+^"-+Q%#B> +M1YKCP?'<]#,#*D)">7TY0M$0CITX-I%*I7:[W,ZSBP:X8]6NC37EU;_\PNX] +M96JY"C1#(Q2=Q*4K'>BZWI.>"(>N`#@+H!?`*``_`!J`!H`%@!W`:J/>L-K> +MO$*^IFTU:)["2/\HXM$$TAR'-,^#X^Z`OMO]8BB^!,`1P",NMQ.J0## +M5`;@2PS#?+5MY:K*#>O68ZS?!_]H8%IZ&5!!$.[VJZJO`"_C[XOLOM_/J"`+;;'5C7M'IW +MZ_(5[RF5*O;RM8Z!2SWN[\:2\;=<;F=\`?PG`.S1J#5O/;[G<:UO,(#0>"AK +M6U;!8FG;$AQ^[U>Q:"RZW.5VWLXW/IVOP7./_:%\2:WM#:5<4=USL_?$N:Y+ +MS\22\:,NMY-;B`!AP->'`5_?C4IC5?>8;VQ?V^?:Z.#H!$11O-_2\@(8EH%: +MJV(]7D]LP-?W25[7DZ]!?67='@6K6!,,3KQWL:?C8"P9[UR(""-+^2]_P/_3 +M&[=Z8:DVYVSD]P9@JZ\'15%[V^T.>EZ`AU]\ATBB]$V1$T['$XFG)Z;"_D6" +M0\8X_5-7=U?,:#&`D.R[)Y5,@99H&/2&!@"5^<:5Y?E_#8`:29+6_NFK7XUB +M\WD(!X-`&#T<@$)X*-`&[/1T4/`CBT[]"!@5F& +M85>[W=&\&%*4)*DC%`I!H5+D;)=.IJ%6J0"@]*$E>/C%=R@`=0#^:@88#>"O +MU4KU"QS/Q]OMCJ\`>#N?[\OT90'\W?2BD5P:"`#:5"H)-5.4LX$D`31%@Q#R +MRJ.M._XQ>QL)`%)D#D`K@,W[#AUX/3-!`X"?E9LK]K8VK40JG<+ESDM2:'+B +MQP"^48C+R.2*SRD5RI?7K]V@*K.43:L118&B*=`R&H0BH"@*@SU#"(X&LXY3 +M82N'I<8,491`IK5VVB70%"B*0E=W%TZ?^6Q8$(0GYP+<".#:OD,'PNUV1Q-% +MJ'>;ES4OM]4T8'1P#!1%05^B0T]?-P8]`VHB`AG4P_U-ZU5)MAL9IQ +M[/A1<6"P_S4`3[GLO&(VF5_=\?H\**6#XIO<>!RR)$N*1 +M.`QZ`VIK:M7!4'!_*IUBK1;;9P.^/B&/@X];+;9?1:8FTR-C(X_4U-;0&HT: +MB5@"!0CO;OYH;:X#40*_^>C#>"@4^A,`WYEY[$%RJ)$!P.O6.NL3FS9N@>>& +M!Q.^T)PO4VO5T)?JX.Z^@B'O[6,`GG&YG6,%JJQ#)F/>:%W>6E964@[?\'C> +MI%FNE*.AM1Z#0_TX?>;T$"_P3V9+I4B6%S93%'5X3=O:QF5+EN'FE;[I52V@ +M,'(&EJI2#(\-X6KWU6%>X)\"\&DAP4&[W5%)0-ZLJ:K=O&)I"T*^,.)3V>V6 +MSJ1%;5,-SIP[@^N]/2=VS?46DV6M![^2;2J<+W +MA2B(F`I'82XUH[JZ6C<>&#^0YM()J\5V?L#7)^51V4B=Q?8?X4A8.1X87U=3 +M4T,IY/)[C`\(4%I1@N)*(XZ?<(JWAP9?!?#T\T\\R[Q[ZD@\)V"[W2$#<*C8 +M5/S*GMV/J;@I'K=[AK(&O'F+!,0B,;`,BZ:F)EDD.N68BDXU62VV$P.^OF0> +M2-YJL1U/II+=GM'A[4:C45E<4H)D/`D"@K):"S@JC>,GC\?"D^'G`'SO^2>> +MI0$L?_?4$4]62]MN=Y@`_%M#?BLZ>S5Q"%@RZW\W*!:50C(>1M:[5M56/= +M4E`4!8]O&-=ZK@X(HO"DR^V\D'%G.P&,[CMTP)T+L)>FZ"5FBQF$4!DL+S#Z +MT0!XQ:0W/:N0*XG7YW%E7,#8C&CKYP"^O._0@72N4.TQ010P,C*2ZSU?*"DN +M?:FH1#?GWN-2:7B]GM<`_#"_$H,&D/=LT>5V1MOMCC\*AH.G`2S)'!_.!'D4 +M`),+#@!D+K?S1IY5O)Y,)L"P3,XVJ40*AA(]"$BI!.G&0J94+K=3!/"S+)&6 +M!L`/`'QS7@DO@)OA<%A0:G)']_%H`GJ='@J%XA$`^L7.J7[TE1]2`%X"H`/@ +MG"_@0'`BZ)/)99`QLIPJ&@O%8;/9S`">SCCO12D[5^^6RUGV+R@9]3RAR`_V +M'3J0G!>@R^U,GL,K?:54"I5+P)H7`RX[2MW&MH:6__6 +M8##\@PC1&TW$?C[O,YE,^>FU:U=Y2XWY[G'\[)*()C`Y'L'F39N--$V_UVYW +M5"_@S179L6K7JJ;:QC=;FI;_)2-GZ'[/[9?^_>@OP_,^50,`J\7FC<5C;4:3 +MJ=%D,B$R,95]+T9BJ*JN1'E%6M=_WWJ\NEO.SL^SIN#D@=X6;U2J;RX]XDOZGS]XPCY +MP_<,0M,T&$8&.?<%_=_4%(2I(DREFVJ$BCH8M-Q:BJK$2#S0:#5H_8Q'3(2!04#O_G^_RM +M@?Z_%T3A.P]R54`>9E\`>$:CT?QXY_8=*I/6!/^@#Q(OW0LJDX&B_M<@,0H6 +M2JT2"HT"C(*=-E9D.IPC(!!Y`5R*0RJ61"*2`*$(3%7%&![SXO`'[R#WWF>.Z/3W5^0'.A)D3E"(4U5S;TJ!5:K?):&8](V.6&_3ZI5&!DTP%[FDLC%HLA%`XGPI%)KR`(G9S`?1:.ADYV#W<.2M-B%[-(+==O +M#PU(Y@"D\OU/4S15K"TITJGU)@6C**8H6@&`B*(03Z03@7`L'`Q.^:/B]-%! +M(2!SU><%F`NF$/C9?9%#[?+5'PI05N`>O)/F2UDF27+4,6,2),LDI!S[:79_ +M:5:?;/7YQ:(S+"AF/6?_)F69O)1%8G-)*-?^R[<8#RU!:<9&S@8T\R"'S*H7 +MLA"88S&D`L`7W`_>XPMS?,\&E0VP4*E+#^H>YAW)%/!!#DCD@)L+LF"57`C` +M;/T+A2-Y#$8N(R/-=X(+6>:2&IG#`DH/8AT++?\#B@^WKY%H:9(`````245. +%1*Y"8((` +` +end --- gnome-session-2.20.2.orig/debian/pixmaps/gnome-session-hibernate.png.uue +++ gnome-session-2.20.2/debian/pixmaps/gnome-session-hibernate.png.uue @@ -0,0 +1,73 @@ +begin 644 hibernate.png.uue +MB5!.1PT*&@H````-24A$4@```"@````R"`8````NLYF0````!F)+1T0`_P#_ +M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0P$%BD@HS8] +MBP``"[=)1$%46,.MF7EP$]<=Q[_O[>JT3F-;V`9L8V/`!QA,P-SA*.9("`2< +MD@DT"9E"TD[2')!..]-.9_)/FG9H.YTDA)E,0EI2&IB0%,KAU(0A(9@[\0$8 +M9!MCXQM9LF1I)>V^US]TX$,"$WMG=M[N2GKOL]_WN]X3P0B/O)+5GQF,IC)" +M*#@XP#DX`*8P^+R>PU97=^R$SI0$KR3#'Y"A,`:OJQM[ +M_O9'\TC['S$@0$`)0763"]U.+UP>"8PQS!PW"ET#H*/2"250BQ0JD4(4*`A& +M[Q@%0`Y*"$2!0!0H5`(%I:.'..QYF/;8:U"CJ(9,U$\ +M=Q&MN7)^0_FQ(RORYJ][74A(^;"Z?`]_:`4+ECZK5CSMNS,S,O8\_]+K1B3F +MXMO:3BB,Q_'ET%03`+(2=SQ\W]`#\[@"O/C*3F-F1L8>Q=.^NV#IL^J'`BQ8 +MLD7+),?^F<6/;%M9MI5<:/2AJ=,#D)`20]R$`PKCZ)-D./L"""HLKK>+`D6; +MPXNZ]B`V;ME&9LRUN=/?Z(<>!`P\!1D*1%%1PJ=Z!Q2N?1/&LDO7,[]Q3N&(; +M?2"@XNG8D9>7OV7VDL=QI<$!QA&%BV=?G/-AAR.5$(Z7(@7GP*5Z!Q:L>`*3 +M?` +ME7H'5JW?!+/9]%;^@@W%,0$+EV\5P`+O/5FV27VK.PC&[GE?1+D$G0A*`/ZC +MPGG(B1*TJBAD)'8&%`9[AQ^KUY6IP0+O%2[?*@P!5'R.LOS\_-F&E$SX`DH8 +MXIYZ8TQ:%&<:<.3S_5Q16#FH,'Q.*C!%49(Q1P:A7]P.D$"E%I],' +M8THF7EZY&>X\O^LH1.)->C:(,(_[U\0?L5F/# +M;ZC.NJ/Z^/O#!JP^_CZHSKK3;J__[>YW_\ZR4[30JH5H>A0$`D&@N'[;B85+ +M2T&X\F;!\A=(%)!+SMF9F1E%"8FI4%@H;$04%`2*&1,3<>3S_6B]<^=MHK6^ +M4U/Q\4//]UU:/J:8)5;D<3;89'; +MT&BO0RQWJCFU+\"(N.._AP^S""@!BP9+-%I.6 +MY^J-%C"'$YPC!`D@T:A!1TLC'-U=IXC.>CF.?WYT^///:N/,[)68/J,V5-ZY +MT_+=W8Z6!4:]"0%9`B4$E!)(`04ZHP5:74)NP9+-%I$'?3GI$[/5?IF'X!A' +M4&9@#$@V:7#C4BTXR*':BKTQ4\35RJ/[`>Q_*'L\^0G+F[?VRYJ:Z@4%LY>B +MQ^,'#5=!E(1L,2G%IFYI;LFAG+/Q1K,9[0XOVGI\:'=*\/IE<``FO1IM+R!3BT,*4'[_#*2;6,!)3AM +MU`5D=P"]WB!DF4.CHG"[7`"AK92*6GM75Z=BTJD&%*.$ +M``Y/`#F3IH`SI;1P]:]&C:VP=#OAG*U,G9"-FML]N-LKP2\KX;(<2-"*N'NW +M2Z&BUDYI@JV[S^UJ\/O=#J=&N9IRUEU,3S.M(-!D-I +M6D8.G)Y`OT4#(!`"'O#"[7(VT`1;-ZTZL@L(X::M>15<\;]9,G^1H +MK+IR$>EC=$,\N;[=@P5+?@*+Q?**XK#/&RF@[&IZ=,R8,=MGE"Q&4T??D,]3 +M$W6HOG()A(H'H[F8ZI-/W6ZL;V22"T;=P)6H%%!PVR&C[)GGM"(E_\Y?N#'W +MQ\+E+]PP52W03S<\_3/US7;?D,652J#0PXO&!GLCU2>?`@`!`#KK+_&D\5/D +M@%]:/;UH!MI[?`/"3:\OB)3D9$R:.,%TK>;*DTGCIYX;6["\N?/F^>$YQEMV64VF;YZ;OO+J=JD+%QO<0V$XX!>+<(`%WZX?*&>J`T?88#K1#J;O_[Q +MU+2Q7VS^^2OTW,T>!!4>53&B:*I5A^P4#2I/5Z#RV],>K\_[)8APG`BJ'T"$ +MUM"H2AI7@M/!E95:K>Z).?,6&>8M7H;Z+@DM75XPSL,O'Q*``)B58\&7^W:S +MUCMMZVK/'#H<$["P]"4H[CN[Y\Q;L+UDV5IY(064*!3O!SDMTXJK +ME2=P]LPW'PC&]!>K3[R/F("A785G]-S?6[[RL?7SLZ?/Q?<-/6#]"HA0C`RU +ME!`DAJMH@U:$6A6RF*#,X/')<'C\Z.Z5("L#%8M<`T!^A@7M-R[B^.%#9XC& +MM*+FZWW>P5LJ0^UFT5/)4*2*TC7K"O.*Y^-RO0,!F0T!#%_ULR<>-2P>+K.?%'-!>VRVM.?=0UF$6(!=C75>I.SIA^P7Z^>+_N] +M$Q:5%$$*<'@D&>"DGW63Z/J%]S?[,&!$I:BSA;]ELVHQ(\N,[_YW!*=/EG_' +M!>VJJ]\E0A-P($#__R0UUVKW>-Q]SYGOWBT-]YLDAA;(:1? +M2P#0W-FK5JI$\9V"Z<4YBY:50FL<@^:[?>AT2@C(;,@B"OT`M6H!8RU:C$M* +M@,?9A=,GRW&MZK(]*,N_OG'^V+'PEUF,=@@@'00X`-::FJU/&3?I&5&E^N7X +MS.R)13,?0<[D*5#I3.CU!M'GEQ$,PZI%"KU6A%FG@J_/A9MUUU!U^2+NW&YH +MD(/!=SN:;^QSMC?XPB"QX"+7$8,:`A;W7J4UB.,GSYJKTFC74BK,-YDM.2DV +M&S5;K%!K-``'`GX_G,X>='9T,'>OT\Z8CP=5YR\49BP?SP&?Q +M`,DPGL4TA7X9+-[4#><^^DP89(LDQC6)8:\\1LOBG/P^+8]SC\$VB`>H$LN[ +MR7U>8O`+Q`-B#U![P-\0;-``)$;+A@$72^4'@<:"C)_J^L?`^RA&8I@''F`& +M\4XV)"$]`#`6[,/`/2SD?0=_^/]?X_]^L`TBQOU#;7[^'XZ4B)^B\,V5```` +)`$E%3D2N0F"" +` +end --- gnome-session-2.20.2.orig/debian/pixmaps/gnome-session-suspend.png.uue +++ gnome-session-2.20.2/debian/pixmaps/gnome-session-suspend.png.uue @@ -0,0 +1,68 @@ +begin 644 suspend.png.uue +MB5!.1PT*&@H````-24A$4@```"@````R"`8````NLYF0````!F)+1T0`_P#_ +M`/^@O:>3````"7!(67,```L3```+$P$`FIP8````!W1)344'U0P$%B@DO4#( +MTP``"NY)1$%46,.UF7ML5%4>QS_GW+G3=J;M,'W0!Y1G>5A4J`5D0(G*RL-5 +M5`P^HS%91W=7LXF/];');C;Q'^-NC'_LNB[5^,=&@RL^0*.@$A'%B@C+2Z"T +M%&A+:TL?M%/:Z_N^TY903W)R'W3._9SO[W=^O]\Y""ZSA4/F?S,R +M,C8:$K36X'2E%)'NZ,?E%?'UES.^YW(!A1"!)Y]_@?P,`]W3@>[I@EB,\UV* +M%__Q1N!RQ[]L0(0`84#];G3+:=2%1E0TAIYU#Q/1Y$0,(H0!GA3PI(*18D-/ +M4+M\0*W1TK#!#*_=A3%A@)Y+6`P`2X`G@2!P2WE%7/?/4]IPPC`1LF]8W?=; +M`7P&M`&O`C^45\0G3L%PR)P);"G,S_O^MC6K[C,,8RHPR(X"I&=0'Z&@,`QC +MROI;?GU?07Y^!;#%&?/R%'1F_AN_W_?*^M4W982NF$);S.2S+W<-M3+.0AG< +M1ZYVRDI+677MU;+BX/&[/M[Q^>IPJ/LIX,T!2UR"@N&0Z05>+YXY8]/SCSV4 +ML3S8C#[V+BC+S1&=U>R(:L62S[IZ.\L+XCSW^W#&[!G3-P&O.]\:/V`X9*8" +MFY>5E3[Z^(;K16;-%E3SX7YKNBT45!RB'>B+36BKM\_]AGW-0!@FNJ62P+F= +M/''?>G%MZ<)'@CF +M0^A('222J:=MTWM2[!Z+("L_XOZ;E[*\K/1.8)/S[3$5?&9!26H*NW +M`Q8(.:B[2*@5(R73(Q^E!$\*PN.$)&6A3VSC[IO*6#"W^$'@F5$!PR&S+"N8 +M]>*#MZY"GOD*H54_E)`"I$ABX_%&=&,`SN,%:8*VH/(3'KQU%5F!P(OAD%GF +M"A@.F880XK5[-FSP^II_`)48<'YIJR=2)Z&%1(\[B`^]U4(BTH+@\2(,+Q@F +M0IH0[R:MX1ONOG6-5PCQ6CAD&FX*;BPIN7)I2;:%[NT$E"V6$`@A$)E3Z)YQ +M&^]\\(FV+.MS&(USA,K*LJS/W_[/F_3D7(/PY3A9Q[3CIN%!MYVB)%M1,F?6 +M4F#C$,!PR!1"B&?7K;H)W7+2AM-ZH!CPY1"=OI;7WMJLJJIK7@">&2UV#?=` +M)VO\L:KJY)]>^]<_5*Q@&:3X$88)AL?./-)`G]G-VI4K$()GG1CB1TNM.I74$@/8O9:WOG@4\[6-[P$O#P6G%LKKX@KX*739VK^MOF##Q%% +MH0$%I0>$!]W=RO3T&-,*"QJFSCX4^5N +MX*^N<`+PY2$RID)@&C)0Y+J8G-_^9?^/>RN.UG4@)DT;FB*%A.:C++YJON@S +MLW32T)H%\^:@>R,#@"A;]KQ2/OORJX36^NGRBGCEK*W'"(21Z@N*"PR$N\R\ZS*@'Q +M'E`6(C"-HP>KT9H/'1]R4V0SL/E2_3$<,K<>_>G(=3,6%:$[S]EPT@`DHJ>% +M@MQL;U5M0[$$BH(9/O3Y2G1K);JU"GHO``KASZ'N7"/`/B:^[:NO.XOPYSK) +MP.C/5CK:03"0`5`D@313)-!MU>A(DQW9<3*&Z:F4+:6TF(_0*`":49F>>%'!SLA01Z8KT]D))A +MOQ2#*!-1_+Y4@()?`#`W(S,`B2BB+]]K9<=AZ2$>CP'T2*"A[4(G(C4P-+`) +M`=%V\O,F`US]"P!>55`P%1UI1'>WHCOKT5U-D(B"Z:.M\R)`@P2JFUM:+.V? +M/**4TI$&YA7/`ECC;)HFI#EI;.V_1X/4/!>RL8\'EKYD_-0D<:AF8=Z>%"(H4+ +MD:X:H$665\31L+.RYBPB:_;0>B01Q==3RXIK%P>!IR="16>,9U;81K?7.\HIX?R[>\N.18XCQGJ7>'UFN\\=/<=7N^YW>A$[]#BS)/">4\156?.G@9V`1@` +M!^J5+ITJ$[VQV"T+%Y:BVZM!]FV2)$1;R9E<0-[LJS./'CN^85$A>\N*C+H# +M]6K<9BTK,E9ZO>;'#]][5\&\M&9TPWYG-VCUUYZR*,36`^>H:VC\,NU-@^'S-N*"O,_>NKA +M#=*H?`]4##P>A&&7Y<)C(++G$LU=QA>[]K+[FSU=W=W=6X'MP"&@P1FJ$%@( +MK/6EI=Y^_?(EZ:NO7X;WY^_0/Q]!6PE().RKE0`-:L&]O/K!MZKV7,,=Y17Q +MCY,!`KR^<"6Z:IL=LPT/>#Q@&/:]UX?,6T1OQAR.GCA#9>5)&AH: +MB'1&`$A/]U-8D,>\.<5<.6\F*9W5J/J]Z&@G6`ETP@;3E@66A2Q>P_N'VOGZ +M^WW_!GX[^&!)N)C$)P2?W[%N]8I55^6A3N]`"`U]*AH&&$;_*0$9A0A_`:0& +MP4BUC^/B/=#39F>'"V<@WMNOV@!8`JT4$MDI]]WWJ(4W$ +M['5\5=G.UAT[CRBE5I57Q,\/9W$]:3Q0K[I+I\CW3E2=6A&),6W>LELQ$A'H +M[;"3>O_1KS-+[7GK&.5U653%ZP4647S(7H!$MWN!TAH4-I63PU`ZCXP +M?SYR]FK.6`64;]ZJ#Y\XM:FV73V\Y5"B,YDUARXZO=[#]ZLOIB +MKW[N[?V)SYQ8IERN(P#E,,`AL'-SI6_I=/F`SRL?+YY9-&MQV35<,7\NV7X! +MT5;;_(FH/;R1`MY,2,NFI3/&\1.5_'C@$*=J&VNZX_J?/YQ5;Y\\KWH<$#VEK:Z.I +MJ4FU=UZLCEOLZ8CJ;5]6)BHNQD@,`W$#Z_\W,4R]T0!'O),".2M'!F8$Q2R? +M5^09D@P`2Q'ICNFF,VVZIJ95=2B=%&;,=\D`Q3C>N;K"H.R?S'3C>>Y_9PSS +M1>%R+US\5;M<59*N1[GJ),\,]T'&4,5M=8M1)C%\`LF`U!AJ#_EO"#7L`\+E +MJL8!YZ;R6*!ND,E3W>`8.(IBPL4]&,,-DG4U;"*,!>@&>REPEPHY_K/:<0(G +A^[UP/^(?\GQ)AY__!UX/`CNB+W]8`````$E%3D2N0F"" +` +end --- gnome-session-2.20.2.orig/debian/gconf-defaults +++ gnome-session-2.20.2/debian/gconf-defaults @@ -0,0 +1 @@ +/apps/gnome-session/options/show_splash_screen false --- gnome-session-2.20.2.orig/config.log +++ gnome-session-2.20.2/config.log @@ -0,0 +1,532 @@ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by gnome-session configure 2.20.2, which was +generated by GNU Autoconf 2.61. Invocation command line was + + $ /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/./configure --build=i486-linux-gnu --prefix=/usr --includedir=${prefix}/include --mandir=${prefix}/share/man --infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --libexecdir=${prefix}/lib/gnome-session --disable-maintainer-mode --disable-dependency-tracking --srcdir=. --localstatedir=/var/lib --with-window-manager=metacity --enable-ipv6 --with-at-spi-registryd-directory=/usr/lib/at-spi + +## --------- ## +## Platform. ## +## --------- ## + +hostname = seb128-laptop +uname -m = i686 +uname -r = 2.6.22-14-generic +uname -s = Linux +uname -v = #1 SMP Sun Oct 14 23:05:12 GMT 2007 + +/usr/bin/uname -p = unknown +/bin/uname -X = unknown + +/bin/arch = unknown +/usr/bin/arch -k = unknown +/usr/convex/getsysinfo = unknown +/usr/bin/hostinfo = unknown +/bin/machine = unknown +/usr/bin/oslevel = unknown +/bin/universe = unknown + +PATH: /usr/sbin +PATH: /usr/bin +PATH: /sbin +PATH: /bin +PATH: /usr/bin/X11 + + +## ----------- ## +## Core tests. ## +## ----------- ## + +configure:2110: checking for a BSD-compatible install +configure:2166: result: /usr/bin/install -c +configure:2177: checking whether build environment is sane +configure:2220: result: yes +configure:2285: checking for gawk +configure:2301: found /usr/bin/gawk +configure:2312: result: gawk +configure:2323: checking whether make sets $(MAKE) +configure:2344: result: yes +configure:2529: checking whether to enable maintainer-specific portions of Makefiles +configure:2538: result: no +configure:2594: checking for style of include used by make +configure:2622: result: GNU +configure:2695: checking for gcc +configure:2722: result: cc +configure:2960: checking for C compiler version +configure:2967: cc --version >&5 +cc (GCC) 4.2.3 20071210 (prerelease) (Ubuntu 4.2.2-4ubuntu2) +Copyright (C) 2007 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:2970: $? = 0 +configure:2977: cc -v >&5 +Using built-in specs. +Target: i486-linux-gnu +Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --enable-targets=all --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu +Thread model: posix +gcc version 4.2.3 20071210 (prerelease) (Ubuntu 4.2.2-4ubuntu2) +configure:2980: $? = 0 +configure:2987: cc -V >&5 +cc: '-V' option must have argument +configure:2990: $? = 1 +configure:3013: checking for C compiler default output file name +configure:3040: cc -g -Wall -O2 -Wl,-z,defs -Wl,-O1 -Wl,--as-needed conftest.c >&5 +configure:3043: $? = 0 +configure:3081: result: a.out +configure:3098: checking whether the C compiler works +configure:3108: ./a.out +configure:3111: $? = 0 +configure:3128: result: yes +configure:3135: checking whether we are cross compiling +configure:3137: result: no +configure:3140: checking for suffix of executables +configure:3147: cc -o conftest -g -Wall -O2 -Wl,-z,defs -Wl,-O1 -Wl,--as-needed conftest.c >&5 +configure:3150: $? = 0 +configure:3174: result: +configure:3180: checking for suffix of object files +configure:3206: cc -c -g -Wall -O2 conftest.c >&5 +configure:3209: $? = 0 +configure:3232: result: o +configure:3236: checking whether we are using the GNU C compiler +configure:3265: cc -c -g -Wall -O2 conftest.c >&5 +configure:3271: $? = 0 +configure:3288: result: yes +configure:3293: checking whether cc accepts -g +configure:3323: cc -c -g conftest.c >&5 +configure:3329: $? = 0 +configure:3428: result: yes +configure:3445: checking for cc option to accept ISO C89 +configure:3519: cc -c -g -Wall -O2 conftest.c >&5 +configure:3525: $? = 0 +configure:3548: result: none needed +configure:3568: checking dependency style of cc +configure:3658: result: none +configure:3688: checking for intltool >= 0.35.0 +configure:3695: result: 0.36.1 found +configure:3746: checking for xgettext +configure:3764: found /usr/bin/xgettext +configure:3776: result: /usr/bin/xgettext +configure:3786: checking for msgmerge +configure:3804: found /usr/bin/msgmerge +configure:3816: result: /usr/bin/msgmerge +configure:3826: checking for msgfmt +configure:3844: found /usr/bin/msgfmt +configure:3856: result: /usr/bin/msgfmt +configure:3888: checking for perl +configure:3906: found /usr/bin/perl +configure:3918: result: /usr/bin/perl +configure:3937: checking for XML::Parser +configure:3940: result: ok +configure:3977: cc -o conftest -g -Wall -O2 -Wl,-z,defs -Wl,-O1 -Wl,--as-needed conftest.c >&5 +configure:3983: $? = 0 +configure:4103: checking for library containing strerror +configure:4144: cc -o conftest -g -Wall -O2 -Wl,-z,defs -Wl,-O1 -Wl,--as-needed conftest.c >&5 +configure:4150: $? = 0 +configure:4178: result: none required +configure:4234: checking for gcc +configure:4261: result: cc +configure:4499: checking for C compiler version +configure:4506: cc --version >&5 +cc (GCC) 4.2.3 20071210 (prerelease) (Ubuntu 4.2.2-4ubuntu2) +Copyright (C) 2007 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:4509: $? = 0 +configure:4516: cc -v >&5 +Using built-in specs. +Target: i486-linux-gnu +Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.2 --program-suffix=-4.2 --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --enable-targets=all --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu +Thread model: posix +gcc version 4.2.3 20071210 (prerelease) (Ubuntu 4.2.2-4ubuntu2) +configure:4519: $? = 0 +configure:4526: cc -V >&5 +cc: '-V' option must have argument +configure:4529: $? = 1 +configure:4532: checking whether we are using the GNU C compiler +configure:4584: result: yes +configure:4589: checking whether cc accepts -g +configure:4724: result: yes +configure:4741: checking for cc option to accept ISO C89 +configure:4844: result: none needed +configure:4864: checking dependency style of cc +configure:4954: result: none +configure:4976: checking how to run the C preprocessor +configure:5016: cc -E conftest.c +configure:5022: $? = 0 +configure:5053: cc -E conftest.c +conftest.c:10:28: error: ac_nonexistent.h: No such file or directory +configure:5059: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "gnome-session" +| #define PACKAGE_TARNAME "gnome-session" +| #define PACKAGE_VERSION "2.20.2" +| #define PACKAGE_STRING "gnome-session 2.20.2" +| #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-session" +| #define PACKAGE "gnome-session" +| #define VERSION "2.20.2" +| /* end confdefs.h. */ +| #include +configure:5092: result: cc -E +configure:5121: cc -E conftest.c +configure:5127: $? = 0 +configure:5158: cc -E conftest.c +conftest.c:10:28: error: ac_nonexistent.h: No such file or directory +configure:5164: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "gnome-session" +| #define PACKAGE_TARNAME "gnome-session" +| #define PACKAGE_VERSION "2.20.2" +| #define PACKAGE_STRING "gnome-session 2.20.2" +| #define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-session" +| #define PACKAGE "gnome-session" +| #define VERSION "2.20.2" +| /* end confdefs.h. */ +| #include +configure:5202: checking for grep that handles long lines and -e +configure:5276: result: /bin/grep +configure:5281: checking for egrep +configure:5359: result: /bin/grep -E +configure:5364: checking for ANSI C header files +configure:5394: cc -c -g -Wall -O2 conftest.c >&5 +configure:5400: $? = 0 +configure:5499: cc -o conftest -g -Wall -O2 -Wl,-z,defs -Wl,-O1 -Wl,--as-needed conftest.c >&5 +configure:5502: $? = 0 +configure:5508: ./conftest +configure:5511: $? = 0 +configure:5528: result: yes +configure:5616: checking build system type +configure:5634: result: i486-pc-linux-gnu +configure:5656: checking host system type +configure:5671: result: i486-pc-linux-gnu +configure:5693: checking for a sed that does not truncate output +configure:5747: result: /bin/sed +configure:5761: checking for ld used by cc +configure:5828: result: /usr/bin/ld +configure:5837: checking if the linker (/usr/bin/ld) is GNU ld +configure:5852: result: yes +configure:5857: checking for /usr/bin/ld option to reload object files +configure:5864: result: -r +configure:5882: checking for BSD-compatible nm +configure:5931: result: /usr/bin/nm -B +configure:5935: checking whether ln -s works +configure:5939: result: yes +configure:5946: checking how to recognise dependent libraries +configure:6122: result: pass_all +configure:6364: checking for sys/types.h +configure:6385: cc -c -g -Wall -O2 conftest.c >&5 +configure:6391: $? = 0 +configure:6407: result: yes +configure:6364: checking for sys/stat.h +configure:6385: cc -c -g -Wall -O2 conftest.c >&5 +configure:6391: $? = 0 +configure:6407: result: yes +configure:6364: checking for stdlib.h +configure:6385: cc -c -g -Wall -O2 conftest.c >&5 +configure:6391: $? = 0 +configure:6407: result: yes +configure:6364: checking for string.h +configure:6385: cc -c -g -Wall -O2 conftest.c >&5 +configure:6391: $? = 0 +configure:6407: result: yes +configure:6364: checking for memory.h +configure:6385: cc -c -g -Wall -O2 conftest.c >&5 +configure:6391: $? = 0 +configure:6407: result: yes +configure:6364: checking for strings.h +configure:6385: cc -c -g -Wall -O2 conftest.c >&5 + +## ---------------- ## +## Cache variables. ## +## ---------------- ## + +ac_cv_build=i486-pc-linux-gnu +ac_cv_c_compiler_gnu=yes +ac_cv_env_CCC_set= +ac_cv_env_CCC_value= +ac_cv_env_CC_set=set +ac_cv_env_CC_value=cc +ac_cv_env_CFLAGS_set=set +ac_cv_env_CFLAGS_value='-g -Wall -O2' +ac_cv_env_CPPFLAGS_set=set +ac_cv_env_CPPFLAGS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_CXXCPP_set= +ac_cv_env_CXXCPP_value= +ac_cv_env_CXXFLAGS_set=set +ac_cv_env_CXXFLAGS_value='-g -Wall -O2' +ac_cv_env_CXX_set=set +ac_cv_env_CXX_value=g++ +ac_cv_env_ESOUND_CFLAGS_set= +ac_cv_env_ESOUND_CFLAGS_value= +ac_cv_env_ESOUND_LIBS_set= +ac_cv_env_ESOUND_LIBS_value= +ac_cv_env_F77_set= +ac_cv_env_F77_value= +ac_cv_env_FFLAGS_set= +ac_cv_env_FFLAGS_value= +ac_cv_env_GNOME_SESSION_CFLAGS_set= +ac_cv_env_GNOME_SESSION_CFLAGS_value= +ac_cv_env_GNOME_SESSION_LIBS_set= +ac_cv_env_GNOME_SESSION_LIBS_value= +ac_cv_env_LDFLAGS_set=set +ac_cv_env_LDFLAGS_value='-Wl,-z,defs -Wl,-O1 -Wl,--as-needed' +ac_cv_env_LIBNOTIFY_CFLAGS_set= +ac_cv_env_LIBNOTIFY_CFLAGS_value= +ac_cv_env_LIBNOTIFY_LIBS_set= +ac_cv_env_LIBNOTIFY_LIBS_value= +ac_cv_env_LIBS_set= +ac_cv_env_LIBS_value= +ac_cv_env_PKG_CONFIG_set= +ac_cv_env_PKG_CONFIG_value= +ac_cv_env_XMKMF_set= +ac_cv_env_XMKMF_value= +ac_cv_env_build_alias_set=set +ac_cv_env_build_alias_value=i486-linux-gnu +ac_cv_env_host_alias_set= +ac_cv_env_host_alias_value= +ac_cv_env_target_alias_set= +ac_cv_env_target_alias_value= +ac_cv_header_memory_h=yes +ac_cv_header_stdc=yes +ac_cv_header_stdlib_h=yes +ac_cv_header_string_h=yes +ac_cv_header_sys_stat_h=yes +ac_cv_header_sys_types_h=yes +ac_cv_host=i486-pc-linux-gnu +ac_cv_objext=o +ac_cv_path_EGREP='/bin/grep -E' +ac_cv_path_GREP=/bin/grep +ac_cv_path_INTLTOOL_PERL=/usr/bin/perl +ac_cv_path_MSGFMT=/usr/bin/msgfmt +ac_cv_path_MSGMERGE=/usr/bin/msgmerge +ac_cv_path_XGETTEXT=/usr/bin/xgettext +ac_cv_path_install='/usr/bin/install -c' +ac_cv_prog_AWK=gawk +ac_cv_prog_CPP='cc -E' +ac_cv_prog_ac_ct_CC=cc +ac_cv_prog_cc_c89= +ac_cv_prog_cc_g=yes +ac_cv_prog_make_make_set=yes +ac_cv_search_strerror='none required' +am_cv_CC_dependencies_compiler_type=none +lt_cv_deplibs_check_method=pass_all +lt_cv_file_magic_cmd='$MAGIC_CMD' +lt_cv_file_magic_test_file= +lt_cv_ld_reload_flag=-r +lt_cv_path_LD=/usr/bin/ld +lt_cv_path_NM='/usr/bin/nm -B' +lt_cv_path_SED=/bin/sed +lt_cv_prog_gnu_ld=yes + +## ----------------- ## +## Output variables. ## +## ----------------- ## + +ACLOCAL='${SHELL} /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/missing --run aclocal-1.9' +ACLOCAL_AMFLAGS='${ACLOCAL_FLAGS}' +ALL_LINGUAS='' +AMDEPBACKSLASH='' +AMDEP_FALSE='' +AMDEP_TRUE='#' +AMTAR='${SHELL} /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/missing --run tar' +AR='' +AT_SPI_REGISTRYD_DIR='' +AUTOCONF='${SHELL} /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/missing --run autoconf' +AUTOHEADER='${SHELL} /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/missing --run autoheader' +AUTOMAKE='${SHELL} /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/missing --run automake-1.9' +AWK='gawk' +CATALOGS='' +CATOBJEXT='' +CC='cc' +CCDEPMODE='depmode=none' +CFLAGS='-g -Wall -O2' +CPP='cc -E' +CPPFLAGS='' +CXX='g++' +CXXCPP='' +CXXDEPMODE='' +CXXFLAGS='-g -Wall -O2' +CYGPATH_W='echo' +DATADIRNAME='share' +DEFS='' +DEPDIR='.deps' +DISABLE_DEPRECATED='' +DISABLE_DEPRECATED_CFLAGS='' +ECHO='echo' +ECHO_C='' +ECHO_N='-n' +ECHO_T='' +EGREP='/bin/grep -E' +ESD_SERVER='' +ESOUND_CFLAGS='' +ESOUND_LIBS='' +EXEEXT='' +F77='' +FFLAGS='' +GCONFTOOL='' +GCONF_SANITY_CHECK='' +GCONF_SCHEMAS_INSTALL_FALSE='' +GCONF_SCHEMAS_INSTALL_TRUE='' +GCONF_SCHEMA_CONFIG_SOURCE='' +GCONF_SCHEMA_FILE_DIR='' +GETTEXT_PACKAGE='' +GLIB_GENMARSHAL='' +GMOFILES='' +GMSGFMT='' +GNOME_KEYRING_DAEMON='' +GNOME_SESSION_CFLAGS='' +GNOME_SESSION_LIBS='' +GREP='/bin/grep' +INSTALL_DATA='${INSTALL} -m 644' +INSTALL_PROGRAM='${INSTALL}' +INSTALL_SCRIPT='${INSTALL}' +INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' +INSTOBJEXT='' +INTLLIBS='' +INTLTOOL_CAVES_RULE='%.caves: %.caves.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 $< $@' +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 $< $@' +INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.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 $< $@' +INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract' +INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_MERGE='$(top_builddir)/intltool-merge' +INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@' +INTLTOOL_PERL='/usr/bin/perl' +INTLTOOL_POLICY_RULE='%.policy: %.policy.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_PROP_RULE='%.prop: %.prop.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 $< $@' +INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_SERVICE_RULE='%.service: %.service.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 $< $@' +INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.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 $< $@' +INTLTOOL_THEME_RULE='%.theme: %.theme.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 $< $@' +INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_UPDATE='$(top_builddir)/intltool-update' +INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@' +INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@' +LDFLAGS='-Wl,-z,defs -Wl,-O1 -Wl,--as-needed' +LIBNOTIFY_CFLAGS='' +LIBNOTIFY_LIBS='' +LIBOBJS='' +LIBS='' +LIBTOOL='' +LIBWRAP_LIBS='' +LN_S='ln -s' +LTLIBOBJS='' +MAINT='#' +MAINTAINER_MODE_FALSE='' +MAINTAINER_MODE_TRUE='#' +MAKEINFO='${SHELL} /home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/missing --run makeinfo' +MKINSTALLDIRS='' +MSGFMT='/usr/bin/msgfmt' +MSGFMT_OPTS='' +MSGMERGE='/usr/bin/msgmerge' +OBJEXT='o' +PACKAGE='gnome-session' +PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-session' +PACKAGE_NAME='gnome-session' +PACKAGE_STRING='gnome-session 2.20.2' +PACKAGE_TARNAME='gnome-session' +PACKAGE_VERSION='2.20.2' +PATH_SEPARATOR=':' +PERL='' +PKG_CONFIG='' +POFILES='' +POSUB='' +PO_IN_DATADIR_FALSE='' +PO_IN_DATADIR_TRUE='' +RANLIB='' +REBUILD='' +RSH_COMMAND='' +SESSION_FALSE='' +SESSION_TRUE='' +SET_MAKE='' +SHELL='/bin/bash' +STRIP='' +TIME_UTILITY='' +USE_NLS='' +VERSION='2.20.2' +WARN_CFLAGS='' +WINDOW_MANAGER='' +XGETTEXT='/usr/bin/xgettext' +XMKMF='' +X_CFLAGS='' +X_EXTRA_LIBS='' +X_LIBS='' +X_PRE_LIBS='' +ac_ct_CC='cc' +ac_ct_CXX='' +ac_ct_F77='' +am__fastdepCC_FALSE='' +am__fastdepCC_TRUE='#' +am__fastdepCXX_FALSE='' +am__fastdepCXX_TRUE='' +am__include='include' +am__leading_dot='.' +am__quote='' +am__tar='${AMTAR} chof - "$$tardir"' +am__untar='${AMTAR} xf -' +bindir='${exec_prefix}/bin' +build='i486-pc-linux-gnu' +build_alias='i486-linux-gnu' +build_cpu='i486' +build_os='linux-gnu' +build_vendor='pc' +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +dvidir='${docdir}' +exec_prefix='NONE' +host='i486-pc-linux-gnu' +host_alias='' +host_cpu='i486' +host_os='linux-gnu' +host_vendor='pc' +htmldir='${docdir}' +includedir='${prefix}/include' +infodir='${prefix}/share/info' +install_sh='/home/seb128/boulot/package/gnome-session/gnome-session-2.20.2/install-sh' +libdir='${exec_prefix}/lib' +libexecdir='${prefix}/lib/gnome-session' +localedir='${datarootdir}/locale' +localstatedir='/var/lib' +mandir='${prefix}/share/man' +mkdir_p='mkdir -p --' +oldincludedir='/usr/include' +pdfdir='${docdir}' +prefix='/usr' +program_transform_name='s,x,x,' +psdir='${docdir}' +sbindir='${exec_prefix}/sbin' +sharedstatedir='${prefix}/com' +sysconfdir='/etc' +target_alias='' + +## ----------- ## +## confdefs.h. ## +## ----------- ## + +#define PACKAGE_NAME "gnome-session" +#define PACKAGE_TARNAME "gnome-session" +#define PACKAGE_VERSION "2.20.2" +#define PACKAGE_STRING "gnome-session 2.20.2" +#define PACKAGE_BUGREPORT "http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-session" +#define PACKAGE "gnome-session" +#define VERSION "2.20.2" +#define STDC_HEADERS 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRING_H 1 +#define HAVE_MEMORY_H 1 + +configure: caught signal 2 +configure: exit 1