[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Pkg-xfce-devel] Bug#632507: src:libxfce4util: Please build libxfce4util for multiarch



Package: src:libxfce4util
Version: 4.8.1-3
Severity: normal
User: ubuntu-devel at lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch oneiric

Hi there,

Please find attached a patch to help libxfce4util work in multiarch
environments.  There are two main parts to the patch:

 - fixes to the build to make it install to the multiarch paths for each
   architecture
 - a new patch, debian/patches/cross-building-fixes, which fixes the
   configure script so that it works correctly when cross-building.

Note that part of debian/patches/cross-building-fixes has also been filed as
a bug against xfce4-dev-tools (bug #632502), so you might want to resolve
that bug first before deciding what to do with this one.

FYI, with this patch applied, an arm-linux-gnueabi-pkg-config manually
installed, and an environment variable set to work around a cross-compiler
package bug, it is possible to use the gcc-linux-arm-gnueabi cross-compiler
package in Ubuntu to cross-build libxfce4util exclusively using multiarch
packages from the Ubuntu archive using this command:

DEB_LDFLAGS_APPEND="-Wl,-rpath-link=/usr/lib/arm-linux-gnueabi:/lib/arm-linux-gnueabi:/usr/lib" \
  debuild -uc -us -B -aarmel

Enjoy :-)
-- 
Steve Langasek                   Give me a lever long enough and a Free OS
Debian Developer                   to set it on, and I can move the world.
vorlon at debian.org                                   http://www.debian.org/
-------------- next part --------------
# Bazaar merge directive format 2 (Bazaar 0.90)
# revision_id: steve.langasek at canonical.com-20110702225015-\
#   e9r894qzir67mr8b
# target_branch: :parent
# testament_sha1: f176faf3fe0d74ef6ac9b37c0a0466746763f7e2
# timestamp: 2011-07-02 15:50:38 -0700
# base_revision_id: svn-v4:0c9b3bff-18ee-0310-b944-\
#   d1aa2700132f:desktop/trunk/libxfce4util:5822
# 
# Begin patch
=== modified file 'debian/changelog'
--- debian/changelog	2011-06-20 20:05:29 +0000
+++ debian/changelog	2011-07-02 22:50:15 +0000
@@ -1,3 +1,11 @@
+libxfce4util (4.8.1-3.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Build for multiarch.
+  * debian/patches/cross-building-fixes: Fix cross-building support.
+
+ -- Steve Langasek <vorlon at debian.org>  Sat, 02 Jul 2011 13:43:04 -0700
+
 libxfce4util (4.8.1-3) unstable; urgency=low
 
   * debian/patches:

=== modified file 'debian/compat'
--- debian/compat	2009-03-15 13:14:39 +0000
+++ debian/compat	2011-07-02 20:43:15 +0000
@@ -1,1 +1,1 @@
-7
+9

=== modified file 'debian/control'
--- debian/control	2011-04-19 12:47:50 +0000
+++ debian/control	2011-07-02 20:43:15 +0000
@@ -4,7 +4,7 @@
 Maintainer: Debian Xfce Maintainers <pkg-xfce-devel at lists.alioth.debian.org>
 Uploaders: Yves-Alexis Perez <corsac at debian.org>, 
  Lionel Le Folgoc <mrpouit at gmail.com>
-Build-Depends: debhelper (>= 7.0.50~), libglib2.0-dev, intltool, 
+Build-Depends: debhelper (>= 8.1.3), libglib2.0-dev, intltool, 
  hardening-includes
 Standards-Version: 3.9.2
 Homepage: http://www.xfce.org/
@@ -16,6 +16,7 @@
 Section: libdevel
 Depends: libxfce4util4 (= ${binary:Version}), ${misc:Depends}, libglib2.0-dev
 Suggests: devhelp
+Multi-Arch: same
 Description: Development files for libxfce4util4
  This package contains the headers and the static library
  for libxfce4util4. If you intend to code applications
@@ -29,6 +30,8 @@
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}, libxfce4util-common
 Recommends: libxfce4util-bin
+Multi-Arch: same
+Pre-Depends: ${misc:Pre-Depends}
 Description: Utility functions library for Xfce4
  This package contains libxfce4util4, the basic utility
  function library for Xfce4. If you intend to run Xfce4,
@@ -39,6 +42,7 @@
 Architecture: any
 Priority: extra
 Depends: ${shlibs:Depends}, ${misc:Depends}, libxfce4util4 (= ${binary:Version})
+Multi-Arch: same
 Description: debugging informations for libxfce4util4
  This package contains debugging symbols for libxfce4util4, the basic
  utility function library for Xfce4.
@@ -48,6 +52,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Conflicts: libxfce4util4 (<< 4.6.1-2)
 Replaces: libxfce4util4 (<< 4.6.1-2)
+Multi-Arch: foreign
 Description: tools for libxfce4util
  This package contains binaries used by Xfce basic utility library.
  At the moment, the following programs are included:
@@ -58,6 +63,7 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Conflicts: libxfce4util4 (<< 4.6.1-2)
 Replaces: libxfce4util4 (<< 4.6.1-2)
+Multi-Arch: foreign
 Description: common files for libxfce4util
  This package contains various infrastructure-independant common files for
  libxfce4util, the Xfce utility library.

=== modified file 'debian/libxfce4util-dev.install'
--- debian/libxfce4util-dev.install	2008-02-28 21:55:09 +0000
+++ debian/libxfce4util-dev.install	2011-07-02 20:43:15 +0000
@@ -1,5 +1,5 @@
 usr/include/*
-usr/lib/lib*.a
-usr/lib/lib*.so
-usr/lib/pkgconfig/*
+usr/lib/*/lib*.a
+usr/lib/*/lib*.so
+usr/lib/*/pkgconfig/*
 usr/share/gtk-doc/html/libxfce4util/*

=== modified file 'debian/libxfce4util4.install'
--- debian/libxfce4util4.install	2009-12-30 13:27:40 +0000
+++ debian/libxfce4util4.install	2011-07-02 20:43:15 +0000
@@ -1,1 +1,1 @@
-usr/lib/lib*.so.*
+usr/lib/*/lib*.so.*

=== added file 'debian/patches/cross-building-fixes'
--- debian/patches/cross-building-fixes	1970-01-01 00:00:00 +0000
+++ debian/patches/cross-building-fixes	2011-07-02 22:50:15 +0000
@@ -0,0 +1,2029 @@
+Description: Fix cross-building support.
+ libxfce4util fails to cross-build for two reasons: first, because it does
+ not have a suitable fallback for an AC_RUN_IF_ELSE() check when
+ cross-building, and second because it inherits broken pkg-config checking
+ from xfce4-dev-tools that always picks up the host pkg-config instead of
+ the cross-build one.
+ . 
+ this patch fixes both issues, though the first should be fixed in
+ xfce4-dev-tools first (patch submitted in Debian bug #632502).
+Author: Steve Langasek <steve.langasek at canonical.com>
+
+Index: libxfce4util-4.8.1/aclocal.m4
+===================================================================
+--- libxfce4util-4.8.1.orig/aclocal.m4
++++ libxfce4util-4.8.1/aclocal.m4
+@@ -10026,37 +10026,17 @@
+   xdt_cv_PKG_CONFIG_MIN_VERSION=0.9.0
+ 
+   # lookup pkg-config utility
++  PKG_PROG_PKG_CONFIG([$xdt_cv_PKG_CONFIG_MIN_VERSION])
+   if test x"$PKG_CONFIG" = x""; then
+-    AC_PATH_PROG([PKG_CONFIG], [pkg-config], [no])
+-
+-    if test x"$PKG_CONFIG" = x"no"; then
+-      echo "*** The pkg-config utility could not be found on your system."
+-      echo "*** Make sure it is in your path, or set the PKG_CONFIG"
+-      echo "*** environment variable to the full path to pkg-config."
+-      echo "*** You can download pkg-config from the freedesktop.org"
+-      echo "*** software repository at"
+-      echo "***"
+-      echo "***    http://www.freedesktop.org/software/pkgconfig";
+-      echo "***"
+-      exit 1
+-    fi
+-
+-    # check pkg-config version
+-    AC_MSG_CHECKING([for pkg-config >= $xdt_cv_PKG_CONFIG_MIN_VERSION])
+-    if $PKG_CONFIG --atleast-pkgconfig-version $xdt_cv_PKG_CONFIG_MIN_VERSION; then
+-      xdt_cv_PKG_CONFIG_VERSION=`$PKG_CONFIG --version`
+-      AC_MSG_RESULT([$xdt_cv_PKG_CONFIG_VERSION])
+-    else
+-      xdt_cv_PKG_CONFIG_VERSION=`$PKG_CONFIG --version`
+-      AC_MSG_RESULT([$xdt_cv_PKG_CONFIG_VERSION])
+-      echo "*** Your version of pkg-config is too old. You need atleast"
+-      echo "*** pkg-config $xdt_cv_PKG_CONFIG_MIN_VERSION or newer. You can download pkg-config "
+-      echo "*** from the freedesktop.org software repository at"
+-      echo "***"
+-      echo "***    http://www.freedesktop.org/software/pkgconfig";
+-      echo "***"
+-      exit 1
+-    fi
++    echo "*** The pkg-config utility could not be found on your system."
++    echo "*** Make sure it is in your path, or set the PKG_CONFIG"
++    echo "*** environment variable to the full path to pkg-config."
++    echo "*** You can download pkg-config from the freedesktop.org"
++    echo "*** software repository at"
++    echo "***"
++    echo "***    http://www.freedesktop.org/software/pkgconfig";
++    echo "***"
++    exit 1
+   fi
+ ])
+ 
+Index: libxfce4util-4.8.1/configure.in
+===================================================================
+--- libxfce4util-4.8.1.orig/configure.in
++++ libxfce4util-4.8.1/configure.in
+@@ -144,7 +144,8 @@
+     return(strcmp(getenv("foo"), "bar") == 0 ? 0 : 1);
+   }],
+   [with_broken_putenv=no],
+-  [with_broken_putenv=yes])
++  [with_broken_putenv=yes],
++  [with_broken_putenv=cross])
+ fi
+ if test x"$with_broken_putenv" = x"yes"; then
+   AC_DEFINE([HAVE_BROKEN_PUTENV], [1], [Define if putenv(3) is broken])
+Index: libxfce4util-4.8.1/configure
+===================================================================
+--- libxfce4util-4.8.1.orig/configure
++++ libxfce4util-4.8.1/configure
+@@ -1,7 +1,7 @@
+ #! /bin/sh
+ # From configure.in Id.
+ # Guess values for system-dependent variables and create Makefiles.
+-# Generated by GNU Autoconf 2.66 for libxfce4util 4.8.1.
++# Generated by GNU Autoconf 2.68 for libxfce4util 4.8.1.
+ #
+ # Report bugs to <xfce4-dev at xfce.org>.
+ #
+@@ -95,6 +95,7 @@
+ IFS=" ""	$as_nl"
+ 
+ # Find who we are.  Look in the path if we contain no directory separator.
++as_myself=
+ case $0 in #((
+   *[\\/]* ) as_myself=$0 ;;
+   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+@@ -228,11 +229,18 @@
+   # We cannot yet assume a decent shell, so we have to provide a
+ 	# neutralization value for shells without unset; and this also
+ 	# works around shells that cannot unset nonexistent variables.
++	# Preserve -v and -x to the replacement shell.
+ 	BASH_ENV=/dev/null
+ 	ENV=/dev/null
+ 	(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+ 	export CONFIG_SHELL
+-	exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
++	case $- in # ((((
++	  *v*x* | *x*v* ) as_opts=-vx ;;
++	  *v* ) as_opts=-v ;;
++	  *x* ) as_opts=-x ;;
++	  * ) as_opts= ;;
++	esac
++	exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
+ fi
+ 
+     if test x$as_have_required = xno; then :
+@@ -624,8 +632,6 @@
+ GTK_DOC_BUILD_HTML_TRUE
+ ENABLE_GTK_DOC_FALSE
+ ENABLE_GTK_DOC_TRUE
+-PKG_CONFIG_LIBDIR
+-PKG_CONFIG_PATH
+ HTML_DIR
+ GTKDOC_MKPDF
+ GTKDOC_REBASE
+@@ -634,6 +640,8 @@
+ GOBJECT_LIBS
+ GOBJECT_CFLAGS
+ GOBJECT_VERSION
++PKG_CONFIG_LIBDIR
++PKG_CONFIG_PATH
+ PKG_CONFIG
+ XGETTEXT_ARGS
+ MKINSTALLDIRS
+@@ -891,8 +899,9 @@
+   fi
+ 
+   case $ac_option in
+-  *=*)	ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
+-  *)	ac_optarg=yes ;;
++  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
++  *=)   ac_optarg= ;;
++  *)    ac_optarg=yes ;;
+   esac
+ 
+   # Accept the important Cygnus configure options, so we can diagnose typos.
+@@ -1232,7 +1241,7 @@
+     $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+     expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+       $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+-    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
++    : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
+     ;;
+ 
+   esac
+@@ -1564,7 +1573,7 @@
+ if $ac_init_version; then
+   cat <<\_ACEOF
+ libxfce4util configure 4.8.1
+-generated by GNU Autoconf 2.66
++generated by GNU Autoconf 2.68
+ 
+ Copyright (C) 2010 Free Software Foundation, Inc.
+ This configure script is free software; the Free Software Foundation
+@@ -1613,7 +1622,7 @@
+ 
+ 	ac_retval=1
+ fi
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+   as_fn_set_status $ac_retval
+ 
+ } # ac_fn_c_try_compile
+@@ -1639,7 +1648,7 @@
+     mv -f conftest.er1 conftest.err
+   fi
+   $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
+-  test $ac_status = 0; } >/dev/null && {
++  test $ac_status = 0; } > conftest.i && {
+ 	 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
+ 	 test ! -s conftest.err
+        }; then :
+@@ -1650,7 +1659,7 @@
+ 
+     ac_retval=1
+ fi
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+   as_fn_set_status $ac_retval
+ 
+ } # ac_fn_c_try_cpp
+@@ -1663,10 +1672,10 @@
+ ac_fn_c_check_header_mongrel ()
+ {
+   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+-  if eval "test \"\${$3+set}\"" = set; then :
++  if eval \${$3+:} false; then :
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ $as_echo_n "checking for $2... " >&6; }
+-if eval "test \"\${$3+set}\"" = set; then :
++if eval \${$3+:} false; then :
+   $as_echo_n "(cached) " >&6
+ fi
+ eval ac_res=\$$3
+@@ -1702,7 +1711,7 @@
+ else
+   ac_header_preproc=no
+ fi
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.err conftest.i conftest.$ac_ext
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
+ $as_echo "$ac_header_preproc" >&6; }
+ 
+@@ -1733,7 +1742,7 @@
+ esac
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ $as_echo_n "checking for $2... " >&6; }
+-if eval "test \"\${$3+set}\"" = set; then :
++if eval \${$3+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   eval "$3=\$ac_header_compiler"
+@@ -1742,7 +1751,7 @@
+ 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+ $as_echo "$ac_res" >&6; }
+ fi
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ 
+ } # ac_fn_c_check_header_mongrel
+ 
+@@ -1783,7 +1792,7 @@
+        ac_retval=$ac_status
+ fi
+   rm -rf conftest.dSYM conftest_ipa8_conftest.oo
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+   as_fn_set_status $ac_retval
+ 
+ } # ac_fn_c_try_run
+@@ -1797,7 +1806,7 @@
+   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ $as_echo_n "checking for $2... " >&6; }
+-if eval "test \"\${$3+set}\"" = set; then :
++if eval \${$3+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -1815,7 +1824,7 @@
+ eval ac_res=\$$3
+ 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+ $as_echo "$ac_res" >&6; }
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ 
+ } # ac_fn_c_check_header_compile
+ 
+@@ -1860,7 +1869,7 @@
+   # interfere with the next link command; also delete a directory that is
+   # left behind by Apple's compiler.  We do this before executing the actions.
+   rm -rf conftest.dSYM conftest_ipa8_conftest.oo
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+   as_fn_set_status $ac_retval
+ 
+ } # ac_fn_c_try_link
+@@ -1873,7 +1882,7 @@
+   as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
+ $as_echo_n "checking for $2... " >&6; }
+-if eval "test \"\${$3+set}\"" = set; then :
++if eval \${$3+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -1928,7 +1937,7 @@
+ eval ac_res=\$$3
+ 	       { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
+ $as_echo "$ac_res" >&6; }
+-  eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
++  eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
+ 
+ } # ac_fn_c_check_func
+ cat >config.log <<_ACEOF
+@@ -1936,7 +1945,7 @@
+ running configure, to aid debugging if configure makes a mistake.
+ 
+ It was created by libxfce4util $as_me 4.8.1, which was
+-generated by GNU Autoconf 2.66.  Invocation command line was
++generated by GNU Autoconf 2.68.  Invocation command line was
+ 
+   $ $0 $@
+ 
+@@ -2335,7 +2344,7 @@
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
+ $as_echo_n "checking for a BSD-compatible install... " >&6; }
+ if test -z "$INSTALL"; then
+-if test "${ac_cv_path_install+set}" = set; then :
++if ${ac_cv_path_install+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+@@ -2512,7 +2521,7 @@
+ set dummy ${ac_tool_prefix}strip; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_STRIP+set}" = set; then :
++if ${ac_cv_prog_STRIP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$STRIP"; then
+@@ -2552,7 +2561,7 @@
+ set dummy strip; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
++if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_STRIP"; then
+@@ -2605,7 +2614,7 @@
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
+ $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
+ if test -z "$MKDIR_P"; then
+-  if test "${ac_cv_path_mkdir+set}" = set; then :
++  if ${ac_cv_path_mkdir+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+@@ -2656,7 +2665,7 @@
+ set dummy $ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_AWK+set}" = set; then :
++if ${ac_cv_prog_AWK+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$AWK"; then
+@@ -2696,7 +2705,7 @@
+ $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
+ set x ${MAKE-make}
+ ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
+-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then :
++if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat >conftest.make <<\_ACEOF
+@@ -2918,7 +2927,7 @@
+ set dummy ${ac_tool_prefix}gcc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -2958,7 +2967,7 @@
+ set dummy gcc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
++if ${ac_cv_prog_ac_ct_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_CC"; then
+@@ -3011,7 +3020,7 @@
+ set dummy ${ac_tool_prefix}cc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -3051,7 +3060,7 @@
+ set dummy cc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -3110,7 +3119,7 @@
+ set dummy $ac_tool_prefix$ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -3154,7 +3163,7 @@
+ set dummy $ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
++if ${ac_cv_prog_ac_ct_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_CC"; then
+@@ -3437,7 +3446,7 @@
+ ac_clean_files=$ac_clean_files_save
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
+ $as_echo_n "checking for suffix of object files... " >&6; }
+-if test "${ac_cv_objext+set}" = set; then :
++if ${ac_cv_objext+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -3488,7 +3497,7 @@
+ ac_objext=$OBJEXT
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
+ $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
+-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
++if ${ac_cv_c_compiler_gnu+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -3525,7 +3534,7 @@
+ ac_save_CFLAGS=$CFLAGS
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
+ $as_echo_n "checking whether $CC accepts -g... " >&6; }
+-if test "${ac_cv_prog_cc_g+set}" = set; then :
++if ${ac_cv_prog_cc_g+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_save_c_werror_flag=$ac_c_werror_flag
+@@ -3603,7 +3612,7 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
+ $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
+-if test "${ac_cv_prog_cc_c89+set}" = set; then :
++if ${ac_cv_prog_cc_c89+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_cv_prog_cc_c89=no
+@@ -3702,7 +3711,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
+ $as_echo_n "checking dependency style of $depcc... " >&6; }
+-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
++if ${am_cv_CC_dependencies_compiler_type+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+@@ -3838,7 +3847,7 @@
+   CPP=
+ fi
+ if test -z "$CPP"; then
+-  if test "${ac_cv_prog_CPP+set}" = set; then :
++  if ${ac_cv_prog_CPP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+       # Double quotes because CPP needs to be expanded
+@@ -3868,7 +3877,7 @@
+   # Broken: fails on valid input.
+ continue
+ fi
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.err conftest.i conftest.$ac_ext
+ 
+   # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+@@ -3884,11 +3893,11 @@
+ ac_preproc_ok=:
+ break
+ fi
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.err conftest.i conftest.$ac_ext
+ 
+ done
+ # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.i conftest.err conftest.$ac_ext
+ if $ac_preproc_ok; then :
+   break
+ fi
+@@ -3927,7 +3936,7 @@
+   # Broken: fails on valid input.
+ continue
+ fi
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.err conftest.i conftest.$ac_ext
+ 
+   # OK, works on sane cases.  Now check whether nonexistent headers
+   # can be detected and how.
+@@ -3943,11 +3952,11 @@
+ ac_preproc_ok=:
+ break
+ fi
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.err conftest.i conftest.$ac_ext
+ 
+ done
+ # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+-rm -f conftest.err conftest.$ac_ext
++rm -f conftest.i conftest.err conftest.$ac_ext
+ if $ac_preproc_ok; then :
+ 
+ else
+@@ -3966,7 +3975,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
+ $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
+-if test "${ac_cv_path_GREP+set}" = set; then :
++if ${ac_cv_path_GREP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -z "$GREP"; then
+@@ -4029,7 +4038,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
+ $as_echo_n "checking for egrep... " >&6; }
+-if test "${ac_cv_path_EGREP+set}" = set; then :
++if ${ac_cv_path_EGREP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
+@@ -4096,7 +4105,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
+ $as_echo_n "checking for ANSI C header files... " >&6; }
+-if test "${ac_cv_header_stdc+set}" = set; then :
++if ${ac_cv_header_stdc+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -4225,7 +4234,7 @@
+ 
+ 
+   ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
+-if test "x$ac_cv_header_minix_config_h" = x""yes; then :
++if test "x$ac_cv_header_minix_config_h" = xyes; then :
+   MINIX=yes
+ else
+   MINIX=
+@@ -4247,7 +4256,7 @@
+ 
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
+ $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
+-if test "${ac_cv_safe_to_define___extensions__+set}" = set; then :
++if ${ac_cv_safe_to_define___extensions__+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -4287,7 +4296,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5
+ $as_echo_n "checking for library containing strerror... " >&6; }
+-if test "${ac_cv_search_strerror+set}" = set; then :
++if ${ac_cv_search_strerror+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_func_search_save_LIBS=$LIBS
+@@ -4321,11 +4330,11 @@
+ fi
+ rm -f core conftest.err conftest.$ac_objext \
+     conftest$ac_exeext
+-  if test "${ac_cv_search_strerror+set}" = set; then :
++  if ${ac_cv_search_strerror+:} false; then :
+   break
+ fi
+ done
+-if test "${ac_cv_search_strerror+set}" = set; then :
++if ${ac_cv_search_strerror+:} false; then :
+ 
+ else
+   ac_cv_search_strerror=no
+@@ -4361,7 +4370,7 @@
+ set dummy ${ac_tool_prefix}gcc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -4401,7 +4410,7 @@
+ set dummy gcc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
++if ${ac_cv_prog_ac_ct_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_CC"; then
+@@ -4454,7 +4463,7 @@
+ set dummy ${ac_tool_prefix}cc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -4494,7 +4503,7 @@
+ set dummy cc; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -4553,7 +4562,7 @@
+ set dummy $ac_tool_prefix$ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_CC+set}" = set; then :
++if ${ac_cv_prog_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$CC"; then
+@@ -4597,7 +4606,7 @@
+ set dummy $ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
++if ${ac_cv_prog_ac_ct_CC+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_CC"; then
+@@ -4681,7 +4690,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
+ $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
+-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
++if ${ac_cv_c_compiler_gnu+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -4718,7 +4727,7 @@
+ ac_save_CFLAGS=$CFLAGS
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
+ $as_echo_n "checking whether $CC accepts -g... " >&6; }
+-if test "${ac_cv_prog_cc_g+set}" = set; then :
++if ${ac_cv_prog_cc_g+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_save_c_werror_flag=$ac_c_werror_flag
+@@ -4796,7 +4805,7 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
+ $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
+-if test "${ac_cv_prog_cc_c89+set}" = set; then :
++if ${ac_cv_prog_cc_c89+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_cv_prog_cc_c89=no
+@@ -4895,7 +4904,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
+ $as_echo_n "checking dependency style of $depcc... " >&6; }
+-if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
++if ${am_cv_CC_dependencies_compiler_type+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
+@@ -5027,7 +5036,7 @@
+ fi
+ set dummy $CC; ac_cc=`$as_echo "$2" |
+ 		      sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
+-if eval "test \"\${ac_cv_prog_cc_${ac_cc}_c_o+set}\"" = set; then :
++if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -5187,7 +5196,7 @@
+ set dummy intltool-update; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_INTLTOOL_UPDATE+set}" = set; then :
++if ${ac_cv_path_INTLTOOL_UPDATE+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $INTLTOOL_UPDATE in
+@@ -5227,7 +5236,7 @@
+ set dummy intltool-merge; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_INTLTOOL_MERGE+set}" = set; then :
++if ${ac_cv_path_INTLTOOL_MERGE+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $INTLTOOL_MERGE in
+@@ -5267,7 +5276,7 @@
+ set dummy intltool-extract; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_INTLTOOL_EXTRACT+set}" = set; then :
++if ${ac_cv_path_INTLTOOL_EXTRACT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $INTLTOOL_EXTRACT in
+@@ -5428,7 +5437,7 @@
+ set dummy xgettext; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_XGETTEXT+set}" = set; then :
++if ${ac_cv_path_XGETTEXT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $XGETTEXT in
+@@ -5468,7 +5477,7 @@
+ set dummy msgmerge; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_MSGMERGE+set}" = set; then :
++if ${ac_cv_path_MSGMERGE+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $MSGMERGE in
+@@ -5508,7 +5517,7 @@
+ set dummy msgfmt; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_MSGFMT+set}" = set; then :
++if ${ac_cv_path_MSGFMT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $MSGFMT in
+@@ -5548,7 +5557,7 @@
+ set dummy gmsgfmt; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_GMSGFMT+set}" = set; then :
++if ${ac_cv_path_GMSGFMT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $GMSGFMT in
+@@ -5599,7 +5608,7 @@
+ set dummy perl; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_INTLTOOL_PERL+set}" = set; then :
++if ${ac_cv_path_INTLTOOL_PERL+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $INTLTOOL_PERL in
+@@ -5683,7 +5692,7 @@
+   case $host in
+     *-*-solaris*)
+                         ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
+-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then :
++if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
+   DATADIRNAME=share
+ else
+   DATADIRNAME=lib
+@@ -5734,7 +5743,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
+ $as_echo_n "checking build system type... " >&6; }
+-if test "${ac_cv_build+set}" = set; then :
++if ${ac_cv_build+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_build_alias=$build_alias
+@@ -5768,7 +5777,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
+ $as_echo_n "checking host system type... " >&6; }
+-if test "${ac_cv_host+set}" = set; then :
++if ${ac_cv_host+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test "x$host_alias" = x; then
+@@ -5870,7 +5879,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
+ $as_echo_n "checking for a sed that does not truncate output... " >&6; }
+-if test "${ac_cv_path_SED+set}" = set; then :
++if ${ac_cv_path_SED+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+             ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
+@@ -5952,7 +5961,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
+ $as_echo_n "checking for fgrep... " >&6; }
+-if test "${ac_cv_path_FGREP+set}" = set; then :
++if ${ac_cv_path_FGREP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
+@@ -6083,7 +6092,7 @@
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
+ $as_echo_n "checking for non-GNU ld... " >&6; }
+ fi
+-if test "${lt_cv_path_LD+set}" = set; then :
++if ${lt_cv_path_LD+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -z "$LD"; then
+@@ -6123,7 +6132,7 @@
+ test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
+ $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
+-if test "${lt_cv_prog_gnu_ld+set}" = set; then :
++if ${lt_cv_prog_gnu_ld+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   # I'd rather use --version here, but apparently some GNU lds only accept -v.
+@@ -6150,7 +6159,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
+ $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
+-if test "${lt_cv_path_NM+set}" = set; then :
++if ${lt_cv_path_NM+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$NM"; then
+@@ -6213,7 +6222,7 @@
+ set dummy $ac_tool_prefix$ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_DUMPBIN+set}" = set; then :
++if ${ac_cv_prog_DUMPBIN+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$DUMPBIN"; then
+@@ -6257,7 +6266,7 @@
+ set dummy $ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then :
++if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_DUMPBIN"; then
+@@ -6329,7 +6338,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
+ $as_echo_n "checking the name lister ($NM) interface... " >&6; }
+-if test "${lt_cv_nm_interface+set}" = set; then :
++if ${lt_cv_nm_interface+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_nm_interface="BSD nm"
+@@ -6364,7 +6373,7 @@
+ # find the maximum length of command line arguments
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
+ $as_echo_n "checking the maximum length of command line arguments... " >&6; }
+-if test "${lt_cv_sys_max_cmd_len+set}" = set; then :
++if ${lt_cv_sys_max_cmd_len+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+     i=0
+@@ -6561,7 +6570,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
+ $as_echo_n "checking for $LD option to reload object files... " >&6; }
+-if test "${lt_cv_ld_reload_flag+set}" = set; then :
++if ${lt_cv_ld_reload_flag+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_ld_reload_flag='-r'
+@@ -6597,7 +6606,7 @@
+ set dummy ${ac_tool_prefix}objdump; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_OBJDUMP+set}" = set; then :
++if ${ac_cv_prog_OBJDUMP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$OBJDUMP"; then
+@@ -6637,7 +6646,7 @@
+ set dummy objdump; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then :
++if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_OBJDUMP"; then
+@@ -6696,7 +6705,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
+ $as_echo_n "checking how to recognize dependent libraries... " >&6; }
+-if test "${lt_cv_deplibs_check_method+set}" = set; then :
++if ${lt_cv_deplibs_check_method+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_file_magic_cmd='$MAGIC_CMD'
+@@ -6918,7 +6927,7 @@
+ set dummy ${ac_tool_prefix}ar; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_AR+set}" = set; then :
++if ${ac_cv_prog_AR+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$AR"; then
+@@ -6958,7 +6967,7 @@
+ set dummy ar; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then :
++if ${ac_cv_prog_ac_ct_AR+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_AR"; then
+@@ -7023,7 +7032,7 @@
+ set dummy ${ac_tool_prefix}strip; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_STRIP+set}" = set; then :
++if ${ac_cv_prog_STRIP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$STRIP"; then
+@@ -7063,7 +7072,7 @@
+ set dummy strip; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
++if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_STRIP"; then
+@@ -7122,7 +7131,7 @@
+ set dummy ${ac_tool_prefix}ranlib; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_RANLIB+set}" = set; then :
++if ${ac_cv_prog_RANLIB+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$RANLIB"; then
+@@ -7162,7 +7171,7 @@
+ set dummy ranlib; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
++if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_RANLIB"; then
+@@ -7291,7 +7300,7 @@
+ # Check for command to grab the raw symbol name followed by C symbol from nm.
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
+ $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
+-if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then :
++if ${lt_cv_sys_global_symbol_pipe+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+ 
+@@ -7662,7 +7671,7 @@
+   CFLAGS="$CFLAGS -belf"
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
+ $as_echo_n "checking whether the C compiler needs -belf... " >&6; }
+-if test "${lt_cv_cc_needs_belf+set}" = set; then :
++if ${lt_cv_cc_needs_belf+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_ext=c
+@@ -7738,7 +7747,7 @@
+ set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_DSYMUTIL+set}" = set; then :
++if ${ac_cv_prog_DSYMUTIL+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$DSYMUTIL"; then
+@@ -7778,7 +7787,7 @@
+ set dummy dsymutil; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then :
++if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_DSYMUTIL"; then
+@@ -7830,7 +7839,7 @@
+ set dummy ${ac_tool_prefix}nmedit; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_NMEDIT+set}" = set; then :
++if ${ac_cv_prog_NMEDIT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$NMEDIT"; then
+@@ -7870,7 +7879,7 @@
+ set dummy nmedit; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then :
++if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_NMEDIT"; then
+@@ -7922,7 +7931,7 @@
+ set dummy ${ac_tool_prefix}lipo; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_LIPO+set}" = set; then :
++if ${ac_cv_prog_LIPO+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$LIPO"; then
+@@ -7962,7 +7971,7 @@
+ set dummy lipo; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then :
++if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_LIPO"; then
+@@ -8014,7 +8023,7 @@
+ set dummy ${ac_tool_prefix}otool; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_OTOOL+set}" = set; then :
++if ${ac_cv_prog_OTOOL+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$OTOOL"; then
+@@ -8054,7 +8063,7 @@
+ set dummy otool; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then :
++if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_OTOOL"; then
+@@ -8106,7 +8115,7 @@
+ set dummy ${ac_tool_prefix}otool64; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_OTOOL64+set}" = set; then :
++if ${ac_cv_prog_OTOOL64+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$OTOOL64"; then
+@@ -8146,7 +8155,7 @@
+ set dummy otool64; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then :
++if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$ac_ct_OTOOL64"; then
+@@ -8221,7 +8230,7 @@
+ 
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
+ $as_echo_n "checking for -single_module linker flag... " >&6; }
+-if test "${lt_cv_apple_cc_single_mod+set}" = set; then :
++if ${lt_cv_apple_cc_single_mod+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_apple_cc_single_mod=no
+@@ -8250,7 +8259,7 @@
+ $as_echo "$lt_cv_apple_cc_single_mod" >&6; }
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
+ $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
+-if test "${lt_cv_ld_exported_symbols_list+set}" = set; then :
++if ${lt_cv_ld_exported_symbols_list+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_ld_exported_symbols_list=no
+@@ -8282,7 +8291,7 @@
+ $as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
+ $as_echo_n "checking for -force_load linker flag... " >&6; }
+-if test "${lt_cv_ld_force_load+set}" = set; then :
++if ${lt_cv_ld_force_load+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_ld_force_load=no
+@@ -8351,7 +8360,7 @@
+ do :
+   ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
+ "
+-if test "x$ac_cv_header_dlfcn_h" = x""yes; then :
++if test "x$ac_cv_header_dlfcn_h" = xyes; then :
+   cat >>confdefs.h <<_ACEOF
+ #define HAVE_DLFCN_H 1
+ _ACEOF
+@@ -8538,7 +8547,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
+ $as_echo_n "checking for objdir... " >&6; }
+-if test "${lt_cv_objdir+set}" = set; then :
++if ${lt_cv_objdir+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   rm -f .libs 2>/dev/null
+@@ -8616,7 +8625,7 @@
+   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
+ $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
+-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
++if ${lt_cv_path_MAGIC_CMD+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $MAGIC_CMD in
+@@ -8682,7 +8691,7 @@
+   if test -n "$ac_tool_prefix"; then
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
+ $as_echo_n "checking for file... " >&6; }
+-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
++if ${lt_cv_path_MAGIC_CMD+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $MAGIC_CMD in
+@@ -8820,7 +8829,7 @@
+ 
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
+ $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
+-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then :
++if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_prog_compiler_rtti_exceptions=no
+@@ -9172,7 +9181,7 @@
+ if test -n "$lt_prog_compiler_pic"; then
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
+ $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
+-if test "${lt_cv_prog_compiler_pic_works+set}" = set; then :
++if ${lt_cv_prog_compiler_pic_works+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_prog_compiler_pic_works=no
+@@ -9231,7 +9240,7 @@
+ wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
+ $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
+-if test "${lt_cv_prog_compiler_static_works+set}" = set; then :
++if ${lt_cv_prog_compiler_static_works+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_prog_compiler_static_works=no
+@@ -9274,7 +9283,7 @@
+ 
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
+ $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
+-if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
++if ${lt_cv_prog_compiler_c_o+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_prog_compiler_c_o=no
+@@ -9329,7 +9338,7 @@
+ 
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
+ $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
+-if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
++if ${lt_cv_prog_compiler_c_o+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_prog_compiler_c_o=no
+@@ -10149,7 +10158,7 @@
+ 	  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
+ 	  { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5
+ $as_echo_n "checking if $CC understands -b... " >&6; }
+-if test "${lt_cv_prog_compiler__b+set}" = set; then :
++if ${lt_cv_prog_compiler__b+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_prog_compiler__b=no
+@@ -10521,7 +10530,7 @@
+       # to ld, don't add -lc before -lgcc.
+       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
+ $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
+-if test "${lt_cv_archive_cmds_need_lc+set}" = set; then :
++if ${lt_cv_archive_cmds_need_lc+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   $RM conftest*
+@@ -11163,7 +11172,7 @@
+   shlibpath_overrides_runpath=no
+ 
+   # Some binutils ld are patched to set DT_RUNPATH
+-  if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
++  if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   lt_cv_shlibpath_overrides_runpath=no
+@@ -11587,7 +11596,7 @@
+   # if libdl is installed we need to link against it
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
+ $as_echo_n "checking for dlopen in -ldl... " >&6; }
+-if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
++if ${ac_cv_lib_dl_dlopen+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -11621,7 +11630,7 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
+ $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
+-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
++if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
+   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
+ else
+ 
+@@ -11635,12 +11644,12 @@
+ 
+   *)
+     ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
+-if test "x$ac_cv_func_shl_load" = x""yes; then :
++if test "x$ac_cv_func_shl_load" = xyes; then :
+   lt_cv_dlopen="shl_load"
+ else
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
+ $as_echo_n "checking for shl_load in -ldld... " >&6; }
+-if test "${ac_cv_lib_dld_shl_load+set}" = set; then :
++if ${ac_cv_lib_dld_shl_load+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -11674,16 +11683,16 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
+ $as_echo "$ac_cv_lib_dld_shl_load" >&6; }
+-if test "x$ac_cv_lib_dld_shl_load" = x""yes; then :
++if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
+   lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
+ else
+   ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
+-if test "x$ac_cv_func_dlopen" = x""yes; then :
++if test "x$ac_cv_func_dlopen" = xyes; then :
+   lt_cv_dlopen="dlopen"
+ else
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
+ $as_echo_n "checking for dlopen in -ldl... " >&6; }
+-if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
++if ${ac_cv_lib_dl_dlopen+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -11717,12 +11726,12 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
+ $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
+-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
++if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
+   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
+ else
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
+ $as_echo_n "checking for dlopen in -lsvld... " >&6; }
+-if test "${ac_cv_lib_svld_dlopen+set}" = set; then :
++if ${ac_cv_lib_svld_dlopen+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -11756,12 +11765,12 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
+ $as_echo "$ac_cv_lib_svld_dlopen" >&6; }
+-if test "x$ac_cv_lib_svld_dlopen" = x""yes; then :
++if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
+   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
+ else
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
+ $as_echo_n "checking for dld_link in -ldld... " >&6; }
+-if test "${ac_cv_lib_dld_dld_link+set}" = set; then :
++if ${ac_cv_lib_dld_dld_link+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -11795,7 +11804,7 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
+ $as_echo "$ac_cv_lib_dld_dld_link" >&6; }
+-if test "x$ac_cv_lib_dld_dld_link" = x""yes; then :
++if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
+   lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
+ fi
+ 
+@@ -11836,7 +11845,7 @@
+ 
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
+ $as_echo_n "checking whether a program can dlopen itself... " >&6; }
+-if test "${lt_cv_dlopen_self+set}" = set; then :
++if ${lt_cv_dlopen_self+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   	  if test "$cross_compiling" = yes; then :
+@@ -11942,7 +11951,7 @@
+       wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
+       { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
+ $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
+-if test "${lt_cv_dlopen_self_static+set}" = set; then :
++if ${lt_cv_dlopen_self_static+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   	  if test "$cross_compiling" = yes; then :
+@@ -12194,7 +12203,7 @@
+ set dummy $ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_prog_PERL+set}" = set; then :
++if ${ac_cv_prog_PERL+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   if test -n "$PERL"; then
+@@ -12233,7 +12242,7 @@
+ 
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
+ $as_echo_n "checking for ANSI C header files... " >&6; }
+-if test "${ac_cv_header_stdc+set}" = set; then :
++if ${ac_cv_header_stdc+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -12386,7 +12395,7 @@
+    for ac_header in locale.h
+ do :
+   ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default"
+-if test "x$ac_cv_header_locale_h" = x""yes; then :
++if test "x$ac_cv_header_locale_h" = xyes; then :
+   cat >>confdefs.h <<_ACEOF
+ #define HAVE_LOCALE_H 1
+ _ACEOF
+@@ -12398,7 +12407,7 @@
+     if test $ac_cv_header_locale_h = yes; then
+     { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5
+ $as_echo_n "checking for LC_MESSAGES... " >&6; }
+-if test "${am_cv_val_LC_MESSAGES+set}" = set; then :
++if ${am_cv_val_LC_MESSAGES+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -12438,7 +12447,7 @@
+     INTLLIBS=
+ 
+     ac_fn_c_check_header_mongrel "$LINENO" "libintl.h" "ac_cv_header_libintl_h" "$ac_includes_default"
+-if test "x$ac_cv_header_libintl_h" = x""yes; then :
++if test "x$ac_cv_header_libintl_h" = xyes; then :
+   gt_cv_func_dgettext_libintl="no"
+       libintl_extra_libs=""
+ 
+@@ -12447,7 +12456,7 @@
+       #
+       { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in libc" >&5
+ $as_echo_n "checking for ngettext in libc... " >&6; }
+-if test "${gt_cv_func_ngettext_libc+set}" = set; then :
++if ${gt_cv_func_ngettext_libc+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -12478,7 +12487,7 @@
+       if test "$gt_cv_func_ngettext_libc" = "yes" ; then
+ 	      { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in libc" >&5
+ $as_echo_n "checking for dgettext in libc... " >&6; }
+-if test "${gt_cv_func_dgettext_libc+set}" = set; then :
++if ${gt_cv_func_dgettext_libc+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+@@ -12511,7 +12520,7 @@
+         for ac_func in bind_textdomain_codeset
+ do :
+   ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
+-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then :
++if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
+   cat >>confdefs.h <<_ACEOF
+ #define HAVE_BIND_TEXTDOMAIN_CODESET 1
+ _ACEOF
+@@ -12530,7 +12539,7 @@
+ 
+         { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bindtextdomain in -lintl" >&5
+ $as_echo_n "checking for bindtextdomain in -lintl... " >&6; }
+-if test "${ac_cv_lib_intl_bindtextdomain+set}" = set; then :
++if ${ac_cv_lib_intl_bindtextdomain+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -12564,10 +12573,10 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_bindtextdomain" >&5
+ $as_echo "$ac_cv_lib_intl_bindtextdomain" >&6; }
+-if test "x$ac_cv_lib_intl_bindtextdomain" = x""yes; then :
++if test "x$ac_cv_lib_intl_bindtextdomain" = xyes; then :
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5
+ $as_echo_n "checking for ngettext in -lintl... " >&6; }
+-if test "${ac_cv_lib_intl_ngettext+set}" = set; then :
++if ${ac_cv_lib_intl_ngettext+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -12601,10 +12610,10 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5
+ $as_echo "$ac_cv_lib_intl_ngettext" >&6; }
+-if test "x$ac_cv_lib_intl_ngettext" = x""yes; then :
++if test "x$ac_cv_lib_intl_ngettext" = xyes; then :
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5
+ $as_echo_n "checking for dgettext in -lintl... " >&6; }
+-if test "${ac_cv_lib_intl_dgettext+set}" = set; then :
++if ${ac_cv_lib_intl_dgettext+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -12638,7 +12647,7 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5
+ $as_echo "$ac_cv_lib_intl_dgettext" >&6; }
+-if test "x$ac_cv_lib_intl_dgettext" = x""yes; then :
++if test "x$ac_cv_lib_intl_dgettext" = xyes; then :
+   gt_cv_func_dgettext_libintl=yes
+ fi
+ 
+@@ -12654,7 +12663,7 @@
+ $as_echo "" >&6; }
+   	  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ngettext in -lintl" >&5
+ $as_echo_n "checking for ngettext in -lintl... " >&6; }
+-if test "${ac_cv_lib_intl_ngettext+set}" = set; then :
++if ${ac_cv_lib_intl_ngettext+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -12688,10 +12697,10 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_ngettext" >&5
+ $as_echo "$ac_cv_lib_intl_ngettext" >&6; }
+-if test "x$ac_cv_lib_intl_ngettext" = x""yes; then :
++if test "x$ac_cv_lib_intl_ngettext" = xyes; then :
+   { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dcgettext in -lintl" >&5
+ $as_echo_n "checking for dcgettext in -lintl... " >&6; }
+-if test "${ac_cv_lib_intl_dcgettext+set}" = set; then :
++if ${ac_cv_lib_intl_dcgettext+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -12725,7 +12734,7 @@
+ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dcgettext" >&5
+ $as_echo "$ac_cv_lib_intl_dcgettext" >&6; }
+-if test "x$ac_cv_lib_intl_dcgettext" = x""yes; then :
++if test "x$ac_cv_lib_intl_dcgettext" = xyes; then :
+   gt_cv_func_dgettext_libintl=yes
+ 			libintl_extra_libs=-liconv
+ else
+@@ -12750,7 +12759,7 @@
+           for ac_func in bind_textdomain_codeset
+ do :
+   ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
+-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then :
++if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
+   cat >>confdefs.h <<_ACEOF
+ #define HAVE_BIND_TEXTDOMAIN_CODESET 1
+ _ACEOF
+@@ -12788,7 +12797,7 @@
+ set dummy msgfmt; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_MSGFMT+set}" = set; then :
++if ${ac_cv_path_MSGFMT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case "$MSGFMT" in
+@@ -12825,7 +12834,7 @@
+ 	  for ac_func in dcgettext
+ do :
+   ac_fn_c_check_func "$LINENO" "dcgettext" "ac_cv_func_dcgettext"
+-if test "x$ac_cv_func_dcgettext" = x""yes; then :
++if test "x$ac_cv_func_dcgettext" = xyes; then :
+   cat >>confdefs.h <<_ACEOF
+ #define HAVE_DCGETTEXT 1
+ _ACEOF
+@@ -12866,7 +12875,7 @@
+ set dummy gmsgfmt; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_GMSGFMT+set}" = set; then :
++if ${ac_cv_path_GMSGFMT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $GMSGFMT in
+@@ -12907,7 +12916,7 @@
+ set dummy xgettext; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_XGETTEXT+set}" = set; then :
++if ${ac_cv_path_XGETTEXT+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case "$XGETTEXT" in
+@@ -12958,7 +12967,7 @@
+   case $host in
+ 	    *-*-solaris*)
+ 	    	                	    	                ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
+-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then :
++if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
+   CATOBJEXT=.gmo
+                DATADIRNAME=share
+ else
+@@ -13088,7 +13097,7 @@
+ 
+ 
+     ac_fn_c_check_func "$LINENO" "bind_textdomain_codeset" "ac_cv_func_bind_textdomain_codeset"
+-if test "x$ac_cv_func_bind_textdomain_codeset" = x""yes; then :
++if test "x$ac_cv_func_bind_textdomain_codeset" = xyes; then :
+ 
+ fi
+ 
+@@ -13131,139 +13140,6 @@
+   xdt_cv_PKG_CONFIG_MIN_VERSION=0.9.0
+ 
+   # lookup pkg-config utility
+-  if test x"$PKG_CONFIG" = x""; then
+-    # Extract the first word of "pkg-config", so it can be a program name with args.
+-set dummy pkg-config; ac_word=$2
+-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+-$as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
+-  $as_echo_n "(cached) " >&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_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+-    ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
+-    $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+-    break 2
+-  fi
+-done
+-  done
+-IFS=$as_save_IFS
+-
+-  test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
+-  ;;
+-esac
+-fi
+-PKG_CONFIG=$ac_cv_path_PKG_CONFIG
+-if test -n "$PKG_CONFIG"; then
+-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
+-$as_echo "$PKG_CONFIG" >&6; }
+-else
+-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+-$as_echo "no" >&6; }
+-fi
+-
+-
+-
+-    if test x"$PKG_CONFIG" = x"no"; then
+-      echo "*** The pkg-config utility could not be found on your system."
+-      echo "*** Make sure it is in your path, or set the PKG_CONFIG"
+-      echo "*** environment variable to the full path to pkg-config."
+-      echo "*** You can download pkg-config from the freedesktop.org"
+-      echo "*** software repository at"
+-      echo "***"
+-      echo "***    http://www.freedesktop.org/software/pkgconfig";
+-      echo "***"
+-      exit 1
+-    fi
+-
+-    # check pkg-config version
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pkg-config >= $xdt_cv_PKG_CONFIG_MIN_VERSION" >&5
+-$as_echo_n "checking for pkg-config >= $xdt_cv_PKG_CONFIG_MIN_VERSION... " >&6; }
+-    if $PKG_CONFIG --atleast-pkgconfig-version $xdt_cv_PKG_CONFIG_MIN_VERSION; then
+-      xdt_cv_PKG_CONFIG_VERSION=`$PKG_CONFIG --version`
+-      { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xdt_cv_PKG_CONFIG_VERSION" >&5
+-$as_echo "$xdt_cv_PKG_CONFIG_VERSION" >&6; }
+-    else
+-      xdt_cv_PKG_CONFIG_VERSION=`$PKG_CONFIG --version`
+-      { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xdt_cv_PKG_CONFIG_VERSION" >&5
+-$as_echo "$xdt_cv_PKG_CONFIG_VERSION" >&6; }
+-      echo "*** Your version of pkg-config is too old. You need atleast"
+-      echo "*** pkg-config $xdt_cv_PKG_CONFIG_MIN_VERSION or newer. You can download pkg-config "
+-      echo "*** from the freedesktop.org software repository at"
+-      echo "***"
+-      echo "***    http://www.freedesktop.org/software/pkgconfig";
+-      echo "***"
+-      exit 1
+-    fi
+-  fi
+-
+-
+-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gobject-2.0 >= 2.12.0" >&5
+-$as_echo_n "checking for gobject-2.0 >= 2.12.0... " >&6; }
+-  if $PKG_CONFIG "--atleast-version=2.12.0" "gobject-2.0" >/dev/null 2>&1; then
+-    GOBJECT_VERSION=`$PKG_CONFIG --modversion "gobject-2.0"`
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_VERSION" >&5
+-$as_echo "$GOBJECT_VERSION" >&6; }
+-
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GOBJECT_CFLAGS" >&5
+-$as_echo_n "checking GOBJECT_CFLAGS... " >&6; }
+-    GOBJECT_CFLAGS=`$PKG_CONFIG --cflags "gobject-2.0"`
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_CFLAGS" >&5
+-$as_echo "$GOBJECT_CFLAGS" >&6; }
+-
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GOBJECT_LIBS" >&5
+-$as_echo_n "checking GOBJECT_LIBS... " >&6; }
+-    GOBJECT_LIBS=`$PKG_CONFIG --libs "gobject-2.0"`
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_LIBS" >&5
+-$as_echo "$GOBJECT_LIBS" >&6; }
+-
+-    GOBJECT_REQUIRED_VERSION=2.12.0
+-
+-
+-
+-
+-
+-
+-
+-  elif $PKG_CONFIG --exists "gobject-2.0" >/dev/null 2>&1; then
+-    xdt_cv_version=`$PKG_CONFIG --modversion "gobject-2.0"`
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, but $xdt_cv_version" >&5
+-$as_echo "found, but $xdt_cv_version" >&6; }
+-
+-
+-      echo "*** The required package gobject-2.0 was found on your system,"
+-      echo "*** but the installed version ($xdt_cv_version) is too old."
+-      echo "*** Please upgrade gobject-2.0 to atleast version 2.12.0, or adjust"
+-      echo "*** the PKG_CONFIG_PATH environment variable if you installed"
+-      echo "*** the new version of the package in a nonstandard prefix so"
+-      echo "*** pkg-config is able to find it."
+-      exit 1
+-
+-  else
+-    { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
+-$as_echo "not found" >&6; }
+-
+-
+-      echo "*** The required package gobject-2.0 was not found on your system."
+-      echo "*** Please install gobject-2.0 (atleast version 2.12.0) or adjust"
+-      echo "*** the PKG_CONFIG_PATH environment variable if you"
+-      echo "*** installed the package in a nonstandard prefix so that"
+-      echo "*** pkg-config is able to find it."
+-      exit 1
+-
+-  fi
+-
+-
+ 
+ 
+ 
+@@ -13276,7 +13152,7 @@
+ set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
++if ${ac_cv_path_PKG_CONFIG+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $PKG_CONFIG in
+@@ -13319,7 +13195,7 @@
+ set dummy pkg-config; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then :
++if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $ac_pt_PKG_CONFIG in
+@@ -13371,7 +13247,7 @@
+ 
+ fi
+ if test -n "$PKG_CONFIG"; then
+-	_pkg_min_version=0.9.0
++	_pkg_min_version=$xdt_cv_PKG_CONFIG_MIN_VERSION
+ 	{ $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
+ $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
+ 	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+@@ -13383,13 +13259,83 @@
+ 		PKG_CONFIG=""
+ 	fi
+ fi
++  if test x"$PKG_CONFIG" = x""; then
++    echo "*** The pkg-config utility could not be found on your system."
++    echo "*** Make sure it is in your path, or set the PKG_CONFIG"
++    echo "*** environment variable to the full path to pkg-config."
++    echo "*** You can download pkg-config from the freedesktop.org"
++    echo "*** software repository at"
++    echo "***"
++    echo "***    http://www.freedesktop.org/software/pkgconfig";
++    echo "***"
++    exit 1
++  fi
++
++
++
++  { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gobject-2.0 >= 2.12.0" >&5
++$as_echo_n "checking for gobject-2.0 >= 2.12.0... " >&6; }
++  if $PKG_CONFIG "--atleast-version=2.12.0" "gobject-2.0" >/dev/null 2>&1; then
++    GOBJECT_VERSION=`$PKG_CONFIG --modversion "gobject-2.0"`
++    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_VERSION" >&5
++$as_echo "$GOBJECT_VERSION" >&6; }
++
++    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GOBJECT_CFLAGS" >&5
++$as_echo_n "checking GOBJECT_CFLAGS... " >&6; }
++    GOBJECT_CFLAGS=`$PKG_CONFIG --cflags "gobject-2.0"`
++    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_CFLAGS" >&5
++$as_echo "$GOBJECT_CFLAGS" >&6; }
++
++    { $as_echo "$as_me:${as_lineno-$LINENO}: checking GOBJECT_LIBS" >&5
++$as_echo_n "checking GOBJECT_LIBS... " >&6; }
++    GOBJECT_LIBS=`$PKG_CONFIG --libs "gobject-2.0"`
++    { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GOBJECT_LIBS" >&5
++$as_echo "$GOBJECT_LIBS" >&6; }
++
++    GOBJECT_REQUIRED_VERSION=2.12.0
++
++
++
++
++
++
++
++  elif $PKG_CONFIG --exists "gobject-2.0" >/dev/null 2>&1; then
++    xdt_cv_version=`$PKG_CONFIG --modversion "gobject-2.0"`
++    { $as_echo "$as_me:${as_lineno-$LINENO}: result: found, but $xdt_cv_version" >&5
++$as_echo "found, but $xdt_cv_version" >&6; }
++
++
++      echo "*** The required package gobject-2.0 was found on your system,"
++      echo "*** but the installed version ($xdt_cv_version) is too old."
++      echo "*** Please upgrade gobject-2.0 to atleast version 2.12.0, or adjust"
++      echo "*** the PKG_CONFIG_PATH environment variable if you installed"
++      echo "*** the new version of the package in a nonstandard prefix so"
++      echo "*** pkg-config is able to find it."
++      exit 1
++
++  else
++    { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
++$as_echo "not found" >&6; }
++
++
++      echo "*** The required package gobject-2.0 was not found on your system."
++      echo "*** Please install gobject-2.0 (atleast version 2.12.0) or adjust"
++      echo "*** the PKG_CONFIG_PATH environment variable if you"
++      echo "*** installed the package in a nonstandard prefix so that"
++      echo "*** pkg-config is able to find it."
++      exit 1
++
++  fi
++
++
+ 
+ 
+     # Extract the first word of "gtkdoc-check", so it can be a program name with args.
+ set dummy gtkdoc-check; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_GTKDOC_CHECK+set}" = set; then :
++if ${ac_cv_path_GTKDOC_CHECK+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $GTKDOC_CHECK in
+@@ -13431,7 +13377,7 @@
+ set dummy $ac_prog; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_GTKDOC_REBASE+set}" = set; then :
++if ${ac_cv_path_GTKDOC_REBASE+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $GTKDOC_REBASE in
+@@ -13475,7 +13421,7 @@
+ set dummy gtkdoc-mkpdf; ac_word=$2
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+ $as_echo_n "checking for $ac_word... " >&6; }
+-if test "${ac_cv_path_GTKDOC_MKPDF+set}" = set; then :
++if ${ac_cv_path_GTKDOC_MKPDF+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   case $GTKDOC_MKPDF in
+@@ -13621,10 +13567,7 @@
+ 
+ if test x"$with_broken_putenv" != x"yes" -a x"$with_broken_putenv" != x"no"; then
+   if test "$cross_compiling" = yes; then :
+-  { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+-as_fn_error $? "cannot run test program while cross compiling
+-See \`config.log' for more details" "$LINENO" 5; }
++  with_broken_putenv=cross
+ else
+   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h.  */
+@@ -13931,10 +13874,21 @@
+      :end' >>confcache
+ if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
+   if test -w "$cache_file"; then
+-    test "x$cache_file" != "x/dev/null" &&
++    if test "x$cache_file" != "x/dev/null"; then
+       { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
+ $as_echo "$as_me: updating cache $cache_file" >&6;}
+-    cat confcache >$cache_file
++      if test ! -f "$cache_file" || test -h "$cache_file"; then
++	cat confcache >"$cache_file"
++      else
++        case $cache_file in #(
++        */* | ?:*)
++	  mv -f confcache "$cache_file"$$ &&
++	  mv -f "$cache_file"$$ "$cache_file" ;; #(
++        *)
++	  mv -f confcache "$cache_file" ;;
++	esac
++      fi
++    fi
+   else
+     { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
+ $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
+@@ -14022,7 +13976,7 @@
+ Usually this means the macro was only invoked conditionally." "$LINENO" 5
+ fi
+ 
+-: ${CONFIG_STATUS=./config.status}
++: "${CONFIG_STATUS=./config.status}"
+ ac_write_fail=0
+ ac_clean_files_save=$ac_clean_files
+ ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+@@ -14123,6 +14077,7 @@
+ IFS=" ""	$as_nl"
+ 
+ # Find who we are.  Look in the path if we contain no directory separator.
++as_myself=
+ case $0 in #((
+   *[\\/]* ) as_myself=$0 ;;
+   *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+@@ -14430,7 +14385,7 @@
+ # values after options handling.
+ ac_log="
+ This file was extended by libxfce4util $as_me 4.8.1, which was
+-generated by GNU Autoconf 2.66.  Invocation command line was
++generated by GNU Autoconf 2.68.  Invocation command line was
+ 
+   CONFIG_FILES    = $CONFIG_FILES
+   CONFIG_HEADERS  = $CONFIG_HEADERS
+@@ -14496,7 +14451,7 @@
+ ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
+ ac_cs_version="\\
+ libxfce4util config.status 4.8.1
+-configured by $0, generated by GNU Autoconf 2.66,
++configured by $0, generated by GNU Autoconf 2.68,
+   with options \\"\$ac_cs_config\\"
+ 
+ Copyright (C) 2010 Free Software Foundation, Inc.
+@@ -14517,11 +14472,16 @@
+ while test $# != 0
+ do
+   case $1 in
+-  --*=*)
++  --*=?*)
+     ac_option=`expr "X$1" : 'X\([^=]*\)='`
+     ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
+     ac_shift=:
+     ;;
++  --*=)
++    ac_option=`expr "X$1" : 'X\([^=]*\)='`
++    ac_optarg=
++    ac_shift=:
++    ;;
+   *)
+     ac_option=$1
+     ac_optarg=$2
+@@ -14543,6 +14503,7 @@
+     $ac_shift
+     case $ac_optarg in
+     *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
++    '') as_fn_error $? "missing file argument" ;;
+     esac
+     as_fn_append CONFIG_FILES " '$ac_optarg'"
+     ac_need_defaults=false;;
+@@ -14917,9 +14878,10 @@
+ # after its creation but before its name has been assigned to `$tmp'.
+ $debug ||
+ {
+-  tmp=
++  tmp= ac_tmp=
+   trap 'exit_status=$?
+-  { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
++  : "${ac_tmp:=$tmp}"
++  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
+ ' 0
+   trap 'as_fn_exit 1' 1 2 13 15
+ }
+@@ -14927,12 +14889,13 @@
+ 
+ {
+   tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
+-  test -n "$tmp" && test -d "$tmp"
++  test -d "$tmp"
+ }  ||
+ {
+   tmp=./conf$$-$RANDOM
+   (umask 077 && mkdir "$tmp")
+ } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
++ac_tmp=$tmp
+ 
+ # Set up the scripts for CONFIG_FILES section.
+ # No need to generate them if there are no CONFIG_FILES.
+@@ -14954,7 +14917,7 @@
+   ac_cs_awk_cr=$ac_cr
+ fi
+ 
+-echo 'BEGIN {' >"$tmp/subs1.awk" &&
++echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
+ _ACEOF
+ 
+ 
+@@ -14982,7 +14945,7 @@
+ rm -f conf$$subs.sh
+ 
+ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+-cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
++cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
+ _ACEOF
+ sed -n '
+ h
+@@ -15030,7 +14993,7 @@
+ rm -f conf$$subs.awk
+ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
+ _ACAWK
+-cat >>"\$tmp/subs1.awk" <<_ACAWK &&
++cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
+   for (key in S) S_is_set[key] = 1
+   FS = ""
+ 
+@@ -15062,7 +15025,7 @@
+   sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
+ else
+   cat
+-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
++fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
+   || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
+ _ACEOF
+ 
+@@ -15096,7 +15059,7 @@
+ # No need to generate them if there are no CONFIG_HEADERS.
+ # This happens for instance with `./config.status Makefile'.
+ if test -n "$CONFIG_HEADERS"; then
+-cat >"$tmp/defines.awk" <<\_ACAWK ||
++cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
+ BEGIN {
+ _ACEOF
+ 
+@@ -15108,8 +15071,8 @@
+ # handling of long lines.
+ ac_delim='%!_!# '
+ for ac_last_try in false false :; do
+-  ac_t=`sed -n "/$ac_delim/p" confdefs.h`
+-  if test -z "$ac_t"; then
++  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
++  if test -z "$ac_tt"; then
+     break
+   elif $ac_last_try; then
+     as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
+@@ -15229,7 +15192,7 @@
+     for ac_f
+     do
+       case $ac_f in
+-      -) ac_f="$tmp/stdin";;
++      -) ac_f="$ac_tmp/stdin";;
+       *) # Look for the file first in the build tree, then in the source tree
+ 	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
+ 	 # because $ac_f cannot contain `:'.
+@@ -15264,7 +15227,7 @@
+     esac
+ 
+     case $ac_tag in
+-    *:-:* | *:-) cat >"$tmp/stdin" \
++    *:-:* | *:-) cat >"$ac_tmp/stdin" \
+       || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
+     esac
+     ;;
+@@ -15401,21 +15364,22 @@
+ s&@MKDIR_P@&$ac_MKDIR_P&;t t
+ $ac_datarootdir_hack
+ "
+-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
+-  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
++eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
++  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+ 
+ test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
+-  { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
+-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
++  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
++  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
++      "$ac_tmp/out"`; test -z "$ac_out"; } &&
+   { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+ which seems to be undefined.  Please make sure it is defined" >&5
+ $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
+ which seems to be undefined.  Please make sure it is defined" >&2;}
+ 
+-  rm -f "$tmp/stdin"
++  rm -f "$ac_tmp/stdin"
+   case $ac_file in
+-  -) cat "$tmp/out" && rm -f "$tmp/out";;
+-  *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
++  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
++  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
+   esac \
+   || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+  ;;
+@@ -15426,20 +15390,20 @@
+   if test x"$ac_file" != x-; then
+     {
+       $as_echo "/* $configure_input  */" \
+-      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
+-    } >"$tmp/config.h" \
++      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
++    } >"$ac_tmp/config.h" \
+       || as_fn_error $? "could not create $ac_file" "$LINENO" 5
+-    if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
++    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
+       { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
+ $as_echo "$as_me: $ac_file is unchanged" >&6;}
+     else
+       rm -f "$ac_file"
+-      mv "$tmp/config.h" "$ac_file" \
++      mv "$ac_tmp/config.h" "$ac_file" \
+ 	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
+     fi
+   else
+     $as_echo "/* $configure_input  */" \
+-      && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
++      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
+       || as_fn_error $? "could not create -" "$LINENO" 5
+   fi
+ # Compute "$ac_file"'s index in $config_headers.

=== modified file 'debian/patches/series'
--- debian/patches/series	2006-11-20 11:46:23 +0000
+++ debian/patches/series	2011-07-02 22:50:15 +0000
@@ -1,1 +1,2 @@
 01_add-desktop-base-in-config-dirs.patch
+cross-building-fixes

=== modified file 'debian/patches/ubuntu.series'
--- debian/patches/ubuntu.series	2011-06-18 19:58:36 +0000
+++ debian/patches/ubuntu.series	2011-07-02 22:50:15 +0000
@@ -1,1 +1,2 @@
 xubuntu_desktop-x-ubuntu-gettext.patch
+cross-building-fixes

=== modified file 'debian/rules'
--- debian/rules	2011-03-30 14:00:29 +0000
+++ debian/rules	2011-07-02 20:43:15 +0000
@@ -10,7 +10,7 @@
 export CFLAGS LDFLAGS
 
 override_dh_install:
-	rm -f $(CURDIR)/debian/tmp/usr/lib/libxfce4util.la
+	rm -f $(CURDIR)/debian/tmp/usr/lib/*/libxfce4util.la
 	dh_install --fail-missing
 
 override_dh_strip:

# Begin bundle
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



Reply to: