r15485 - in /desktop/unstable/pessulus/debian: changelog control control.in patches/01_scp-integration.patch patches/70_mandatory-autoconf.patch

ember-guest at users.alioth.debian.org ember-guest at users.alioth.debian.org
Sun Apr 6 18:09:26 UTC 2008


Author: ember-guest
Date: Sun Apr  6 18:09:26 2008
New Revision: 15485

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=15485
Log:
* New upstream stable release.
  - Update autoconf patch, 70_mandatory-autoconf.
* debian/patches/01_scp-integration.patch:
  - patch update by Peter Savage to fix broken SCP integration (Ubuntu: #62434)
* Bump Standards-Version to 3.7.3 (no changes)

Added:
    desktop/unstable/pessulus/debian/patches/01_scp-integration.patch
Modified:
    desktop/unstable/pessulus/debian/changelog
    desktop/unstable/pessulus/debian/control
    desktop/unstable/pessulus/debian/control.in
    desktop/unstable/pessulus/debian/patches/70_mandatory-autoconf.patch

Modified: desktop/unstable/pessulus/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pessulus/debian/changelog?rev=15485&op=diff
==============================================================================
--- desktop/unstable/pessulus/debian/changelog (original)
+++ desktop/unstable/pessulus/debian/changelog Sun Apr  6 18:09:26 2008
@@ -1,3 +1,13 @@
+pessulus (2.16.4-1) UNRELEASED; urgency=low
+
+  * New upstream stable release.
+    - Update autoconf patch, 70_mandatory-autoconf.
+  * debian/patches/01_scp-integration.patch:
+    - patch update by Peter Savage to fix broken SCP integration (Ubuntu: #62434)
+  * Bump Standards-Version to 3.7.3 (no changes)
+
+ -- Pedro Fragoso <emberez at gmail.com>  Sun, 06 Apr 2008 00:00:49 +0100
+
 pessulus (2.16.3-1) unstable; urgency=low
 
   * New upstream stable release.

Modified: desktop/unstable/pessulus/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pessulus/debian/control?rev=15485&op=diff
==============================================================================
--- desktop/unstable/pessulus/debian/control (original)
+++ desktop/unstable/pessulus/debian/control Sun Apr  6 18:09:26 2008
@@ -11,7 +11,7 @@
                      gconf2,
                      intltool,
                      python-central (>= 0.5)
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 XS-Python-Version: >= 2.4
 
 Package: pessulus

Modified: desktop/unstable/pessulus/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pessulus/debian/control.in?rev=15485&op=diff
==============================================================================
--- desktop/unstable/pessulus/debian/control.in (original)
+++ desktop/unstable/pessulus/debian/control.in Sun Apr  6 18:09:26 2008
@@ -11,7 +11,7 @@
                      gconf2,
                      intltool,
                      python-central (>= 0.5)
-Standards-Version: 3.7.2
+Standards-Version: 3.7.3
 XS-Python-Version: >= 2.4
 
 Package: pessulus

Added: desktop/unstable/pessulus/debian/patches/01_scp-integration.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pessulus/debian/patches/01_scp-integration.patch?rev=15485&op=file
==============================================================================
--- desktop/unstable/pessulus/debian/patches/01_scp-integration.patch (added)
+++ desktop/unstable/pessulus/debian/patches/01_scp-integration.patch Sun Apr  6 18:09:26 2008
@@ -1,0 +1,280 @@
+diff -Nur pessulus-2.16.1/Pessulus/lockdownappliergconf.py pessulus-2.16.1.new/Pessulus/lockdownappliergconf.py
+--- pessulus-2.16.1/Pessulus/lockdownappliergconf.py	2005-11-04 19:30:22.000000000 +0100
++++ pessulus-2.16.1.new/Pessulus/lockdownappliergconf.py	2006-10-12 13:31:34.000000000 +0200
+@@ -52,7 +52,7 @@
+     return False
+ 
+ class PessulusLockdownApplierGconf (lockdownapplier.PessulusLockdownApplier):
+-    def __init__ (self):
++    def __init__ (self,args):
+         self.can_edit_mandatory = can_edit_mandatory ()
+         self.client_mandatory = None
+ 
+diff -Nur pessulus-2.16.1/Pessulus/lockdownappliergconfscp.py pessulus-2.16.1.new/Pessulus/lockdownappliergconfscp.py
+--- pessulus-2.16.1/Pessulus/lockdownappliergconfscp.py	1970-01-01 01:00:00.000000000 +0100
++++ pessulus-2.16.1.new/Pessulus/lockdownappliergconfscp.py	2006-10-12 13:31:34.000000000 +0200
+@@ -0,0 +1,182 @@
++#!/usr/bin/env python
++
++# vim: set ts=4 sw=4 et:
++
++#
++# Copyright (C) 2005 Vincent Untz <vuntz at gnome.org>
++#
++# This program is free software; you can redistribute it and/or modify
++# it under the terms of the GNU General Public License as published by
++# the Free Software Foundation; either version 2 of the License, or
++# (at your option) any later version.
++#
++# This program 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 St, Fifth Floor, Boston, MA  02110-1301, USA
++#
++
++import subprocess
++import string
++import gconf
++import gobject
++import lockdownapplier
++import lockdownappliergconf
++from os.path import exists
++from config import *
++
++def can_edit_mandatory ():
++
++    try:
++        engine = gconf.engine_get_for_address (GCONF_MANDATORY_SOURCE)
++    except gobject.GError:
++        return False
++
++    if engine == None:
++        return False
++
++    try:
++        #entry = engine.get_entry ("/apps/gconf-editor/can_edit_source",
++        #                          None,
++        #                          False)
++        #gconf_engine_get_entry() is not wrapped. Ugly workaround:
++        client = gconf.client_get_for_engine (engine)
++        entry = client.get_entry ("/apps/gconf-editor/can_edit_source", "",
++                                  False)
++    except gobject.GError:
++        return False
++
++    if entry != None:
++        return entry.get_is_writable ()
++
++    return False
++
++class PessulusLockdownApplierGconf (lockdownappliergconf.PessulusLockdownApplierGconf):
++    def __init__ (self,args):
++        if args.gconfmandatory:
++            if args.gconfmandatory.find('/var/lib/gconf/users'):
++                if exists(args.gconfmandatory.split(':')[2]) == False:
++                    make_dir = subprocess.Popen(['mkdir', '-p', args.gconfmandatory.split(':')[2]])
++                    make_dir.wait()        
++
++        if args.disablemand == True:
++            self.can_edit_mandatory = False
++        else:
++            self.can_edit_mandatory = can_edit_mandatory ()
++
++        self.args = args
++
++        self.client_mandatory = None
++
++        if (self.can_edit_mandatory):
++            engine = gconf.engine_get_for_address (GCONF_MANDATORY_SOURCE)
++            self.client_mandatory = gconf.client_get_for_engine (engine)
++
++        self.client_default = gconf.client_get_default ()
++
++        gcengine = gconf.engine_get_for_address (args.gconfpath)
++        self.client = gconf.client_get_for_engine (gcengine)
++	    
++        self.custompath = True
++
++        if args.gconfmandatory != None:
++            gcmengine = gconf.engine_get_for_address (args.gconfmandatory)
++            self.client_mandatory = gconf.client_get_for_engine (gcmengine)
++
++    def get_bool (self, key):
++        value = None
++        is_mandatory = False
++
++        if self.supports_mandatory_settings ():
++            entry = self.client_mandatory.get_without_default (key)
++            if entry != None:
++                is_mandatory = True
++                value = entry.get_bool ()
++            else:
++                value = self.get_gtool_bool (key)
++        else:
++            value = self.get_gtool_bool (key)
++
++        return (value, is_mandatory)
++
++    def get_gtool_bool (self, key):
++        proc = subprocess.Popen(['sudo', '-u', self.args.gconfuser, 'gconftool-2', '--get', key,  '--config-source', self.args.gconfpath], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
++        output = proc.stdout.read().strip("\n")
++        if output == '':
++            return self.client_default.get_bool(key)
++        else:
++            if output == "true":
++                return bool(1)
++            else:
++                return bool(0)
++        
++    def set_bool (self, key, value, mandatory):
++        if mandatory:
++            if self.supports_mandatory_settings ():
++                self.client_mandatory.set_bool (key, value)
++        else:
++            if self.supports_mandatory_settings ():
++                self.client_mandatory.unset (key)
++            subprocess.Popen(['sudo', '-u', self.args.gconfuser, 'gconftool-2', '--type', 'bool', '--set', key, str(value), '--config-source', self.args.gconfpath])
++
++    def get_list (self, key, list_type):
++        value = None
++        is_mandatory = False
++
++        if self.supports_mandatory_settings ():
++            entry = self.client_mandatory.get_without_default (key)
++            if entry != None:
++                is_mandatory = True
++                list = entry.get_list ()
++                type = entry.get_list_type ()
++                value = []
++                for element in list:
++                    if type == gconf.VALUE_STRING:
++                        value.append (element.get_string ())
++                    elif type == gconf.VALUE_BOOL:
++                        value.append (element.get_bool ())
++                    elif type == gconf.VALUE_INT:
++                        value.append (element.get_int ())
++                    elif type == gconf.VALUE_FLOAT:
++                        value.append (element.get_float ())
++            else:
++                 value = self.get_gtool_list(key, list_type)
++        else:
++             value = self.get_gtool_list(key, list_type)
++
++        return (value, is_mandatory)
++
++    def get_gtool_list (self, key, list_type):
++        proc = subprocess.Popen(['sudo', '-u', self.args.gconfuser, 'gconftool-2', '--get',  key,  '--config-source', self.args.gconfpath], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
++        output = proc.stdout.read()
++        if output == '':
++            return self.client_default.get_list(key, list_type)
++        else:
++            output = output.lstrip("[").strip("\n").rstrip("]").split(", ")
++            value = []
++            for element in output:
++                value.append(element.lstrip("'").rstrip("'"))
++            return (value)    
++            
++
++    def set_list (self, key, list_type, value, mandatory):
++        if mandatory:
++            if self.supports_mandatory_settings ():
++                self.client_mandatory.set_list (key, list_type, value)
++        else:
++            if list_type == gconf.VALUE_STRING:
++                s_type = "string"
++            elif list_type == gconf.VALUE_BOOL:
++                s_type = "bool"
++            elif list_type == gconf.VALUE_INT:
++                s_type = "int"
++            elif list_type == gconf.VALUE_FLOAT:
++                s_type = "float"
++            if self.supports_mandatory_settings ():
++                self.client_mandatory.unset (key)
++            subprocess.Popen(['sudo', '-u', self.args.gconfuser, 'gconftool-2', '--type', 'list', '--list-type', s_type, '--set', key, str(value), '--config-source', self.args.gconfpath])
++
+diff -Nur pessulus-2.16.1/Pessulus/main.py pessulus-2.16.1.new/Pessulus/main.py
+--- pessulus-2.16.1/Pessulus/main.py	2006-03-13 21:47:30.000000000 +0100
++++ pessulus-2.16.1.new/Pessulus/main.py	2006-10-12 13:31:34.000000000 +0200
+@@ -32,9 +32,13 @@
+     import gnome
+ 
+     import maindialog
+-    import lockdownappliergconf
+     import config
+ 
++    if args.gconfpath != None:
++        import lockdownappliergconfscp as lockdownappliergconf    
++    else:
++        import lockdownappliergconf
++
+     try:
+         locale.setlocale (locale.LC_ALL, "")
+     except locale.Error:
+@@ -46,7 +50,7 @@
+ 
+     gtk.window_set_default_icon_name ("stock_lock")
+ 
+-    applier = lockdownappliergconf.PessulusLockdownApplierGconf ()
++    applier = lockdownappliergconf.PessulusLockdownApplierGconf (args)
+ 
+     dialog = maindialog.PessulusMainDialog (applier, gnome_program = prog)
+ 
+diff -Nur pessulus-2.16.1/Pessulus/Makefile.in pessulus-2.16.1.new/Pessulus/Makefile.in
+--- pessulus-2.16.1/Pessulus/Makefile.in	2006-10-02 17:43:00.000000000 +0200
++++ pessulus-2.16.1.new/Pessulus/Makefile.in	2006-10-12 13:32:27.000000000 +0200
+@@ -179,6 +179,7 @@
+ 	icons.py		\
+ 	globalvar.py		\
+ 	lockdownappliergconf.py	\
++	lockdownappliergconfscp.py	\
+ 	lockdownapplier.py	\
+ 	lockdownbutton.py	\
+ 	lockdowncheckbutton.py	\
+diff -Nur pessulus-2.16.1/pessulus.in pessulus-2.16.1.new/pessulus.in
+--- pessulus-2.16.1/pessulus.in	2006-09-11 11:48:10.000000000 +0200
++++ pessulus-2.16.1.new/pessulus.in	2006-10-12 13:31:34.000000000 +0200
+@@ -48,4 +48,39 @@
+ 
+ 
+ import Pessulus.main
+-Pessulus.main.main(sys.argv[1:])
++
++from gobject.option import OptionGroup, OptionParser, make_option, OptionError
++
++parser = OptionParser("", 
++    description="Lockdown editor for gnome.",
++    option_list = [
++	make_option("--gconf-user", "-u",
++		    type="string",
++		    action="store",
++		    dest="gconfuser",
++		    help="Defines the user to write the gconf as"),
++
++        make_option("--gconf-path", "-p", 
++                    type="string", 
++                    action="store", 
++                    dest="gconfpath",
++                    help="Defines an alternative gconf path"),
++
++	make_option("--gconf-mandatory-path", "-m", 
++		    type="string",
++                    action="store", 
++                    dest="gconfmandatory",
++                    help="Defines an alternative mandatory gconf path"),
++
++        make_option("--disable-mandatory", "-d", 
++                    action="store_true", 
++                    dest="disablemand", 
++                    help="An example option."),
++
++
++        # ...
++    ])
++
++parser.parse_args()
++
++Pessulus.main.main(parser.values)

Modified: desktop/unstable/pessulus/debian/patches/70_mandatory-autoconf.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/pessulus/debian/patches/70_mandatory-autoconf.patch?rev=15485&op=diff
==============================================================================
--- desktop/unstable/pessulus/debian/patches/70_mandatory-autoconf.patch (original)
+++ desktop/unstable/pessulus/debian/patches/70_mandatory-autoconf.patch Sun Apr  6 18:09:26 2008
@@ -1,188 +1,9 @@
 Generated with autoconf && rm -rf autom4te.cache
 
-diff -Nur pessulus-2.16.3/configure pessulus-2.16.3.new/configure
---- pessulus-2.16.3/configure	2007-09-17 20:47:26.000000000 +0200
-+++ pessulus-2.16.3.new/configure	2007-09-23 19:10:38.000000000 +0200
-@@ -1,6 +1,6 @@
- #! /bin/sh
- # Guess values for system-dependent variables and create Makefiles.
--# Generated by GNU Autoconf 2.60 for pessulus 2.16.3.
-+# Generated by GNU Autoconf 2.61 for pessulus 2.16.3.
- #
- # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus>.
- #
-@@ -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'"
-@@ -567,36 +582,36 @@
- # Factoring default headers for most tests.
- ac_includes_default="\
- #include <stdio.h>
--#if HAVE_SYS_TYPES_H
-+#ifdef HAVE_SYS_TYPES_H
- # include <sys/types.h>
- #endif
--#if HAVE_SYS_STAT_H
-+#ifdef HAVE_SYS_STAT_H
- # include <sys/stat.h>
- #endif
--#if STDC_HEADERS
-+#ifdef STDC_HEADERS
- # include <stdlib.h>
- # include <stddef.h>
- #else
--# if HAVE_STDLIB_H
-+# ifdef HAVE_STDLIB_H
- #  include <stdlib.h>
- # 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 <memory.h>
- # endif
- # include <string.h>
- #endif
--#if HAVE_STRINGS_H
-+#ifdef HAVE_STRINGS_H
- # include <strings.h>
- #endif
--#if HAVE_INTTYPES_H
-+#ifdef HAVE_INTTYPES_H
- # include <inttypes.h>
- #endif
--#if HAVE_STDINT_H
-+#ifdef HAVE_STDINT_H
- # include <stdint.h>
- #endif
--#if HAVE_UNISTD_H
-+#ifdef HAVE_UNISTD_H
- # include <unistd.h>
- #endif"
- 
-@@ -662,9 +677,6 @@
+diff -Nur -x '*.orig' -x '*~' pessulus-2.16.4/configure pessulus-2.16.4.new/configure
+--- pessulus-2.16.4/configure	2008-04-05 23:18:46.000000000 +0000
++++ pessulus-2.16.4.new/configure	2008-04-05 23:21:43.000000000 +0000
+@@ -678,9 +678,6 @@
  MAINTAINER_MODE_FALSE
  MAINT
  ACLOCAL_AMFLAGS
@@ -192,7 +13,7 @@
  GETTEXT_PACKAGE
  CC
  CFLAGS
-@@ -753,12 +765,10 @@
+@@ -759,9 +756,6 @@
        ac_precious_vars='build_alias
  host_alias
  target_alias
@@ -202,61 +23,7 @@
  CC
  CFLAGS
  LDFLAGS
-+LIBS
- CPPFLAGS
- CPP'
- 
-@@ -866,10 +876,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)
-@@ -885,10 +895,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 \
-@@ -1082,19 +1092,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)
-@@ -1352,15 +1362,11 @@
+@@ -1355,11 +1349,6 @@
                            The GConf source of the mandatory values
  
  Some influential environment variables:
@@ -268,66 +35,7 @@
    CC          C compiler command
    CFLAGS      C compiler flags
    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
-               nonstandard directory <lib dir>
-+  LIBS        libraries to pass to the linker, e.g. -l<library>
-   CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
-               you have headers in a nonstandard directory <include dir>
-   CPP         C preprocessor
-@@ -1430,7 +1436,7 @@
- if $ac_init_version; then
-   cat <<\_ACEOF
- pessulus configure 2.16.3
--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.
-@@ -1444,7 +1450,7 @@
- running configure, to aid debugging if configure makes a mistake.
- 
- It was created by pessulus $as_me 2.16.3, which was
--generated by GNU Autoconf 2.60.  Invocation command line was
-+generated by GNU Autoconf 2.61.  Invocation command line was
- 
-   $ $0 $@
- 
-@@ -1865,7 +1871,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.
-@@ -2031,7 +2037,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
-@@ -2166,7 +2172,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
-@@ -2206,7 +2212,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
-@@ -2288,248 +2294,6 @@
+@@ -2310,248 +2299,6 @@
  ACLOCAL_AMFLAGS="$ACLOCAL_FLAGS"
  
  
@@ -353,7 +61,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
@@ -396,7 +104,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
@@ -576,1326 +284,7 @@
  GETTEXT_PACKAGE=pessulus
  
  
-@@ -2624,7 +2388,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
-@@ -2664,7 +2428,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
-@@ -2721,7 +2485,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
-@@ -2762,7 +2526,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
-@@ -2820,7 +2584,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
-@@ -2864,7 +2628,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
-@@ -3005,7 +2769,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
-@@ -3033,6 +2797,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
- 
-@@ -3044,8 +2814,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.
-@@ -3223,27 +2991,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
-@@ -3298,27 +3049,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
-@@ -3353,27 +3087,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
-@@ -3409,27 +3126,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
-@@ -3545,27 +3245,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
-@@ -3764,17 +3447,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
-@@ -3808,17 +3484,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
-@@ -3883,17 +3552,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
-@@ -3927,17 +3589,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
-@@ -3992,7 +3647,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
-@@ -4074,7 +3729,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
-@@ -4170,27 +3825,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
-@@ -4366,27 +4004,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
-@@ -4533,27 +4154,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
-@@ -4589,17 +4193,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
-@@ -4697,27 +4294,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
-@@ -4726,7 +4307,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
-@@ -4782,27 +4363,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
-@@ -4838,17 +4402,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
-@@ -4944,27 +4501,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
-@@ -4973,7 +4514,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
-@@ -5016,27 +4557,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
-@@ -5045,7 +4570,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
-@@ -5121,27 +4646,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
-@@ -5150,7 +4659,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'}'`
-@@ -5215,27 +4724,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
-@@ -5244,7 +4737,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
-@@ -5293,27 +4786,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
-@@ -5322,7 +4799,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
-@@ -5371,27 +4848,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
-@@ -5400,7 +4861,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
-@@ -5462,27 +4923,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
-@@ -5491,7 +4936,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
-@@ -5540,27 +4985,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
-@@ -5569,7 +4998,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
-@@ -5664,27 +5093,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
-@@ -5693,7 +5106,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'}'`
-@@ -5840,27 +5253,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
-@@ -5869,7 +5266,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'}'`
-@@ -5930,7 +5327,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
-@@ -6018,27 +5415,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
-@@ -6110,27 +5491,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
-@@ -6139,7 +5504,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
-@@ -6160,7 +5525,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
-@@ -6366,7 +5731,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
-@@ -6429,7 +5794,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_ICONV="$as_dir/$ac_word$ac_exec_ext"
-     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-@@ -6470,7 +5835,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_MSGFMT="$as_dir/$ac_word$ac_exec_ext"
-     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-@@ -6511,7 +5876,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_MSGMERGE="$as_dir/$ac_word$ac_exec_ext"
-     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-@@ -6552,7 +5917,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_XGETTEXT="$as_dir/$ac_word$ac_exec_ext"
-     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-@@ -6611,27 +5976,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
-@@ -6702,27 +6051,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
-@@ -6731,7 +6064,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
-@@ -6749,7 +6082,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
- 
-@@ -6787,7 +6120,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_PYTHON="$as_dir/$ac_word$ac_exec_ext"
-     echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
-     break 2
-@@ -6913,7 +6246,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
-@@ -7133,7 +6466,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=:
-@@ -7142,10 +6476,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
-@@ -7369,19 +6706,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'"
-@@ -7397,7 +6743,7 @@
- # values after options handling.
- ac_log="
- This file was extended by pessulus $as_me 2.16.3, 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
-@@ -7425,7 +6771,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
-@@ -7444,7 +6790,7 @@
- cat >>$CONFIG_STATUS <<_ACEOF
- ac_cs_version="\\
- pessulus config.status 2.16.3
--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.
-@@ -7685,9 +7031,6 @@
+@@ -7174,9 +6921,6 @@
  MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
  MAINT!$MAINT$ac_delim
  ACLOCAL_AMFLAGS!$ACLOCAL_AMFLAGS$ac_delim
@@ -1905,32 +294,2733 @@
  GETTEXT_PACKAGE!$GETTEXT_PACKAGE$ac_delim
  CC!$CC$ac_delim
  CFLAGS!$CFLAGS$ac_delim
-@@ -7720,6 +7063,9 @@
- MSGFMT!$MSGFMT$ac_delim
- MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim
- GMSGFMT!$GMSGFMT$ac_delim
-+XGETTEXT!$XGETTEXT$ac_delim
-+CATALOGS!$CATALOGS$ac_delim
-+CATOBJEXT!$CATOBJEXT$ac_delim
+@@ -7208,6 +6952,9 @@
+ GMOFILES!$GMOFILES$ac_delim
+ INSTOBJEXT!$INSTOBJEXT$ac_delim
+ INTLLIBS!$INTLLIBS$ac_delim
++PO_IN_DATADIR_TRUE!$PO_IN_DATADIR_TRUE$ac_delim
++PO_IN_DATADIR_FALSE!$PO_IN_DATADIR_FALSE$ac_delim
++POFILES!$POFILES$ac_delim
  _ACEOF
  
    if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
-@@ -7761,9 +7107,6 @@
+@@ -7249,9 +6996,6 @@
  ac_delim='%!_!# '
  for ac_last_try in false false false false false :; do
    cat >conf$$subs.sed <<_ACEOF
--XGETTEXT!$XGETTEXT$ac_delim
--CATALOGS!$CATALOGS$ac_delim
--CATOBJEXT!$CATOBJEXT$ac_delim
- DATADIRNAME!$DATADIRNAME$ac_delim
- GMOFILES!$GMOFILES$ac_delim
- INSTOBJEXT!$INSTOBJEXT$ac_delim
-@@ -7815,7 +7158,7 @@
+-PO_IN_DATADIR_TRUE!$PO_IN_DATADIR_TRUE$ac_delim
+-PO_IN_DATADIR_FALSE!$PO_IN_DATADIR_FALSE$ac_delim
+-POFILES!$POFILES$ac_delim
+ POSUB!$POSUB$ac_delim
+ MKINSTALLDIRS!$MKINSTALLDIRS$ac_delim
+ INTLTOOL_DESKTOP_RULE!$INTLTOOL_DESKTOP_RULE$ac_delim
+@@ -7294,7 +7038,7 @@
  LTLIBOBJS!$LTLIBOBJS$ac_delim
  _ACEOF
  
--  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 52; then
-+  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 49; then
+-  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 43; then
++  if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 40; then
      break
    elif $ac_last_try; then
      { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
+diff -Nur -x '*.orig' -x '*~' pessulus-2.16.4/configure.rej pessulus-2.16.4.new/configure.rej
+--- pessulus-2.16.4/configure.rej	1970-01-01 00:00:00.000000000 +0000
++++ pessulus-2.16.4.new/configure.rej	2008-04-05 23:21:20.000000000 +0000
+@@ -0,0 +1,2697 @@
++***************
++*** 1,6 ****
++  #! /bin/sh
++  # Guess values for system-dependent variables and create Makefiles.
++- # Generated by GNU Autoconf 2.60 for pessulus 2.16.3.
++  #
++  # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus>.
++  #
++--- 1,6 ----
++  #! /bin/sh
++  # Guess values for system-dependent variables and create Makefiles.
+++ # Generated by GNU Autoconf 2.61 for pessulus 2.16.3.
++  #
++  # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=pessulus>.
++  #
++***************
++*** 12,18 ****
++  ## M4sh Initialization.  ##
++  ## --------------------- ##
++  
++- # Be Bourne compatible
++  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
++    emulate sh
++    NULLCMD=:
++--- 12,19 ----
++  ## M4sh Initialization.  ##
++  ## --------------------- ##
++  
+++ # 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,30 ****
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
++-   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
++--- 22,34 ----
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
+++   case `(set -o) 2>/dev/null` in
+++   *posix*) set -o posix ;;
+++ esac
+++ 
++  fi
+++ 
+++ 
++  
++  
++  # PATH needs CR
++***************
++*** 217,223 ****
++  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
++  do
++    IFS=$as_save_IFS
++    test -z "$as_dir" && as_dir=.
++--- 221,227 ----
++  else
++    as_candidate_shells=
++      as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+++ for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
++  do
++    IFS=$as_save_IFS
++    test -z "$as_dir" && as_dir=.
++***************
++*** 235,241 ****
++  	 # 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=:
++--- 239,244 ----
++  	 # 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
++  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
++    emulate sh
++    NULLCMD=:
++***************
++*** 244,253 ****
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
++-   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
++--- 247,258 ----
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
+++   case `(set -o) 2>/dev/null` in
+++   *posix*) set -o posix ;;
+++ esac
+++ 
++  fi
+++ 
++  
++  :
++  _ASEOF
++***************
++*** 255,261 ****
++    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=:
++--- 260,265 ----
++    CONFIG_SHELL=$as_shell
++  	       as_have_required=yes
++  	       if { "$as_shell" 2> /dev/null <<\_ASEOF
++  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
++    emulate sh
++    NULLCMD=:
++***************
++*** 264,273 ****
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
++-   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 () {
++--- 268,279 ----
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
+++   case `(set -o) 2>/dev/null` in
+++   *posix*) set -o posix ;;
+++ esac
+++ 
++  fi
+++ 
++  
++  :
++  (as_func_return () {
++***************
++*** 514,532 ****
++    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"
++  else
++-   as_executable_p=:
++  fi
++- rm -f conf$$.file
++  
++  # 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'"
++--- 520,547 ----
++    as_mkdir_p=false
++  fi
++  
+++ if test -x / >/dev/null 2>&1; then
+++   as_test_x='test -x'
++  else
+++   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
+++ 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'"
++***************
++*** 567,602 ****
++  # Factoring default headers for most tests.
++  ac_includes_default="\
++  #include <stdio.h>
++- #if HAVE_SYS_TYPES_H
++  # include <sys/types.h>
++  #endif
++- #if HAVE_SYS_STAT_H
++  # include <sys/stat.h>
++  #endif
++- #if STDC_HEADERS
++  # include <stdlib.h>
++  # include <stddef.h>
++  #else
++- # if HAVE_STDLIB_H
++  #  include <stdlib.h>
++  # endif
++  #endif
++- #if HAVE_STRING_H
++- # if !STDC_HEADERS && HAVE_MEMORY_H
++  #  include <memory.h>
++  # endif
++  # include <string.h>
++  #endif
++- #if HAVE_STRINGS_H
++  # include <strings.h>
++  #endif
++- #if HAVE_INTTYPES_H
++  # include <inttypes.h>
++  #endif
++- #if HAVE_STDINT_H
++  # include <stdint.h>
++  #endif
++- #if HAVE_UNISTD_H
++  # include <unistd.h>
++  #endif"
++  
++--- 582,617 ----
++  # Factoring default headers for most tests.
++  ac_includes_default="\
++  #include <stdio.h>
+++ #ifdef HAVE_SYS_TYPES_H
++  # include <sys/types.h>
++  #endif
+++ #ifdef HAVE_SYS_STAT_H
++  # include <sys/stat.h>
++  #endif
+++ #ifdef STDC_HEADERS
++  # include <stdlib.h>
++  # include <stddef.h>
++  #else
+++ # ifdef HAVE_STDLIB_H
++  #  include <stdlib.h>
++  # endif
++  #endif
+++ #ifdef HAVE_STRING_H
+++ # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
++  #  include <memory.h>
++  # endif
++  # include <string.h>
++  #endif
+++ #ifdef HAVE_STRINGS_H
++  # include <strings.h>
++  #endif
+++ #ifdef HAVE_INTTYPES_H
++  # include <inttypes.h>
++  #endif
+++ #ifdef HAVE_STDINT_H
++  # include <stdint.h>
++  #endif
+++ #ifdef HAVE_UNISTD_H
++  # include <unistd.h>
++  #endif"
++  
++***************
++*** 769,780 ****
++        ac_precious_vars='build_alias
++  host_alias
++  target_alias
++- PKG_CONFIG
++- PESSULUS_CFLAGS
++- PESSULUS_LIBS
++  CC
++  CFLAGS
++  LDFLAGS
++  CPPFLAGS
++  CPP'
++  
++--- 781,790 ----
++        ac_precious_vars='build_alias
++  host_alias
++  target_alias
++  CC
++  CFLAGS
++  LDFLAGS
+++ LIBS
++  CPPFLAGS
++  CPP'
++  
++***************
++*** 882,891 ****
++    -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 &&
++        { echo "$as_me: error: invalid feature name: $ac_feature" >&2
++     { (exit 1); exit 1; }; }
++-     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
++      eval enable_$ac_feature=no ;;
++  
++    -docdir | --docdir | --docdi | --doc | --do)
++--- 892,901 ----
++    -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 &&
++        { echo "$as_me: error: invalid feature name: $ac_feature" >&2
++     { (exit 1); exit 1; }; }
+++     ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
++      eval enable_$ac_feature=no ;;
++  
++    -docdir | --docdir | --docdi | --doc | --do)
++***************
++*** 901,910 ****
++    -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 &&
++        { echo "$as_me: error: invalid feature name: $ac_feature" >&2
++     { (exit 1); exit 1; }; }
++-     ac_feature=`echo $ac_feature | sed 's/-/_/g'`
++      eval enable_$ac_feature=\$ac_optarg ;;
++  
++    -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
++--- 911,920 ----
++    -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 &&
++        { echo "$as_me: error: invalid feature name: $ac_feature" >&2
++     { (exit 1); exit 1; }; }
+++     ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'`
++      eval enable_$ac_feature=\$ac_optarg ;;
++  
++    -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
++***************
++*** 1098,1116 ****
++    -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 &&
++        { echo "$as_me: error: invalid package name: $ac_package" >&2
++     { (exit 1); exit 1; }; }
++-     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 &&
++        { echo "$as_me: error: invalid package name: $ac_package" >&2
++     { (exit 1); exit 1; }; }
++-     ac_package=`echo $ac_package | sed 's/-/_/g'`
++      eval with_$ac_package=no ;;
++  
++    --x)
++--- 1108,1126 ----
++    -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 &&
++        { echo "$as_me: error: invalid package name: $ac_package" >&2
++     { (exit 1); exit 1; }; }
+++     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 &&
++        { echo "$as_me: error: invalid package name: $ac_package" >&2
++     { (exit 1); exit 1; }; }
+++     ac_package=`echo $ac_package | sed 's/[-.]/_/g'`
++      eval with_$ac_package=no ;;
++  
++    --x)
++***************
++*** 1368,1382 ****
++                            The GConf source of the mandatory values
++  
++  Some influential environment variables:
++-   PKG_CONFIG  path to pkg-config utility
++-   PESSULUS_CFLAGS
++-               C compiler flags for PESSULUS, overriding pkg-config
++-   PESSULUS_LIBS
++-               linker flags for PESSULUS, overriding pkg-config
++    CC          C compiler command
++    CFLAGS      C compiler flags
++    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
++                nonstandard directory <lib dir>
++    CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
++                you have headers in a nonstandard directory <include dir>
++    CPP         C preprocessor
++--- 1378,1388 ----
++                            The GConf source of the mandatory values
++  
++  Some influential environment variables:
++    CC          C compiler command
++    CFLAGS      C compiler flags
++    LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a
++                nonstandard directory <lib dir>
+++   LIBS        libraries to pass to the linker, e.g. -l<library>
++    CPPFLAGS    C/C++/Objective C preprocessor flags, e.g. -I<include dir> if
++                you have headers in a nonstandard directory <include dir>
++    CPP         C preprocessor
++***************
++*** 1446,1452 ****
++  if $ac_init_version; then
++    cat <<\_ACEOF
++  pessulus configure 2.16.3
++- generated by GNU Autoconf 2.60
++  
++  Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
++  2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
++--- 1452,1458 ----
++  if $ac_init_version; then
++    cat <<\_ACEOF
++  pessulus configure 2.16.3
+++ 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.
++***************
++*** 1460,1466 ****
++  running configure, to aid debugging if configure makes a mistake.
++  
++  It was created by pessulus $as_me 2.16.3, which was
++- generated by GNU Autoconf 2.60.  Invocation command line was
++  
++    $ $0 $@
++  
++--- 1466,1472 ----
++  running configure, to aid debugging if configure makes a mistake.
++  
++  It was created by pessulus $as_me 2.16.3, which was
+++ generated by GNU Autoconf 2.61.  Invocation command line was
++  
++    $ $0 $@
++  
++***************
++*** 1881,1887 ****
++      # 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 $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.
++--- 1887,1893 ----
++      # 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_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.
++***************
++*** 2047,2053 ****
++    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
++      ac_cv_prog_AWK="$ac_prog"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2053,2059 ----
++    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_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
++***************
++*** 2182,2188 ****
++    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
++      ac_cv_prog_STRIP="${ac_tool_prefix}strip"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2188,2194 ----
++    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_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
++***************
++*** 2222,2228 ****
++    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
++      ac_cv_prog_ac_ct_STRIP="strip"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2228,2234 ----
++    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_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
++***************
++*** 2304,2551 ****
++  ACLOCAL_AMFLAGS="$ACLOCAL_FLAGS"
++  
++  
++- 
++- 
++- if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
++- 	if test -n "$ac_tool_prefix"; then
++-   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
++- set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
++- { echo "$as_me:$LINENO: checking for $ac_word" >&5
++- echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
++- if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
++-   echo $ECHO_N "(cached) $ECHO_C" >&6
++- else
++-   case $PKG_CONFIG in
++-   [\\/]* | ?:[\\/]*)
++-   ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
++-   ;;
++-   *)
++-   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
++- for as_dir in $PATH
++- do
++-   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
++-     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
++-   fi
++- done
++- done
++- IFS=$as_save_IFS
++- 
++-   ;;
++- esac
++- fi
++- PKG_CONFIG=$ac_cv_path_PKG_CONFIG
++- if test -n "$PKG_CONFIG"; then
++-   { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
++- echo "${ECHO_T}$PKG_CONFIG" >&6; }
++- else
++-   { echo "$as_me:$LINENO: result: no" >&5
++- echo "${ECHO_T}no" >&6; }
++- fi
++- 
++- 
++- fi
++- if test -z "$ac_cv_path_PKG_CONFIG"; then
++-   ac_pt_PKG_CONFIG=$PKG_CONFIG
++-   # Extract the first word of "pkg-config", so it can be a program name with args.
++- set dummy pkg-config; ac_word=$2
++- { echo "$as_me:$LINENO: checking for $ac_word" >&5
++- echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }
++- if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
++-   echo $ECHO_N "(cached) $ECHO_C" >&6
++- else
++-   case $ac_pt_PKG_CONFIG in
++-   [\\/]* | ?:[\\/]*)
++-   ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
++-   ;;
++-   *)
++-   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
++- for as_dir in $PATH
++- do
++-   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
++-     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
++-   fi
++- done
++- done
++- IFS=$as_save_IFS
++- 
++-   ;;
++- esac
++- fi
++- ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
++- if test -n "$ac_pt_PKG_CONFIG"; then
++-   { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5
++- echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; }
++- else
++-   { echo "$as_me:$LINENO: result: no" >&5
++- echo "${ECHO_T}no" >&6; }
++- fi
++- 
++-   if test "x$ac_pt_PKG_CONFIG" = x; then
++-     PKG_CONFIG=""
++-   else
++-     case $cross_compiling:$ac_tool_warned in
++- yes:)
++- { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools
++- whose name does not start with the host triplet.  If you think this
++- configuration is useful to you, please write to autoconf at gnu.org." >&5
++- echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
++- whose name does not start with the host triplet.  If you think this
++- configuration is useful to you, please write to autoconf at gnu.org." >&2;}
++- ac_tool_warned=yes ;;
++- esac
++-     PKG_CONFIG=$ac_pt_PKG_CONFIG
++-   fi
++- else
++-   PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
++- fi
++- 
++- fi
++- if test -n "$PKG_CONFIG"; then
++- 	_pkg_min_version=0.9.0
++- 	{ echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5
++- echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; }
++- 	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
++- 		{ echo "$as_me:$LINENO: result: yes" >&5
++- echo "${ECHO_T}yes" >&6; }
++- 	else
++- 		{ echo "$as_me:$LINENO: result: no" >&5
++- echo "${ECHO_T}no" >&6; }
++- 		PKG_CONFIG=""
++- 	fi
++- 
++- fi
++- 
++- pkg_failed=no
++- { echo "$as_me:$LINENO: checking for PESSULUS" >&5
++- echo $ECHO_N "checking for PESSULUS... $ECHO_C" >&6; }
++- 
++- if test -n "$PKG_CONFIG"; then
++-     if test -n "$PESSULUS_CFLAGS"; then
++-         pkg_cv_PESSULUS_CFLAGS="$PESSULUS_CFLAGS"
++-     else
++-         if test -n "$PKG_CONFIG" && \
++-     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0 >= 2.6.0		\\
++- 		  gnome-python-2.0 >= 2.6.0\"") >&5
++-   ($PKG_CONFIG --exists --print-errors "pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0") 2>&5
++-   ac_status=$?
++-   echo "$as_me:$LINENO: \$? = $ac_status" >&5
++-   (exit $ac_status); }; then
++-   pkg_cv_PESSULUS_CFLAGS=`$PKG_CONFIG --cflags "pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0" 2>/dev/null`
++- else
++-   pkg_failed=yes
++- fi
++-     fi
++- else
++- 	pkg_failed=untried
++- fi
++- if test -n "$PKG_CONFIG"; then
++-     if test -n "$PESSULUS_LIBS"; then
++-         pkg_cv_PESSULUS_LIBS="$PESSULUS_LIBS"
++-     else
++-         if test -n "$PKG_CONFIG" && \
++-     { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"pygtk-2.0 >= 2.6.0		\\
++- 		  gnome-python-2.0 >= 2.6.0\"") >&5
++-   ($PKG_CONFIG --exists --print-errors "pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0") 2>&5
++-   ac_status=$?
++-   echo "$as_me:$LINENO: \$? = $ac_status" >&5
++-   (exit $ac_status); }; then
++-   pkg_cv_PESSULUS_LIBS=`$PKG_CONFIG --libs "pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0" 2>/dev/null`
++- else
++-   pkg_failed=yes
++- fi
++-     fi
++- else
++- 	pkg_failed=untried
++- fi
++- 
++- 
++- 
++- if test $pkg_failed = yes; then
++- 
++- if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
++-         _pkg_short_errors_supported=yes
++- else
++-         _pkg_short_errors_supported=no
++- fi
++-         if test $_pkg_short_errors_supported = yes; then
++- 	        PESSULUS_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0"`
++-         else
++- 	        PESSULUS_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0"`
++-         fi
++- 	# Put the nasty error message in config.log where it belongs
++- 	echo "$PESSULUS_PKG_ERRORS" >&5
++- 
++- 	{ { echo "$as_me:$LINENO: error: Package requirements (pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0) were not met:
++- 
++- $PESSULUS_PKG_ERRORS
++- 
++- Consider adjusting the PKG_CONFIG_PATH environment variable if you
++- installed software in a non-standard prefix.
++- 
++- Alternatively, you may set the environment variables PESSULUS_CFLAGS
++- and PESSULUS_LIBS to avoid the need to call pkg-config.
++- See the pkg-config man page for more details.
++- " >&5
++- echo "$as_me: error: Package requirements (pygtk-2.0 >= 2.6.0		\
++- 		  gnome-python-2.0 >= 2.6.0) were not met:
++- 
++- $PESSULUS_PKG_ERRORS
++- 
++- Consider adjusting the PKG_CONFIG_PATH environment variable if you
++- installed software in a non-standard prefix.
++- 
++- Alternatively, you may set the environment variables PESSULUS_CFLAGS
++- and PESSULUS_LIBS to avoid the need to call pkg-config.
++- See the pkg-config man page for more details.
++- " >&2;}
++-    { (exit 1); exit 1; }; }
++- elif test $pkg_failed = untried; then
++- 	{ { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old.  Make sure it
++- is in your PATH or set the PKG_CONFIG environment variable to the full
++- path to pkg-config.
++- 
++- Alternatively, you may set the environment variables PESSULUS_CFLAGS
++- and PESSULUS_LIBS to avoid the need to call pkg-config.
++- See the pkg-config man page for more details.
++- 
++- To get pkg-config, see <http://www.freedesktop.org/software/pkgconfig>.
++- See \`config.log' for more details." >&5
++- echo "$as_me: error: The pkg-config script could not be found or is too old.  Make sure it
++- is in your PATH or set the PKG_CONFIG environment variable to the full
++- path to pkg-config.
++- 
++- Alternatively, you may set the environment variables PESSULUS_CFLAGS
++- and PESSULUS_LIBS to avoid the need to call pkg-config.
++- See the pkg-config man page for more details.
++- 
++- To get pkg-config, see <http://www.freedesktop.org/software/pkgconfig>.
++- See \`config.log' for more details." >&2;}
++-    { (exit 1); exit 1; }; }
++- else
++- 	PESSULUS_CFLAGS=$pkg_cv_PESSULUS_CFLAGS
++- 	PESSULUS_LIBS=$pkg_cv_PESSULUS_LIBS
++-         { echo "$as_me:$LINENO: result: yes" >&5
++- echo "${ECHO_T}yes" >&6; }
++- 	:
++- fi
++- 
++  GETTEXT_PACKAGE=pessulus
++  
++  
++--- 2310,2315 ----
++  ACLOCAL_AMFLAGS="$ACLOCAL_FLAGS"
++  
++  
++  GETTEXT_PACKAGE=pessulus
++  
++  
++***************
++*** 2640,2646 ****
++    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
++      ac_cv_prog_CC="${ac_tool_prefix}gcc"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2404,2410 ----
++    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_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
++***************
++*** 2680,2686 ****
++    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
++      ac_cv_prog_ac_ct_CC="gcc"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2444,2450 ----
++    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_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
++***************
++*** 2737,2743 ****
++    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
++      ac_cv_prog_CC="${ac_tool_prefix}cc"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2501,2507 ----
++    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_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
++***************
++*** 2778,2784 ****
++    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 "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
++         ac_prog_rejected=yes
++         continue
++--- 2542,2548 ----
++    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_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
++***************
++*** 2836,2842 ****
++    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
++      ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2600,2606 ----
++    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_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
++***************
++*** 2880,2886 ****
++    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
++      ac_cv_prog_ac_ct_CC="$ac_prog"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 2644,2650 ----
++    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_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
++***************
++*** 3021,3027 ****
++  # 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
++  do
++    test -f "$ac_file" || continue
++    case $ac_file in
++--- 2785,2791 ----
++  # 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 ''
++  do
++    test -f "$ac_file" || continue
++    case $ac_file in
++***************
++*** 3205,3212 ****
++  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.
++--- 2975,2980 ----
++  fi
++  
++  ac_exeext=$ac_cv_exeext
++  
++  # Check that the compiler produces executables we can run.  If not, either
++  # the compiler is broken, or we cross compile.
++***************
++*** 3384,3410 ****
++    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
++    ac_compiler_gnu=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3152,3161 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 3459,3485 ****
++    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
++    ac_cv_prog_cc_g=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3210,3219 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 3514,3540 ****
++    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
++    :
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3248,3257 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 3570,3596 ****
++    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
++    ac_cv_prog_cc_g=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3287,3296 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 3706,3732 ****
++    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
++    ac_cv_prog_cc_c89=$ac_arg
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3406,3415 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 3925,3941 ****
++    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
++    :
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3608,3617 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 3969,3985 ****
++    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
++    # Broken: success on invalid input.
++  continue
++  else
++--- 3645,3654 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4044,4060 ****
++    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
++    :
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3713,3722 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4088,4104 ****
++    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
++    # Broken: success on invalid input.
++  continue
++  else
++--- 3750,3759 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4153,4159 ****
++    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
++      # 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
++--- 3808,3814 ----
++    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_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
++***************
++*** 4235,4241 ****
++    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
++      # 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
++--- 3890,3896 ----
++    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_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
++***************
++*** 4331,4357 ****
++    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
++    ac_cv_header_stdc=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 3986,3995 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4527,4553 ****
++    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
++    eval "$as_ac_Header=yes"
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4165,4174 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4694,4720 ****
++    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
++    ac_header_compiler=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4315,4324 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4750,4766 ****
++    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
++    ac_header_preproc=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4354,4363 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4858,4884 ****
++    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
++    am_cv_val_LC_MESSAGES=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4455,4465 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4887,4893 ****
++  	am_cv_val_LC_MESSAGES=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  { echo "$as_me:$LINENO: result: $am_cv_val_LC_MESSAGES" >&5
++--- 4468,4474 ----
++  	am_cv_val_LC_MESSAGES=no
++  fi
++  
+++ 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
++***************
++*** 4943,4969 ****
++    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
++    ac_header_compiler=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4524,4533 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 4999,5015 ****
++    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
++    ac_header_preproc=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4563,4572 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5105,5131 ****
++    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
++    gt_cv_func_ngettext_libc=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4662,4672 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5134,5140 ****
++  	gt_cv_func_ngettext_libc=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  
++  fi
++--- 4675,4681 ----
++  	gt_cv_func_ngettext_libc=no
++  fi
++  
+++ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
++        conftest$ac_exeext conftest.$ac_ext
++  
++  fi
++***************
++*** 5177,5203 ****
++    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
++    gt_cv_func_dgettext_libc=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4718,4728 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5206,5212 ****
++  	gt_cv_func_dgettext_libc=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  
++  fi
++--- 4731,4737 ----
++  	gt_cv_func_dgettext_libc=no
++  fi
++  
+++ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
++        conftest$ac_exeext conftest.$ac_ext
++  
++  fi
++***************
++*** 5282,5308 ****
++    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
++    eval "$as_ac_var=yes"
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4807,4817 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5311,5317 ****
++  	eval "$as_ac_var=no"
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  ac_res=`eval echo '${'$as_ac_var'}'`
++--- 4820,4826 ----
++  	eval "$as_ac_var=no"
++  fi
++  
+++ 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'}'`
++***************
++*** 5376,5402 ****
++    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_cv_lib_intl_bindtextdomain=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4885,4895 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5405,5411 ****
++  	ac_cv_lib_intl_bindtextdomain=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  LIBS=$ac_check_lib_save_LIBS
++  fi
++--- 4898,4904 ----
++  	ac_cv_lib_intl_bindtextdomain=no
++  fi
++  
+++ 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
++***************
++*** 5454,5480 ****
++    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_cv_lib_intl_ngettext=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 4947,4957 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5483,5489 ****
++  	ac_cv_lib_intl_ngettext=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  LIBS=$ac_check_lib_save_LIBS
++  fi
++--- 4960,4966 ----
++  	ac_cv_lib_intl_ngettext=no
++  fi
++  
+++ 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
++***************
++*** 5532,5558 ****
++    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_cv_lib_intl_dgettext=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 5009,5019 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5561,5567 ****
++  	ac_cv_lib_intl_dgettext=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  LIBS=$ac_check_lib_save_LIBS
++  fi
++--- 5022,5028 ----
++  	ac_cv_lib_intl_dgettext=no
++  fi
++  
+++ 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
++***************
++*** 5623,5649 ****
++    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_cv_lib_intl_ngettext=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 5084,5094 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5652,5658 ****
++  	ac_cv_lib_intl_ngettext=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  LIBS=$ac_check_lib_save_LIBS
++  fi
++--- 5097,5103 ----
++  	ac_cv_lib_intl_ngettext=no
++  fi
++  
+++ 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
++***************
++*** 5701,5727 ****
++    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_cv_lib_intl_dcgettext=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 5146,5156 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5730,5736 ****
++  	ac_cv_lib_intl_dcgettext=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  LIBS=$ac_check_lib_save_LIBS
++  fi
++--- 5159,5165 ----
++  	ac_cv_lib_intl_dcgettext=no
++  fi
++  
+++ 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
++***************
++*** 5825,5851 ****
++    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
++    eval "$as_ac_var=yes"
++  else
++    echo "$as_me: failed program was:" >&5
++--- 5254,5264 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 5854,5860 ****
++  	eval "$as_ac_var=no"
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  ac_res=`eval echo '${'$as_ac_var'}'`
++--- 5267,5273 ----
++  	eval "$as_ac_var=no"
++  fi
++  
+++ 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'}'`
++***************
++*** 6001,6027 ****
++    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
++    eval "$as_ac_var=yes"
++  else
++    echo "$as_me: failed program was:" >&5
++--- 5414,5424 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 6030,6036 ****
++  	eval "$as_ac_var=no"
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  ac_res=`eval echo '${'$as_ac_var'}'`
++--- 5427,5433 ----
++  	eval "$as_ac_var=no"
++  fi
++  
+++ 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'}'`
++***************
++*** 6091,6097 ****
++    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
++      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
++--- 5488,5494 ----
++    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_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
++***************
++*** 6179,6205 ****
++    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
++    CATOBJEXT=.gmo
++               DATADIRNAME=share
++  else
++--- 5576,5586 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 6271,6297 ****
++    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_cv_func_bind_textdomain_codeset=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 5652,5662 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 6300,6306 ****
++  	ac_cv_func_bind_textdomain_codeset=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
++--- 5665,5671 ----
++  	ac_cv_func_bind_textdomain_codeset=no
++  fi
++  
+++ 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
++***************
++*** 6321,6327 ****
++  	    esac
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++            LIBS="$glib_save_LIBS"
++  	  INSTOBJEXT=.mo
++--- 5686,5692 ----
++  	    esac
++  fi
++  
+++ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
++        conftest$ac_exeext conftest.$ac_ext
++            LIBS="$glib_save_LIBS"
++  	  INSTOBJEXT=.mo
++***************
++*** 6527,6533 ****
++    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
++      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
++--- 5892,5898 ----
++    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_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
++***************
++*** 6590,6596 ****
++    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
++      ac_cv_path_INTLTOOL_ICONV="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 5955,5961 ----
++    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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
++      ac_cv_path_INTLTOOL_ICONV="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++***************
++*** 6631,6637 ****
++    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
++      ac_cv_path_INTLTOOL_MSGFMT="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 5996,6002 ----
++    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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
++      ac_cv_path_INTLTOOL_MSGFMT="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++***************
++*** 6672,6678 ****
++    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
++      ac_cv_path_INTLTOOL_MSGMERGE="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 6037,6043 ----
++    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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
++      ac_cv_path_INTLTOOL_MSGMERGE="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++***************
++*** 6713,6719 ****
++    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
++      ac_cv_path_INTLTOOL_XGETTEXT="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 6078,6084 ----
++    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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
++      ac_cv_path_INTLTOOL_XGETTEXT="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++***************
++*** 6772,6798 ****
++    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
++    DATADIRNAME=share
++  else
++    echo "$as_me: failed program was:" >&5
++--- 6137,6147 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 6863,6889 ****
++    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_cv_func_bind_textdomain_codeset=yes
++  else
++    echo "$as_me: failed program was:" >&5
++--- 6212,6222 ----
++    rm -f conftest.er1
++    cat conftest.err >&5
++    echo "$as_me:$LINENO: \$? = $ac_status" >&5
+++   (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
++***************
++*** 6892,6898 ****
++  	ac_cv_func_bind_textdomain_codeset=no
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  { echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
++--- 6225,6231 ----
++  	ac_cv_func_bind_textdomain_codeset=no
++  fi
++  
+++ 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
++***************
++*** 6910,6916 ****
++      esac
++  fi
++  
++- rm -f core conftest.err conftest.$ac_objext \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  
++--- 6243,6249 ----
++      esac
++  fi
++  
+++ rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
++        conftest$ac_exeext conftest.$ac_ext
++  fi
++  
++***************
++*** 6948,6954 ****
++    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
++      ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++--- 6281,6287 ----
++    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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
++      ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
++      echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
++      break 2
++***************
++*** 7074,7080 ****
++    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
++      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
++--- 6407,6413 ----
++    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_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
++***************
++*** 7294,7300 ****
++  ## M4sh Initialization.  ##
++  ## --------------------- ##
++  
++- # Be Bourne compatible
++  if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
++    emulate sh
++    NULLCMD=:
++--- 6627,6634 ----
++  ## M4sh Initialization.  ##
++  ## --------------------- ##
++  
+++ # 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=:
++***************
++*** 7303,7312 ****
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
++-   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
++--- 6637,6649 ----
++    alias -g '${1+"$@"}'='"$@"'
++    setopt NO_GLOB_SUBST
++  else
+++   case `(set -o) 2>/dev/null` in
+++   *posix*) set -o posix ;;
+++ esac
+++ 
++  fi
+++ 
+++ 
++  
++  
++  # PATH needs CR
++***************
++*** 7530,7548 ****
++    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"
++  else
++-   as_executable_p=:
++  fi
++- rm -f conf$$.file
++  
++  # 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'"
++--- 6867,6894 ----
++    as_mkdir_p=false
++  fi
++  
+++ if test -x / >/dev/null 2>&1; then
+++   as_test_x='test -x'
++  else
+++   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
+++ 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'"
++***************
++*** 7558,7564 ****
++  # values after options handling.
++  ac_log="
++  This file was extended by pessulus $as_me 2.16.3, which was
++- generated by GNU Autoconf 2.60.  Invocation command line was
++  
++    CONFIG_FILES    = $CONFIG_FILES
++    CONFIG_HEADERS  = $CONFIG_HEADERS
++--- 6904,6910 ----
++  # values after options handling.
++  ac_log="
++  This file was extended by pessulus $as_me 2.16.3, which was
+++ generated by GNU Autoconf 2.61.  Invocation command line was
++  
++    CONFIG_FILES    = $CONFIG_FILES
++    CONFIG_HEADERS  = $CONFIG_HEADERS
++***************
++*** 7586,7592 ****
++  Usage: $0 [OPTIONS] [FILE]...
++  
++    -h, --help       print this help, then exit
++-   -V, --version    print version number, 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
++--- 6932,6938 ----
++  Usage: $0 [OPTIONS] [FILE]...
++  
++    -h, --help       print this help, 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
++***************
++*** 7605,7611 ****
++  cat >>$CONFIG_STATUS <<_ACEOF
++  ac_cs_version="\\
++  pessulus config.status 2.16.3
++- configured by $0, generated by GNU Autoconf 2.60,
++    with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
++  
++  Copyright (C) 2006 Free Software Foundation, Inc.
++--- 6951,6957 ----
++  cat >>$CONFIG_STATUS <<_ACEOF
++  ac_cs_version="\\
++  pessulus config.status 2.16.3
+++ 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.
++***************
++*** 7209,7214 ****
++  MSGFMT!$MSGFMT$ac_delim
++  MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim
++  GMSGFMT!$GMSGFMT$ac_delim
++  _ACEOF
++  
++    if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
++--- 6552,6560 ----
++  MSGFMT!$MSGFMT$ac_delim
++  MSGFMT_OPTS!$MSGFMT_OPTS$ac_delim
++  GMSGFMT!$GMSGFMT$ac_delim
+++ XGETTEXT!$XGETTEXT$ac_delim
+++ CATALOGS!$CATALOGS$ac_delim
+++ CATOBJEXT!$CATOBJEXT$ac_delim
++  _ACEOF
++  
++    if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
++***************
++*** 7250,7258 ****
++  ac_delim='%!_!# '
++  for ac_last_try in false false false false false :; do
++    cat >conf$$subs.sed <<_ACEOF
++- XGETTEXT!$XGETTEXT$ac_delim
++- CATALOGS!$CATALOGS$ac_delim
++- CATOBJEXT!$CATOBJEXT$ac_delim
++  DATADIRNAME!$DATADIRNAME$ac_delim
++  GMOFILES!$GMOFILES$ac_delim
++  INSTOBJEXT!$INSTOBJEXT$ac_delim
++--- 6596,6601 ----
++  ac_delim='%!_!# '
++  for ac_last_try in false false false false false :; do
++    cat >conf$$subs.sed <<_ACEOF
++  DATADIRNAME!$DATADIRNAME$ac_delim
++  GMOFILES!$GMOFILES$ac_delim
++  INSTOBJEXT!$INSTOBJEXT$ac_delim
++***************
++*** 7304,7310 ****
++  LTLIBOBJS!$LTLIBOBJS$ac_delim
++  _ACEOF
++  
++-   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 52; then
++      break
++    elif $ac_last_try; then
++      { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
++--- 6647,6653 ----
++  LTLIBOBJS!$LTLIBOBJS$ac_delim
++  _ACEOF
++  
+++   if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 49; then
++      break
++    elif $ac_last_try; then
++      { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5




More information about the pkg-gnome-commits mailing list